/claude-code-guide
Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies "Thinking" keywords, debugging techniques, and best practices for interacting with the agent.
One skill from claude-code-templates.
shell
$ npx -y skills add davila7/claude-code-templates --skill claude-code-guide --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/claude-code-guide
Context preview
The summary Claude sees to decide when to auto-load this skill.
Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies "Thinking" keywords, debugging techniques, and best practices for interacting with the agent.
Stats
Stars29,853
Forks3,189
LanguagePython
LicenseMIT
Ships with claude-code-templates
SKILL.md
claude-code-guide.SKILL.md
--- name: Claude Code Guide description: Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies "Thinking" keywords, debugging techniques, and best practices for interacting with the agent. --- # Claude Code Guide ## Purpose To provide a comprehensive reference for configuring and using Claude Code (the agentic coding tool) to its full potential. This skill synthesizes best practices, configuration templates, and advanced usage patterns. ## Configuration (`CLAUDE.md`) When starting a new project, create a `CLAUDE.md` file in the root directory to guide the agent. ### Template (General) ```markdown # Project Guidelines ## Commands - Run app: `npm run dev` - Test: `npm test` - Build: `npm run build` ## Code Style - Use TypeScript for all new code. - Functional components with Hooks for React. - Tailwind CSS for styling. - Early returns for error handling. ## Workflow - Read `README.md` first to understand project context. - Before editing, read the file content. - After editing, run tests to verify.
