Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Give agents more agency

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    vamseeachanta

    bash-cli-framework

    vamseeachanta/bash-cli-framework
    Coding
    1

    About

    SKILL.md

    Install

    • 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
    • Download skill
    ├─
    ├─
    └─

    About

    Universal bash CLI patterns for colors, logging, headers, and error handling

    SKILL.md

    Bash Cli Framework

    When to Use This Skill

    ✅ Use when:

    • Building new bash CLI tools or scripts
    • Adding consistent output formatting to existing scripts
    • Need standardized error handling and logging
    • Creating user-friendly interactive scripts
    • Building tools that will be used across multiple repositories

    ❌ Avoid when:

    • Simple one-liner scripts
    • Scripts that don't produce user-facing output
    • When Python/Node CLI frameworks are more appropriate

    Complete Example

    A complete script using all framework components:

    #!/bin/bash
    # ABOUTME: Example script demonstrating bash-cli-framework usage
    # ABOUTME: Template for new CLI tools in workspace-hub
    
    set -e
    
    # ─────────────────────────────────────────────────────────────────
    # Configuration
    # ─────────────────────────────────────────────────────────────────
    
    SCRIPT_NAME="$(basename "$0")"
    SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
    VERSION="1.0.0"
    
    # Colors
    RED='\033[0;31m'
    GREEN='\033[0;32m'
    YELLOW='\033[1;33m'
    BLUE='\033[0;34m'
    CYAN='\033[0;36m'
    NC='\033[0m'
    
    
    *See sub-skills for full details.*
    
    ## Integration with workspace-hub
    
    This framework is used across all workspace-hub scripts:
    - `scripts/monitoring/suggest_model.sh`
    - `scripts/monitoring/check_claude_usage.sh`
    - `scripts/workspace`
    - `scripts/repository_sync`
    
    ## Resources
    
    - [Bash Best Practices](https://mywiki.wooledge.org/BashGuide/Practices)
    - [Google Shell Style Guide](https://google.github.io/styleguide/shellguide.html)
    - [ShellCheck](https://www.shellcheck.net/) - Static analysis tool
    
    ---
    
    ## Version History
    
    - **1.0.0** (2026-01-14): Initial release - extracted from workspace-hub scripts
    
    ## Sub-Skills
    
    - [1. Color Definitions (+3)](1-color-definitions/SKILL.md)
    - [5. Error Handling (+1)](5-error-handling/SKILL.md)
    - [1. Always Use `set -e` (+4)](1-always-use-set-e/SKILL.md)
    
    Recommended Servers
    vastlint - IAB XML VAST validator and linter
    vastlint - IAB XML VAST validator and linter
    Context7
    Context7
    Codeinterpreter
    Codeinterpreter
    Repository
    vamseeachanta/workspace-hub
    Files