Loading...
Loading...
Install and manage AI agents, commands, MCPs, settings, and hooks for Claude Code development workflows
npx skill4agent add aradotso/claude-code-skills claude-code-templates-cliSkill by ara.so — Claude Code Skills collection.
claude-code-templatesnpxnpx claude-code-templates@latestnpm install -g claude-code-templatesnpx claude-code-templates@latest# Install an agent
npx claude-code-templates@latest --agent development-team/frontend-developer --yes
# Install a command
npx claude-code-templates@latest --command testing/generate-tests --yes
# Install an MCP integration
npx claude-code-templates@latest --mcp development/github-integration --yes
# Install a setting
npx claude-code-templates@latest --setting performance/mcp-timeouts --yes
# Install a hook
npx claude-code-templates@latest --hook git/pre-commit-validation --yes--yesnpx claude-code-templates@latest \
--agent development-team/frontend-developer \
--agent security/security-auditor \
--command testing/generate-tests \
--mcp development/github-integration \
--yesnpx claude-code-templates@latest --analytics# Local access
npx claude-code-templates@latest --chats
# Remote access via Cloudflare Tunnel
npx claude-code-templates@latest --chats --tunnelnpx claude-code-templates@latest --health-checknpx claude-code-templates@latest --plugins# Install a frontend developer agent
npx claude-code-templates@latest --agent development-team/frontend-developer --yes
# Install a security auditor
npx claude-code-templates@latest --agent security/security-auditor --yes
# Install a database architect
npx claude-code-templates@latest --agent data/database-architect --yes.claude/agents/# Add test generation command
npx claude-code-templates@latest --command testing/generate-tests --yes
# Add bundle optimization command
npx claude-code-templates@latest --command performance/optimize-bundle --yes
# Add security check command
npx claude-code-templates@latest --command security/check-security --yes.claude/commands//command-name# GitHub integration
npx claude-code-templates@latest --mcp development/github-integration --yes
# PostgreSQL integration
npx claude-code-templates@latest --mcp database/postgresql-integration --yes
# AWS integration
npx claude-code-templates@latest --mcp cloud/aws-integration --yes# Example: GitHub MCP configuration
export GITHUB_TOKEN=your_token_here
export GITHUB_OWNER=your_username
export GITHUB_REPO=your_repo# Optimize MCP timeouts
npx claude-code-templates@latest --setting performance/mcp-timeouts --yes
# Configure memory settings
npx claude-code-templates@latest --setting performance/memory-limits --yes.claude/settings.json# Pre-commit validation
npx claude-code-templates@latest --hook git/pre-commit-validation --yes
# Post-completion actions
npx claude-code-templates@latest --hook workflow/post-completion --yes.claude/
├── agents/ # Installed agents
├── commands/ # Custom commands
├── mcps/ # MCP integrations
├── settings.json # Global settings
├── hooks/ # Automation hooks
└── skills/ # Reusable capabilities# GitHub
export GITHUB_TOKEN=${GITHUB_TOKEN}
# PostgreSQL
export POSTGRES_HOST=${POSTGRES_HOST}
export POSTGRES_USER=${POSTGRES_USER}
export POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
# AWS
export AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
export AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}# Install a complete frontend development environment
npx claude-code-templates@latest \
--agent development-team/frontend-developer \
--agent performance/react-optimizer \
--command testing/generate-tests \
--command performance/optimize-bundle \
--mcp development/github-integration \
--setting performance/mcp-timeouts \
--yes# Security-focused setup
npx claude-code-templates@latest \
--agent security/security-auditor \
--command security/check-security \
--command security/dependency-audit \
--hook git/pre-commit-validation \
--yes# Database-focused setup
npx claude-code-templates@latest \
--agent data/database-architect \
--command database/optimize-queries \
--mcp database/postgresql-integration \
--yesconst { installComponent } = require('claude-code-templates');
// Install an agent programmatically
await installComponent({
type: 'agent',
name: 'development-team/frontend-developer',
skipConfirmation: true
});
// Install multiple components
const components = [
{ type: 'agent', name: 'security/security-auditor' },
{ type: 'command', name: 'testing/generate-tests' },
{ type: 'mcp', name: 'development/github-integration' }
];
for (const component of components) {
await installComponent({ ...component, skipConfirmation: true });
}ls -la .claude/agents/
ls -la .claude/commands/
ls -la .claude/mcps/.claudenpx claude-code-templates@latest --health-checkecho $GITHUB_TOKEN
echo $POSTGRES_HOST.claudechmod -R u+w .claude/# Install cloudflared
brew install cloudflare/cloudflare/cloudflared
# Or download from https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/installation/rm .claude/agents/conflicting-agent.md
npx claude-code-templates@latest --agent new/agent --yes