mirror of
https://github.com/harivansh-afk/claude-setup.git
synced 2026-04-15 03:00:44 +00:00
3 KiB
3 KiB
Claude Code VPS Setup
One-command setup for Claude Code with plugins, skills, and MCP servers.
Quick Install
curl -fsSL https://raw.githubusercontent.com/harivansh-afk/claude-setup/main/install.sh | bash
Or clone and run:
git clone https://github.com/harivansh-afk/claude-setup.git
cd claude-setup
./install.sh
What Gets Installed
Plugins
| Plugin | Source | Description |
|---|---|---|
| compound-engineering | every-marketplace | 60+ agents, skills, and commands for development workflows |
| ralph-wiggum | claude-plugins-official | Autonomous coding loops |
| code-simplifier | claude-plugins-official | Code clarity and maintainability |
Skills
| Skill | Source | Description |
|---|---|---|
| eval-skill | harivansh-afk/eval-skill | Verifiable code generation with evals |
| vercel agent-skills | vercel-labs/agent-skills | React/Next.js best practices |
| rams | elirousso/rams | Accessibility and design reviews |
| browser | anthropics/claude-code | Playwright browser automation |
MCP Servers
| Server | Source | Description |
|---|---|---|
| context7 | context7.com | Up-to-date library documentation |
| axiom | axiomhq/mcp | Observability data queries via APL |
| github | github/github-mcp-server | GitHub API - issues, PRs, repos |
| firecrawl | firecrawl | Web scraping and extraction |
| playwright | @playwright/mcp | Browser automation for testing |
Tools
| Tool | Source | Description |
|---|---|---|
| agent-browser | npm | Browser automation CLI for agents |
Post-Install
Add your API keys to ~/.claude/settings.json:
{
"mcpServers": {
"context7": {
"headers": {
"CONTEXT7_API_KEY": "your-key"
}
},
"axiom": {
"env": {
"AXIOM_TOKEN": "xapt-your-token",
"AXIOM_ORG_ID": "your-org-id"
}
},
"github": {
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_your-token"
}
},
"firecrawl": {
"env": {
"FIRECRAWL_API_KEY": "your-key"
}
}
}
}
Usage
# Verify plugins
claude plugin list
# Start Claude
claude
# Use skills
/eval build <name>
/rams
/browser
Manual Install (Individual Components)
Plugins
claude plugin install compound-engineering --marketplace every-marketplace
claude plugin install ralph-wiggum
claude plugin install code-simplifier
Skills
npx add-skill vercel-labs/agent-skills
npx add-skill elirousso/rams
MCP Servers
See ~/.claude/mcp-servers.json after running install.sh for full config.