Claude Code expert guidance - features, configuration, hooks, plugins, MCP servers, IDE integration, and enterprise deployment
/plugin marketplace add GGPrompts/my-plugins/plugin install ggprompts-full-toolkit@GGPrompts/my-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
llms.txtreferences/mcp-hooks.mdreferences/skills-plugins.mdreferences/slash-commands.mdreferences/troubleshooting.mdskill.jsonThis skill provides guidance on using Claude Code, Anthropic's agentic coding tool.
Activate when users need help with:
Claude Code is an agentic coding tool in your terminal that:
| Component | Purpose |
|---|---|
| Slash Commands | User operations like /fix, /plan, /commit |
| Skills | Modular capabilities in .claude/skills/ |
| Hooks | Shell commands on events (PreToolUse, PostToolUse) |
| MCP Servers | External tool integrations via .mcp.json |
| Plugins | Packaged collections of commands/skills/hooks |
# Feature implementation
/cook implement user authentication
# Bug fixing
/fix the login button is not working
# Planning
/plan implement payment integration
# Git operations
/commit
// .mcp.json
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": { "GITHUB_TOKEN": "your_token" }
}
}
}
// .claude/settings.json
{
"hooks": {
"PostToolUse": [{
"matcher": "Write",
"hooks": ["./scripts/format.sh"]
}]
}
}
For detailed documentation:
references/slash-commands.md - Full command referencereferences/skills-plugins.md - Creating skills and pluginsreferences/mcp-hooks.md - MCP and hooks configurationreferences/troubleshooting.md - Debugging and best practicesVS Code / JetBrains: Install "Claude Code" extension, authenticate, use inline chat and code actions.
/help # Show available commands
/clear # Clear conversation
/memory # View stored context
/compact # Summarize conversation
/plugins # List installed plugins