Use when working with Claude Code CLI, plugins, hooks, MCP servers, skills, configuration, or any Claude Code feature - provides comprehensive official documentation for all aspects of Claude Code
/plugin marketplace add tianzecn/myclaudecode/plugin install superpowers-developing-for-claude-code@tianzecn-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/amazon-bedrock.mdreferences/analytics.mdreferences/checkpointing.mdreferences/cli-reference.mdreferences/common-workflows.mdreferences/costs.mdreferences/data-usage.mdreferences/devcontainer.mdreferences/github-actions.mdreferences/gitlab-ci-cd.mdreferences/google-vertex-ai.mdreferences/headless.mdreferences/hooks-guide.mdreferences/hooks.mdreferences/iam.mdreferences/interactive-mode.mdreferences/jetbrains.mdreferences/legal-and-compliance.mdreferences/llm-gateway.mdreferences/mcp.mdThis skill provides complete, authoritative documentation for Claude Code directly from docs.claude.com. Instead of guessing about configuration paths, API structures, or feature capabilities, read the official docs stored in this skill's references directory.
Use this skill when:
| Task | Read This File |
|---|---|
| Create a plugin | plugins.md then plugins-reference.md |
| Set up MCP server | mcp.md |
| Configure hooks | hooks.md then hooks-guide.md |
| Write a skill | skills.md |
| CLI commands | cli-reference.md |
| Troubleshoot issues | troubleshooting.md |
| General setup | setup.md or quickstart.md |
| Configuration options | settings.md |
All documentation is stored as individual markdown files in references/. Use the Read tool to access specific documentation:
references/
├── overview.md # Claude Code introduction
├── quickstart.md # Getting started guide
├── setup.md # Installation and setup
├── plugins.md # Plugin development
├── plugins-reference.md # Plugin API reference
├── plugin-marketplaces.md # Plugin marketplaces
├── skills.md # Skill creation
├── mcp.md # MCP server integration
├── hooks.md # Hooks overview
├── hooks-guide.md # Hooks implementation guide
├── slash-commands.md # Slash command reference
├── sub-agents.md # Subagent usage
├── settings.md # Configuration reference
├── cli-reference.md # CLI command reference
├── common-workflows.md # Common usage patterns
├── interactive-mode.md # Interactive mode guide
├── headless.md # Headless mode guide
├── output-styles.md # Output customization
├── statusline.md # Status line configuration
├── memory.md # Memory and context management
├── checkpointing.md # Checkpointing feature
├── analytics.md # Usage analytics
├── costs.md # Cost tracking
├── monitoring-usage.md # Usage monitoring
├── data-usage.md # Data usage policies
├── security.md # Security features
├── iam.md # IAM integration
├── network-config.md # Network configuration
├── terminal-config.md # Terminal configuration
├── model-config.md # Model configuration
├── llm-gateway.md # LLM gateway setup
├── amazon-bedrock.md # AWS Bedrock integration
├── google-vertex-ai.md # Google Vertex AI integration
├── vs-code.md # VS Code integration
├── jetbrains.md # JetBrains integration
├── devcontainer.md # Dev container support
├── github-actions.md # GitHub Actions integration
├── gitlab-ci-cd.md # GitLab CI/CD integration
├── third-party-integrations.md # Other integrations
├── legal-and-compliance.md # Legal information
├── troubleshooting.md # Troubleshooting guide
└── migration-guide.md # Migration guide
@references/filename.mdExample:
User: "How do I create a Claude Code plugin?"
→ Read @references/plugins.md
→ Follow the official plugin creation steps
When exploring a topic, start with the overview document, then drill into specific files:
plugins.md, skills.md, or mcp.mdsettings.md or setup.mdtroubleshooting.mdUse Grep tool to search across all documentation:
pattern: "search term"
path: ~/.claude/skills/working-with-claude-code/references/
The skill includes scripts/update_docs.js to fetch the latest documentation from docs.claude.com.
Run when:
node ~/.claude/skills/working-with-claude-code/scripts/update_docs.js
The script:
references/Read plugins.md for overview, then plugins-reference.md for API details.
Read mcp.md for configuration format and examples.
Read hooks.md for overview, then hooks-guide.md for implementation details.
Read skills.md for the complete skill authoring guide.
extending-claude-code skill (when available)If you find yourself:
settings.mdhooks.mdAlways consult the official documentation before guessing.
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 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 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.