Skip to content

Latest commit

 

History

History
94 lines (64 loc) · 2.01 KB

File metadata and controls

94 lines (64 loc) · 2.01 KB

Installation Instructions

Quick Install (2 commands)

# 1. Add the marketplace
claude plugin marketplace add nbashaw/claude-cs

# 2. Install the skill
claude plugin install customer-support-builder

That's it! Now you can use /customer-support-builder in any repository.

What this does

  • Downloads the skill to ~/.claude/plugins/
  • Makes it available in all your Claude Code sessions
  • You can invoke it with /customer-support-builder from any directory

Usage

# Navigate to your company repository
cd /path/to/your/company/repo

# Start Claude Code
claude

# Invoke the skill
/customer-support-builder

# Answer questions about your support stack
# Claude will build your automation!

Alternative: Manual Installation

If you prefer to install manually:

# Clone to the skills directory
cd ~/.claude/skills
git clone https://github.com/nbashaw/claude-cs

# The skill will be available as /customer-support-builder

Updating

To get the latest version:

claude plugin update customer-support-builder

Or if manually installed:

cd ~/.claude/skills/claude-cs
git pull

Uninstalling

claude plugin uninstall customer-support-builder

Or if manually installed:

rm -rf ~/.claude/skills/claude-cs

Troubleshooting

"Marketplace not found"

  • Make sure you added it: claude plugin marketplace add nbashaw/claude-cs
  • Check it's listed: claude plugin marketplace list

"Skill not found"

  • Make sure you installed it: claude plugin install customer-support-builder
  • Restart Claude Code

"Command not found: /customer-support-builder"

  • Restart Claude Code after installation
  • Check the skill is installed: ls ~/.claude/plugins/

Need Help?