/dev-guide-generator
Generates complete technical tutorials from prerequisites and environment setup to core steps, troubleshooting, and a final cheatsheet. Trigger on requests to write a tutorial, create a setup guide, organize steps for beginners, or keywords like step-by-step, quickstart, or
$ npx -y skills add zebbern/claude-code-guide --skill dev-guide-generator --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/dev-guide-generator
Context preview
The summary Claude sees to decide when to auto-load this skill.
Generates complete technical tutorials from prerequisites and environment setup to core steps, troubleshooting, and a final cheatsheet. Trigger on requests to write a tutorial, create a setup guide, organize steps for beginners, or keywords like step-by-step, quickstart, or
SKILL.md
dev-guide-generator.SKILL.mdname: dev-guide-generator
description: "Generates complete technical tutorials from prerequisites and environment setup to core steps, troubleshooting, and a final cheatsheet. Trigger on requests to write a tutorial, create a setup guide, organize steps for beginners, or keywords like step-by-step, quickstart, or how-to guide."
license: MIT
Dev Guide Generator
**One topic → complete technical tutorial**: Through a structured SOP workflow, transform a technical topic into a comprehensive tutorial covering prerequisites, environment setup, core steps, common error troubleshooting, and advanced topics — all accompanied by a cheatsheet.
Quick Start
The user simply provides a technical topic or operational goal, and the Agent automatically generates a complete tutorial following this workflow:
User: Help me write a Docker beginner's tutorial
Agent: [Outputs complete technical tutorial + Cheatsheet following the SOP workflow]
SOP Workflow
Phase 1: Topic Scoping & Audience Analysis
**Goal**: Define the tutorial's technical subject, target audience, and scope boundaries.
**Steps**:
1. **Parse the topic**: Identify the core technology, operational goals, and expected deliverables from the user's input 2. **Ask clarifying questions** (up to 4 key questions):
- What is the target audience's technical level? (Complete beginner / Some experience / Experienced developer)
- What operating system will the reader be using? (macOS / Windows / Linux / Any)
- What should the reader be able to do after completing the tutorial? (Specific deliverable)
- Are there any version or tech stack constraints?
3. **If the user asks to skip clarification**, proceed with these default assumptions:
- Audience: Has basic programming experience but is unfamiliar with the topic technology
- Environment: Cover both macOS and Linux (note Windows differences where necessary)
- Goal: Be able to independently complete a minimal working example
**Output**: Tutorial metadata summary (topic, audience, objective, scope — no more than 150 words)
---
Phase 2: Prerequisites
**Goal**: List all knowledge and tools the reader needs before starting this tutorial, ensuring there are no knowledge gaps.
**Steps**:
1. **Dependency analysis**:
- List all technical concepts involved in this tutorial
- For each concept, determine whether it should be "explained within the tutorial" or "assumed as prior knowledge"
- Decision rule: If explaining it would digress more than 200 words from the main topic, classify it as a prerequisite
2. **Prerequisites checklist**:
- Categorize into "Must know" and "Nice to know" tiers
- Attach a one-line explanation for each: "why you need it"
- Format:
**Must know**:
- [Concept]: [Why you need it] (Recommended resource)
**Nice to know**:
- [Concept]: [What aspects of the tutorial it relates to]3. **Self-check rules**:
- If prerequisites exceed 5 items, consider narrowing the tutorial scope or splitting into a series
- Every prerequisite must have a publicly available learning resource
**Output**: Tiered prerequisites checklist
---
Phase 3: Environment Setup
**Goal**: Provide a reproducible environment configuration path so the reader is fully set up before starting the core steps.
**Steps**:
1. **Environment inventory**: List all tools to install/configure with recommended versions
- Format: `Tool name Version requirement (e.g., >= x.y) | Purpose`
- Clearly distinguish "required" from "optional" installations
2. **Installation steps**: Provide commands for each operating system
- Precede each command with a one-line explanation of what it does
- Use only officially recommended methods or mainstream package managers
- Format:
**macOS**:
# Install xxx (via Homebrew)
brew install xxx
**Linux (Ubuntu/Debian)**:
# Install xxx (via apt)
sudo apt update && sudo apt install -y xxx3. **Environment verification**: Provide a verification command and expected output after each tool installation
- Format:
# Verify installation
xxx --version
# Expected output: xxx x.y.z4. **Self-check rules**:
- All installation commands must come from official documentation or mainstream package managers — no third-party scripts
- Never include real API keys, passwords, tokens, or other sensitive values
- When configuration files are involved, use placeholders (e.g., `YOUR_API_KEY`) and explain how to obtain the real value
**Output**: OS-specific installation and configuration guide + verification commands
---
Phase 4: Core Steps
**Goal**: Walk the reader through the core operations in a progressive structure, where each step can be independently verified.
**Steps**:
1. **Step planning**:
- Break the entire operation into 5–10 steps (each focused on one sub-goal)
- Order steps strictly by dependency
- Each step includes: step number, title, and objective statement
2. **Step writing format**:
#### Step N: [Step Title]
**Objective**: [What state is achieved after this step]
**Actions**:
[Code block or operational instructions]
**Explanation**:
- [Line-by-line or section-by-section explanation of key parts]
**Verification**:
[What command to run / what result to check to confirm success]
Expected output: [Specific expected result]
3. **Writing guidelines**:
- Code blocks must specify the language (e.g., ```bash, ```python)
- Placeholders use ALL_CAPS_WITH_UNDERSCORES format (e.g., `YOUR_PROJECT_NAME`) and are explained on first occurrence
- Each code block should not exceed 30 lines; split and explain in sections if longer
- Use relative file paths; state the project root directory at the beginning
- Every step must end with a verification section
4. **Progressive complexity**:
- Steps 1–3: Minimal runnabl
Read more
name: dev-guide-generator description: "Generates complete technical tutorials from prerequisites and environment setup to core steps, troubleshooting, and a final cheatsheet. Trigger on requests to write a tutorial, create a setup guide, organize steps for beginners, or keywords like step-by-step, quickstart, or how-to guide." license: MIT
Dev Guide Generator
**One topic → complete technical tutorial**: Through a structured SOP workflow, transform a technical topic into a comprehensive tutorial covering prerequisites, environment setup, core steps, common error troubleshooting, and advanced topics — all accompanied by a cheatsheet.
Quick Start
The user simply provides a technical topic or operational goal, and the Agent automatically generates a complete tutorial following this workflow:
User: Help me write a Docker beginner's tutorial Agent: [Outputs complete technical tutorial + Cheatsheet following the SOP workflow]
SOP Workflow
Phase 1: Topic Scoping & Audience Analysis
**Goal**: Define the tutorial's technical subject, target audience, and scope boundaries.
**Steps**:
1. **Parse the topic**: Identify the core technology, operational goals, and expected deliverables from the user's input 2. **Ask clarifying questions** (up to 4 key questions):
- What is the target audience's technical level? (Complete beginner / Some experience / Experienced developer)
- What operating system will the reader be using? (macOS / Windows / Linux / Any)
- What should the reader be able to do after completing the tutorial? (Specific deliverable)
- Are there any version or tech stack constraints?
3. **If the user asks to skip clarification**, proceed with these default assumptions:
- Audience: Has basic programming experience but is unfamiliar with the topic technology
- Environment: Cover both macOS and Linux (note Windows differences where necessary)
- Goal: Be able to independently complete a minimal working example
**Output**: Tutorial metadata summary (topic, audience, objective, scope — no more than 150 words)
---
Phase 2: Prerequisites
**Goal**: List all knowledge and tools the reader needs before starting this tutorial, ensuring there are no knowledge gaps.
**Steps**:
1. **Dependency analysis**:
- List all technical concepts involved in this tutorial
- For each concept, determine whether it should be "explained within the tutorial" or "assumed as prior knowledge"
- Decision rule: If explaining it would digress more than 200 words from the main topic, classify it as a prerequisite
2. **Prerequisites checklist**:
- Categorize into "Must know" and "Nice to know" tiers
- Attach a one-line explanation for each: "why you need it"
- Format:
**Must know**:
- [Concept]: [Why you need it] (Recommended resource)
**Nice to know**:
- [Concept]: [What aspects of the tutorial it relates to]3. **Self-check rules**:
- If prerequisites exceed 5 items, consider narrowing the tutorial scope or splitting into a series
- Every prerequisite must have a publicly available learning resource
**Output**: Tiered prerequisites checklist
---
Phase 3: Environment Setup
**Goal**: Provide a reproducible environment configuration path so the reader is fully set up before starting the core steps.
**Steps**:
1. **Environment inventory**: List all tools to install/configure with recommended versions
- Format: `Tool name Version requirement (e.g., >= x.y) | Purpose`
- Clearly distinguish "required" from "optional" installations
2. **Installation steps**: Provide commands for each operating system
- Precede each command with a one-line explanation of what it does
- Use only officially recommended methods or mainstream package managers
- Format:
**macOS**:
# Install xxx (via Homebrew)
brew install xxx
**Linux (Ubuntu/Debian)**:
# Install xxx (via apt)
sudo apt update && sudo apt install -y xxx3. **Environment verification**: Provide a verification command and expected output after each tool installation
- Format:
# Verify installation
xxx --version
# Expected output: xxx x.y.z4. **Self-check rules**:
- All installation commands must come from official documentation or mainstream package managers — no third-party scripts
- Never include real API keys, passwords, tokens, or other sensitive values
- When configuration files are involved, use placeholders (e.g., `YOUR_API_KEY`) and explain how to obtain the real value
**Output**: OS-specific installation and configuration guide + verification commands
---
Phase 4: Core Steps
**Goal**: Walk the reader through the core operations in a progressive structure, where each step can be independently verified.
**Steps**:
1. **Step planning**:
- Break the entire operation into 5–10 steps (each focused on one sub-goal)
- Order steps strictly by dependency
- Each step includes: step number, title, and objective statement
2. **Step writing format**:
#### Step N: [Step Title] **Objective**: [What state is achieved after this step] **Actions**: [Code block or operational instructions] **Explanation**: - [Line-by-line or section-by-section explanation of key parts] **Verification**: [What command to run / what result to check to confirm success] Expected output: [Specific expected result]
3. **Writing guidelines**:
- Code blocks must specify the language (e.g., ```bash, ```python)
- Placeholders use ALL_CAPS_WITH_UNDERSCORES format (e.g., `YOUR_PROJECT_NAME`) and are explained on first occurrence
- Each code block should not exceed 30 lines; split and explain in sections if longer
- Use relative file paths; state the project root directory at the beginning
- Every step must end with a verification section
4. **Progressive complexity**:
- Steps 1–3: Minimal runnabl
Claude Code Guide - Setup, Commands, workflows, agents, skills & tips-n-tricks from beginner to power user!
Repo: zebbern/claude-code-guide
Other skills on claude-code-guide.
- /academic-paper-reviewer
Simulates academic peer review, evaluating papers across Originality, Methodology, Results, and Writing to provide Major/Minor Revision recommendations with actionable feedback. Triggers when a user asks to \"review my paper,\" \"simulate peer review,\" or \"give my paper a peer
Open skill - /active-directory-attacks
This skill should be used when the user asks to "attack Active Directory", "exploit AD", "Kerberoasting", "DCSync", "pass-the-hash", "BloodHound enumeration", "Golden Ticket", "Silver Ticket", "AS-REP roasting", "NTLM relay", or needs guidance on Windows domain penetration
Open skill - /api-fuzzing-bug-bounty
This skill should be used when the user asks to "test API security", "fuzz APIs", "find IDOR vulnerabilities", "test REST API", "test GraphQL", "API penetration testing", "bug bounty API testing", or needs guidance on API security assessment techniques.
Open skill - /api-shape-explorer
Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to design an API, explore interface options, compare module shapes, or mentions "design it twice".
Open skill - /audit-flow
Interactive system flow tracing across CODE, API, AUTH, DATA, NETWORK layers with SQLite persistence and Mermaid export. Use for security audits, compliance documentation, flow tracing, feature ideation, brainstorming, debugging, architecture reviews, or incident post-mortems.
Open skill - /authentication-patterns
Authentication patterns: session vs JWT vs OAuth comparison, provider selection (NextAuth, Clerk, Supabase Auth), security checklist, and common mistakes. Use when implementing auth, reviewing auth flows, or choosing auth providers.
Open skill

