A Claude Code Guide — interactive onboarding and Q&A on setup, best practices, automation, and effective workflows, packaged as a plugin.
New! Enable a proactive learning with Game Mode!
Enable with /guide:game-mode on
Listen to this guide — NotebookLM audio overview provides an AI-generated audio reflection of the guide content.
⭐ Find this useful? Star the repo to follow updates and show support!
This repo is a Claude Code plugin. Install it to get interactive guide skills directly inside Claude Code.
Requires Claude Code v1.0.33 or later. Run
claude --versionto check. See setup docs to install or update.
Clone the repo and launch Claude Code with the --plugin-dir flag:
git clone https://github.com/OriNachum/claude-code-guide.git
claude --plugin-dir ./claude-code-guide
This loads the plugin for the current session only. You can also use an absolute path:
claude --plugin-dir /path/to/claude-code-guide
To install permanently, add this repo as a marketplace from within Claude Code, then install the plugin:
/plugin marketplace add ./claude-code-guide
/plugin install guide@claude-code-guide
Or from the CLI:
claude plugin marketplace add ./claude-code-guide
claude plugin install guide@claude-code-guide
From within Claude Code:
/plugin marketplace add OriNachum/claude-code-guide
/plugin install guide@claude-code-guide
After installing, restart Claude Code for the plugin skills to become available.
Once installed, two skills are available:
/guide:onboard — Interactive getting-started walkthrough. Guides you through environment setup, your first session, and best practices./guide:ask — Ask any question about Claude Code features. Reads relevant reference docs to give accurate, detailed answers./guide:game-mode - Enable Game Mode. The guide will locally track your usage of Claude, assign a level per usage and help you master Claude code.Narrative walkthroughs showing Claude Code in real-world scenarios:
claude-code-guide/
├── .claude-plugin/
│ ├── plugin.json Plugin manifest
│ └── marketplace.json Marketplace manifest
├── skills/
│ ├── onboard/
│ │ └── SKILL.md Interactive getting-started walkthrough
│ └── ask/
│ ├── SKILL.md Q&A against reference docs
│ └── references/
│ ├── stories/ Narrative user-story walkthroughs (7 files)
│ ├── ... Detailed reference docs (18 files)
├── CLAUDE.md Agent instructions
├── PRIVACY.md Privacy policy
├── LICENSE CC BY 4.0
└── README.md This file
Contributions welcome! The skills are at skills/onboard/SKILL.md and skills/ask/SKILL.md. Reference docs are in skills/ask/references/.
CC BY 4.0 — see LICENSE for details.