academic-paper-reviewe…
Simulates academic peer review, evaluating papers across Originality, Methodology, Results, and Writing to provide Major/Minor Revision recommendations with…
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.
/dev-guide-generatorContext 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
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
**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.
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]
**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):
3. **If the user asks to skip clarification**, proceed with these default assumptions:
**Output**: Tutorial metadata summary (topic, audience, objective, scope — no more than 150 words)
---
**Goal**: List all knowledge and tools the reader needs before starting this tutorial, ensuring there are no knowledge gaps.
**Steps**:
1. **Dependency analysis**:
2. **Prerequisites checklist**:
**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**:
**Output**: Tiered prerequisites checklist
---
**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
2. **Installation steps**: Provide commands for each operating system
**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
# Verify installation
xxx --version
# Expected output: xxx x.y.z4. **Self-check rules**:
**Output**: OS-specific installation and configuration guide + verification commands
---
**Goal**: Walk the reader through the core operations in a progressive structure, where each step can be independently verified.
**Steps**:
1. **Step planning**:
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**:
4. **Progressive complexity**:
Claude Code Guide - Setup, Commands, workflows, agents, skills & tips-n-tricks from beginner to power user!
Repo: zebbern/claude-code-guide
Simulates academic peer review, evaluating papers across Originality, Methodology, Results, and Writing to provide Major/Minor Revision recommendations with…
This skill should be used when the user asks to "attack Active Directory", "exploit AD", "Kerberoasting", "DCSync", "pass-the-hash", "BloodHound enumeration",…
This skill should be used when the user asks to "test API security", "fuzz APIs", "find IDOR vulnerabilities", "test REST API", "test GraphQL", "API…
Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to design an API, explore interface…
Interactive system flow tracing across CODE, API, AUTH, DATA, NETWORK layers with SQLite persistence and Mermaid export. Use for security audits, compliance…
Authentication patterns: session vs JWT vs OAuth comparison, provider selection (NextAuth, Clerk, Supabase Auth), security checklist, and common mistakes. Use…