Claude Code is Anthropic's agentic coding tool that lives in the terminal and helps turn ideas into code faster. It combines autonomous planning, execution, and validation with extensibility through skills, plugins, MCP servers, and hooks.
/plugin marketplace add rafaelcalleja/claude-market-place/plugin install claudekit-skills@claude-market-placeThis skill inherits all available tools. When active, it can use any tool Claude has access to.
llms.txtreferences/advanced-features.mdreferences/agent-skills.mdreferences/api-reference.mdreferences/best-practices.mdreferences/cicd-integration.mdreferences/configuration.mdreferences/enterprise-features.mdreferences/getting-started.mdreferences/hooks-and-plugins.mdreferences/ide-integration.mdreferences/mcp-integration.mdreferences/slash-commands.mdreferences/troubleshooting.mdskill.jsonClaude Code is Anthropic's agentic coding tool that lives in the terminal and helps turn ideas into code faster. It combines autonomous planning, execution, and validation with extensibility through skills, plugins, MCP servers, and hooks.
Use when users need help with:
Activation examples:
Subagents: Specialized AI agents (planner, code-reviewer, tester, debugger, docs-manager, ui-ux-designer, database-admin, etc.)
Agent Skills: Modular capabilities with instructions, metadata, and resources that Claude uses automatically
Slash Commands: User-defined operations in .claude/commands/ that expand to prompts
Hooks: Shell commands executing in response to events (pre/post-tool, user-prompt-submit)
MCP Servers: Model Context Protocol integrations connecting external tools and services
Plugins: Packaged collections of commands, skills, hooks, and MCP servers
Load these references when needed for detailed guidance:
references/getting-started.md
Slash Commands: references/slash-commands.md
Agent Skills: references/agent-skills.md
MCP Integration: references/mcp-integration.md
Hooks & Plugins: references/hooks-and-plugins.md
references/configuration.md
Enterprise Features: references/enterprise-features.md
IDE Integration: references/ide-integration.md
CI/CD Integration: references/cicd-integration.md
Advanced Features: references/advanced-features.md
Troubleshooting: references/troubleshooting.md
API Reference: references/api-reference.md
Best Practices: references/best-practices.md
/cook implement user authentication with JWT
# Or plan first
/plan implement payment integration with Stripe
/fix:fast the login button is not working
/debug the API returns 500 errors intermittently
/fix:types # Fix TypeScript errors
claude "review my latest commit"
/test
/fix:test the user service tests are failing
/docs:init # Create initial documentation
/docs:update # Update existing docs
/docs:summarize # Summarize changes
/git:cm # Stage and commit
/git:cp # Stage, commit, and push
/git:pr feature-branch main # Create pull request
/design:fast create landing page for SaaS product
/content:good write product description for new feature
When responding to Claude Code questions:
Loading references:
For setup/installation questions: Load references/getting-started.md
For slash command questions: Load references/slash-commands.md
For skill creation: Load references/agent-skills.md
For MCP questions: Load references/mcp-integration.md
For hooks/plugins: Load references/hooks-and-plugins.md
For configuration: Load references/configuration.md
For enterprise deployment: Load references/enterprise-features.md
For IDE integration: Load references/ide-integration.md
For CI/CD: Load references/cicd-integration.md
For advanced features: Load references/advanced-features.md
For troubleshooting: Load references/troubleshooting.md
For API usage: Load references/api-reference.md
For best practices: Load references/best-practices.md
Documentation links:
Provide accurate, actionable guidance based on the loaded references and official documentation.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.