Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    austinpray

    arch-packages

    austinpray/arch-packages
    DevOps
    5
    2 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Install or remove Arch Linux packages declaratively. Use when adding a package to install, removing a package, or managing system packages via paru.

    SKILL.md

    Managing Arch Linux Packages

    Packages are managed declaratively in scripts/arch-linux.sh. Running the script installs missing packages and removes unwanted ones.

    Installing a package

    Add the package name to the appropriate PACKAGES array section in scripts/arch-linux.sh:

    # Example sections:
    PACKAGES=(...)           # Core packages
    PACKAGES+=(...)          # Desktop apps
    PACKAGES+=(...)          # Sway-related
    PACKAGES+=(...)          # Speech Recognition
    PACKAGES+=(...)          # Fonts
    

    Choose the section that best fits the package's purpose, or create a new section with a comment header.

    Removing a package

    Add the package name to the REMOVE_PACKAGES array in scripts/arch-linux.sh:

    REMOVE_PACKAGES=(
        package-to-remove
        another-package
    )
    

    The script uses paru -Qe to check if the package is explicitly installed (not a dependency), then removes it with paru -Rs to also clean up orphaned dependencies.

    Running the script

    ./scripts/arch-linux.sh
    

    Or run the full install:

    ./install.sh
    
    Recommended Servers
    Context7
    Context7
    Repository
    austinpray/dotfiles
    Files