
Course Generator
- 8 installs
- 2 repo stars
- Updated August 1, 2026
- vishalsachdev/claude-skills
Helps with ai & agent building tasks.
About
course-generator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- course-generator
- AI & Agent Building
- AI-coding skill
Course Generator by the numbers
- 8 all-time installs (skills.sh)
- +1 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #12,269 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/vishalsachdev/claude-skills --skill course-generatorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 8 |
|---|---|
| repo stars | ★ 2 |
| Last updated | August 1, 2026 |
| Repository | vishalsachdev/claude-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
Course Generator
Convert course outlines into complete intelligent textbook courses.
Prerequisites
Read the teaching philosophy context before generating any content:
/Users/vishal/admin/teaching-philosophy-context.md
This provides the pedagogical principles that guide all content generation.
Workflow
Phase 0: Customization Questions
Before generating, ask these questions to customize the output:
1. TARGET AUDIENCE
- Who is this course for? (students, professionals, self-learners)
- What's their background/prerequisite knowledge?
- Age/education level? (high school, college, graduate, professional)
2. FORMAT & DELIVERY
- Self-paced online textbook? Live cohort? Hybrid?
- Approximate total hours for completion?
- Any specific platform constraints? (Canvas, MkDocs, other)
3. DEPTH & SCOPE
- Full course or condensed version?
- Which topics to emphasize or skip?
- Include hands-on projects? What tools available?
4. ASSESSMENT STYLE
- Quiz-heavy or project-based?
- Include peer review components?
- Public presentation/portfolio requirements?Use AskUserQuestion tool with these as options, or gather through conversation.
Phase 1: Parse & Analyze
URL Parsing Strategy
For simple/static pages (documentation sites, GitHub, simple HTML):
Use WebFetch to retrieve contentFor JS-heavy pages (Maven, Coursera, Udemy, course platforms):
Use Chrome browser automation:
1. mcp__claude-in-chrome__tabs_context_mcp (get/create tab)
2. mcp__claude-in-chrome__navigate to URL
3. mcp__claude-in-chrome__computer action=wait duration=3
4. mcp__claude-in-chrome__read_page to get accessibility tree
5. Click "expand" buttons for syllabus/curriculum sections
6. mcp__claude-in-chrome__get_page_text or screenshot as neededExtract Key Elements
- Course title and description
- Target audience and prerequisites
- Learning objectives (if stated)
- Topic list or module structure (expand collapsed sections!)
- Any existing assessments or projects
Identify Course Level
| Level | Glossary/Chapter | MicroSim Complexity |
|---|---|---|
| Junior high | ~10 terms | Simple, single-parameter |
| Senior high | ~15 terms | Moderate, 2-3 parameters |
| College | ~20 terms | Full treatment |
| Graduate | ~25 terms | Research connections |
---
Parallel Subagent Execution
Cost optimization: Use haiku for structured/repetitive tasks, sonnet for creative/complex tasks.
Phase 2-5: Launch Subagents in Parallel
After Phase 1 parsing and user approval of chapter structure, launch these subagents in parallel using a single message with multiple Task tool calls:
Task(subagent_type="general-purpose", model="haiku", prompt="[learning graph task]")
Task(subagent_type="general-purpose", model="haiku", prompt="[glossary task]")
Task(subagent_type="general-purpose", model="haiku", prompt="[quiz task]")
Task(subagent_type="general-purpose", model="sonnet", prompt="[chapter content task]")
Task(subagent_type="general-purpose", model="sonnet", prompt="[microsim spec task]")Subagent Task Assignments
Learning Graph Agent (haiku)
Generate a learning graph JSON for "[Course Name]".
Context: [paste parsed course outline]
REQUIREMENTS:
1. CONCEPT ENUMERATION (150-250 concepts)
- Each concept label: Title Case, max 32 characters
- Entity names only (not questions like "What is X")
- Cover full breadth of course material
2. TAXONOMY CATEGORIZATION
Assign each concept to exactly one category:
- FOUND: Foundation concepts with NO dependencies (entry points)
- BASIC: Build directly on foundations
- INTER: Intermediate, build on basics
- ADV: Advanced, build on intermediate
- APP: Application/synthesis of multiple concepts
3. DEPENDENCY MAPPING (DAG structure)
Critical validation rules:
- NO circular dependencies (A→B→C→A is invalid)
- NO self-dependencies (concept cannot depend on itself)
- FOUND concepts have empty dependencies array
- All other concepts have at least one dependency
- Prefer multiple learning pathways over linear chains
- Avoid long single-dependency chains (>5 concepts)
4. QUALITY METRICS TO ACHIEVE
- Foundational concepts (zero dependencies): 10-15% of total
- Orphaned nodes (nothing depends on them): <20% (except APP category)
- Average dependencies per concept: 1.5-3.0
- No disconnected subgraphs (all concepts reachable)
Output: learning-graph.json content only, valid JSON per schemaGlossary Agent (haiku)
Generate glossary entries for "[Course Name]".
Concepts to define: [list from learning graph]
Course level: [junior-high/senior-high/college/graduate]
Terms per chapter target: [10/15/20/25 based on level]
ISO 11179 DEFINITION STANDARDS (mandatory):
Each definition must be:
1. PRECISE: Exact meaning, no ambiguity, specific to course context
2. CONCISE: 20-50 words target, as brief as possible while complete
3. DISTINCT: Differentiates from similar terms
4. NON-CIRCULAR: Never use the term being defined in its definition
5. NO BUSINESS RULES: Definition only, not how it's used
QUALITY RUBRIC (aim for 85+ per definition):
- Precision (25 pts): Accurately captures meaning
- Conciseness (25 pts): Within 20-50 words
- Distinctiveness (25 pts): Unique, not copied
- Non-circularity (25 pts): No self-reference or undefined terms
FORMAT:
#### [Term]
[Definition in 1-2 sentences]
**Example:** [Concrete illustration from course domain]
REQUIREMENTS:
- Sort alphabetically (case-insensitive)
- 60-80% of terms should have examples
- Use simpler terms in definitions (avoid undefined jargon)
BAD: "A learning graph is a graph used for learning."
GOOD: "A directed graph of concepts showing prerequisite relationships for mastering a topic."
Output: glossary.md content onlyQuiz Agent (haiku)
Generate quiz questions for "[Course Name]" Chapter [N]: [Title].
Chapter type: [introductory/intermediate/advanced]
Concepts covered: [list from learning graph]
Learning objectives: [from chapter structure]
BLOOM'S TAXONOMY DISTRIBUTION (adjust by chapter type):
Introductory chapters:
- 40% Remember, 40% Understand, 15% Apply, 5% Analyze
Intermediate chapters:
- 25% Remember, 30% Understand, 30% Apply, 15% Analyze
Advanced chapters:
- 15% Remember, 20% Understand, 25% Apply, 25% Analyze, 10% Evaluate, 5% Create
QUESTION STEMS BY LEVEL:
- Remember: Define..., List..., What is..., Name...
- Understand: Explain..., Describe..., Why does..., Summarize...
- Apply: How would you use..., Calculate..., Demonstrate...
- Analyze: Compare..., What is the relationship..., Why might...
- Evaluate: Assess..., Which is better..., Justify...
- Create: Design..., Propose..., How might you...
ANSWER BALANCE (critical):
- Distribute correct answers: A=25%, B=25%, C=25%, D=25% (±5%)
- Avoid patterns (not A-B-A-B, not all C's in a row)
DISTRACTOR QUALITY:
- All wrong answers must be plausible (sound reasonable)
- Similar length to correct answer
- No "All of the above" or "None of the above"
- No jokes or obviously wrong options
- Address common misconceptions
FORMAT (mkdocs-material):
#### 1. [Question text]?
<div class="upper-alpha" markdown>
1. [Option A]
2. [Option B]
3. [Option C]
4. [Option D]
</div>
??? question "Show Answer"
The correct answer is **[LETTER]**.
[Explanation 50-100 words: why correct, why others wrong]
**Concept:** [Concept name]
Generate 8-12 questions per chapter.
Output: quiz.md content onlyChapter Content Agent (sonnet)
Generate chapter content for "[Course Name]" Chapter [N]: [Title].
Learning objectives: [list with Bloom's verbs]
Concepts to cover: [from learning graph, in dependency order]
Target word count: 1500-2500 words
TEACHING PHILOSOPHY (apply throughout):
- Low floor, high ceiling: Accessible entry, unlimited depth
- Concrete before abstract: Examples and stories before theory
- Intrinsic motivation: Connect to real problems students care about
- Socratic coaching: Reflection questions, not just content delivery
REQUIRED STRUCTURE:
## Learning Objectives
By the end of this chapter, you will be able to:
1. [Bloom's verb] [specific outcome]
2. [Bloom's verb] [specific outcome]
3. [Bloom's verb] [specific outcome]
## Introduction
[Hook: Story, question, or real-world scenario that motivates the topic]
[Why this matters - connect to student's world]
## Section 1: [Foundation Concept]
[Concrete example FIRST, then abstract principle]
### Key Idea
[Core concept in 1-2 sentences]
### Example
[Worked example with step-by-step explanation]
### Try It
[Low-stakes practice opportunity - something student can do now]
## Section 2: [Building Concept]
[Build on Section 1, introduce complexity]
## Section 3: [Application]
[Real-world use cases, synthesis]
## Reflection Questions
1. [Socratic question prompting deeper thinking]
2. [Question connecting to student's own experience]
3. [Question about assumptions or limitations]
## Summary
- [3-5 bullet points of key takeaways]
## Next Steps
[Preview next chapter, how concepts connect]
Output: index.md content onlyMicroSim Spec Agent (sonnet)
Generate MicroSim specifications for "[Course Name]" Chapter [N].
Concepts to visualize: [list abstract concepts that benefit from interactivity]
Course level: [junior-high/senior-high/college/graduate]
FOR EACH MICROSIM, SPECIFY:
## MicroSim: [Name]
### Concept Visualized
- **Concept:** [From learning graph]
- **Learning Goal:** Students will understand [X] by manipulating [Y] and observing [Z]
- **Difficulty:** [Beginner/Intermediate/Advanced]
### Controls (Right Panel)
| Control | Type | Range | Default | Effect |
|---------|------|-------|---------|--------|
| [Name] | slider | [min]-[max] | [val] | [What changes] |
| [Name] | button | - | - | [What happens on click] |
| [Name] | dropdown | [options] | [val] | [What changes] |
### Visualization (Left Panel)
- What is drawn (shapes, graphs, animations)
- How it responds to control changes
- Color/size encoding (if any)
- Animation behavior
### The "Aha" Moment
When the student [does specific action], they see [specific result],
which demonstrates [principle/insight].
### Technical Notes
- Canvas: Responsive, min 400px width
- Frame rate: 30fps (or specify if different)
- Library: p5.js
- Mobile: Touch-friendly controls required
### Assessment Integration
After using this MicroSim, students should be able to answer:
1. [Quiz question this prepares them for]
2. [Another related question]
COMPLEXITY BY LEVEL:
- Junior high: 1-2 controls, simple cause-effect
- Senior high: 2-3 controls, moderate relationships
- College: 3-4 controls, complex interactions
- Graduate: 4+ controls, research-level visualizations
Output: spec.md content for each MicroSimFAQ Agent (haiku)
Generate FAQ for "[Course Name]".
Course description: [summary]
Target audience: [from customization]
Prerequisites: [list]
Chapter topics: [list]
Common misconceptions in this domain: [if known]
REQUIREMENTS:
Generate 15-25 questions across these categories:
1. CONCEPTUAL CLARIFICATIONS (30%)
- "What is the difference between X and Y?"
- "Why is X important in this field?"
- "How does X relate to Y?"
2. COMMON MISCONCEPTIONS (25%)
- "Is it true that X always causes Y?"
- "Why do people think X when actually Y?"
- Address errors students typically make
3. PRACTICAL APPLICATIONS (25%)
- "How do I apply X in real situations?"
- "When should I use X vs Y?"
- "What tools/resources help with X?"
4. PREREQUISITES & NEXT STEPS (20%)
- "What should I know before starting?"
- "What should I learn after this course?"
- "How does this connect to [related field]?"
ANSWER GUIDELINES:
- 2-4 sentences per answer (concise but complete)
- Reference specific chapter when helpful: "See Chapter 3 for details"
- Use concrete examples where possible
- Avoid jargon not defined in glossary
FORMAT:
## [Category Name]
### Q: [Question]?
[Answer in 2-4 sentences]
Output: faq.md content only---
Orchestration Flow
┌─────────────────────────────────────────────────────────────┐
│ PHASE 1: Parse URL (main agent) │
│ - Use Chrome for JS-heavy pages │
│ - Extract course structure │
│ - Identify level │
└─────────────────────────┬───────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ USER CHECKPOINT: Approve chapter structure │
└─────────────────────────┬───────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ PHASE 2-5: Parallel Subagents (single message) │
│ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │Learning Graph│ │ Glossary │ │ Quizzes │ │
│ │ (haiku) │ │ (haiku) │ │ (haiku) │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
│ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ Chapters │ │ MicroSim Spec│ │ FAQ │ │
│ │ (sonnet) │ │ (sonnet) │ │ (haiku) │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
└─────────────────────────┬───────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ PHASE 6: Assembly (main agent) │
│ - Compile outputs into course structure │
│ - Generate mkdocs.yml │
│ - Validate cross-references │
└─────────────────────────────────────────────────────────────┘---
Output Structure
course-name/
├── docs/
│ ├── index.md # Course home page
│ ├── course-description.md # Full course description
│ ├── chapters/
│ │ ├── 01-chapter-name/
│ │ │ ├── index.md # Chapter content
│ │ │ └── quiz.md # Chapter quiz
│ │ └── ...
│ ├── sims/
│ │ ├── sim-name/
│ │ │ ├── index.md # MicroSim documentation
│ │ │ └── spec.md # Implementation spec
│ │ └── ...
│ ├── learning-graph/
│ │ └── learning-graph.json # Concept dependency graph
│ ├── glossary.md # Master glossary
│ └── faq.md # FAQ
└── mkdocs.yml # MkDocs configurationPhase 6: Assembly & Validation
After subagents complete, validate and assemble outputs:
Quality Checklist
Learning Graph Validation
- [ ] Valid JSON (parse without errors)
- [ ] 150-250 concepts present
- [ ] No circular dependencies (DAG structure)
- [ ] Foundational concepts (zero deps): 10-15%
- [ ] All categories used (FOUND, BASIC, INTER, ADV, APP)
- [ ] No disconnected subgraphs
Glossary Validation
- [ ] All terms from learning graph included
- [ ] Alphabetically sorted
- [ ] Definitions 20-50 words average
- [ ] 60%+ have examples
- [ ] No circular definitions (term used in own definition)
Quiz Validation
- [ ] 8-12 questions per chapter
- [ ] Answer distribution balanced (A/B/C/D within 20-30% each)
- [ ] Bloom's levels present (Remember, Understand, Apply, Analyze)
- [ ] All questions have explanations
- [ ] mkdocs format correct (upper-alpha div, question admonition)
Chapter Content Validation
- [ ] 1500-2500 words per chapter
- [ ] Learning objectives present
- [ ] Hook/Introduction engaging
- [ ] Examples before abstract concepts
- [ ] "Try It" sections present
- [ ] Reflection questions (not just recall)
Cross-Reference Validation
- [ ] Glossary terms align with learning graph concepts
- [ ] Quiz concepts reference learning graph
- [ ] Chapter sections cover assigned concepts
- [ ] MicroSims reference specific concepts
Assembly Steps
1. Create directory structure per Output Structure 2. Write each file to appropriate location 3. Generate mkdocs.yml with navigation 4. Run mkdocs build to verify no broken links 5. Report summary to user:
- Total concepts: X
- Total glossary terms: X
- Total quiz questions: X
- Chapters generated: X
- MicroSim specs: X
---
Key Principles (from Teaching Philosophy)
Apply throughout generation:
1. Low floor, high ceiling: Accessible entry points, unlimited depth 2. Intrinsic motivation: Connect to real problems students care about 3. Build → Present → Feedback → Iterate: Design projects with public output 4. Socratic coaching: Include reflection questions, not just content 5. Concrete before abstract: Stories and examples before theory 6. Friction as signal: Include peer review, public presentation requirements
Reference Files
- Output Formats - JSON schemas and markdown templates for all artifacts
Output Formats Reference
Schemas and templates for all course artifacts.
Learning Graph JSON Schema
{
"metadata": {
"title": "Course Name",
"description": "Course description",
"level": "college",
"totalConcepts": 200,
"version": "1.0",
"created": "2026-01-07"
},
"groups": {
"FOUND": {
"classifierName": "Foundation Concepts",
"description": "Core concepts with no prerequisites",
"color": {"background": "#e8f5e9", "border": "#4caf50"}
},
"BASIC": {
"classifierName": "Basic Concepts",
"description": "Build on foundations",
"color": {"background": "#e3f2fd", "border": "#2196f3"}
},
"INTER": {
"classifierName": "Intermediate Concepts",
"description": "Build on basics",
"color": {"background": "#fff3e0", "border": "#ff9800"}
},
"ADV": {
"classifierName": "Advanced Concepts",
"description": "Build on intermediate",
"color": {"background": "#fce4ec", "border": "#e91e63"}
},
"APP": {
"classifierName": "Application Concepts",
"description": "Synthesize multiple concepts",
"color": {"background": "#f3e5f5", "border": "#9c27b0"}
}
},
"concepts": [
{
"id": 1,
"name": "Concept Name",
"category": "FOUND",
"depends_on": [],
"chapter": 1,
"bloom_level": "understand",
"description": "Brief description of concept"
}
]
}Concept Fields
| Field | Required | Description |
|---|---|---|
| id | Yes | Unique integer ID |
| name | Yes | Concept name (2-5 words) |
| category | Yes | FOUND, BASIC, INTER, ADV, or APP |
| depends_on | Yes | Array of prerequisite concept IDs |
| chapter | No | Chapter number where introduced |
| bloom_level | No | remember, understand, apply, analyze, evaluate, create |
| description | No | Brief description |
---
Chapter Structure
Chapter Index Template (docs/chapters/NN-name/index.md)
# Chapter N: Title
## Learning Objectives
By the end of this chapter, you will be able to:
1. [Bloom's verb] [specific outcome] (Remember/Understand)
2. [Bloom's verb] [specific outcome] (Apply)
3. [Bloom's verb] [specific outcome] (Analyze)
## Introduction
[Hook: Story, question, or real-world scenario that motivates the topic]
## Section 1: [Foundation Concept]
[Concrete example first, then abstract principle]
### Key Idea
[Core concept in 1-2 sentences]
### Example
[Worked example with explanation]
### Try It
[Low-stakes practice opportunity]
## Section 2: [Building Concept]
[Build on Section 1, introduce complexity]
## Section 3: [Application]
[Connect to real-world use cases]
## Reflection Questions
1. [Socratic question prompting deeper thinking]
2. [Question connecting to student's own experience]
3. [Question about assumptions or limitations]
## Summary
[3-5 bullet points of key takeaways]
## Next Steps
[Preview of next chapter and how concepts connect]---
Quiz Format
Quiz Template (docs/chapters/NN-name/quiz.md)
# Chapter N Quiz
**Concepts Tested:** [List from learning graph]
**Bloom's Distribution:** 20% Remember, 30% Understand, 30% Apply, 20% Analyze
---
#### 1. [Question text]? (Remember)
<div class="upper-alpha" markdown>
1. [Option A]
2. [Option B]
3. [Option C]
4. [Option D]
</div>
??? question "Show Answer"
The correct answer is **[Letter]**.
[Explanation of why correct, why others wrong]
**Concept:** [Concept name from learning graph]
---
#### 2. [Question text]? (Understand)
[Continue pattern...]Question Types by Bloom's Level
| Level | Question Stems |
|---|---|
| Remember | Define..., List..., What is..., Name... |
| Understand | Explain..., Describe..., Summarize..., Why does... |
| Apply | How would you use..., Calculate..., Demonstrate..., Apply... |
| Analyze | Compare..., What is the relationship..., Differentiate..., Why might... |
| Evaluate | Assess..., Which is better..., Justify..., Critique... |
| Create | Design..., Propose..., What if..., How might you... |
---
MicroSim Specification Format
Spec Template (docs/sims/sim-name/spec.md)
# MicroSim: [Name]
## Concept Visualized
**Concept:** [From learning graph]
**Chapter:** [Chapter number]
**Difficulty:** [Beginner/Intermediate/Advanced]
## Learning Goal
Students will understand [concept] by manipulating [parameter] and observing [outcome].
## Interaction Design
### Controls (Right Panel)
| Control | Type | Range | Default | Effect |
|---------|------|-------|---------|--------|
| [Name] | slider | [min]-[max] | [val] | [What changes] |
| [Name] | button | - | - | [What happens] |
| [Name] | dropdown | [options] | [val] | [What changes] |
### Visualization (Left Panel)
- [What is drawn]
- [How it responds to controls]
- [Color/size encoding if any]
## The "Aha" Moment
When the student [does action], they see [result], which demonstrates [principle].
## Technical Notes
- Canvas size: Responsive, min 400px width
- Frame rate: 30fps
- Libraries: p5.js
- Mobile: Touch-friendly controls
## Assessment Integration
After using this MicroSim, students should be able to answer:
1. [Quiz question this prepares them for]
2. [Another related question]---
Glossary Format
Entry Template
#### [Term]
[Definition: 1-2 sentences, ISO 11179 compliant]
**Example:** [Concrete illustration]
* Also known as: [Synonyms, if any]ISO 11179 Definition Standards
1. Precise: Exact meaning, no ambiguity 2. Concise: As brief as possible while complete 3. Distinct: Differentiates from similar terms 4. Non-circular: Doesn't use the term being defined 5. No business rules: Definition only, not how it's used
Good: "A variable that stores a single true or false value." Bad: "A boolean is when something is boolean and can be true or false in business logic."
---
FAQ Format
# Frequently Asked Questions
## Conceptual Questions
### Q: [Question about core concept]?
[Answer in 2-4 sentences. Reference specific chapter if helpful.]
### Q: [Question about common misconception]?
[Clarify the misconception, explain correct understanding.]
## Practical Questions
### Q: [How do I apply this]?
[Practical guidance with example.]
## Prerequisites & Next Steps
### Q: What should I know before starting this course?
[List prerequisites with brief explanation of why each matters.]
### Q: What should I learn after this course?
[Recommended next courses/topics with brief rationale.]---
mkdocs.yml Template
site_name: [Course Name]
site_description: [Course description]
site_url: https://[username].github.io/[repo-name]
theme:
name: material
features:
- content.code.copy
- navigation.expand
- navigation.footer
- navigation.sections
- search.highlight
palette:
primary: indigo
accent: indigo
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
- toc:
permalink: true
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML
nav:
- Home: index.md
- Course Description: course-description.md
- Chapters:
- 1. [Chapter 1]: chapters/01-name/index.md
- 2. [Chapter 2]: chapters/02-name/index.md
- Simulations:
- [Sim 1]: sims/sim-name/index.md
- Learning Graph: learning-graph/index.md
- Glossary: glossary.md
- FAQ: faq.mdTrashed Files
scripts/example.py - moved to TRASH/ - template example from skill init, not needed
references/api_reference.md - moved to TRASH/ - template example from skill init, replaced with output-formats.md
assets/example_asset.txt - moved to TRASH/ - template example from skill init, not neededReference Documentation for Course Generator
This is a placeholder for detailed reference documentation. Replace with actual reference content or delete if not needed.
Example real reference docs from other skills:
- product-management/references/communication.md - Comprehensive guide for status updates
- product-management/references/context_building.md - Deep-dive on gathering context
- bigquery/references/ - API references and query examples
When Reference Docs Are Useful
Reference docs are ideal for:
- Comprehensive API documentation
- Detailed workflow guides
- Complex multi-step processes
- Information too lengthy for main SKILL.md
- Content that's only needed for specific use cases
Structure Suggestions
API Reference Example
- Overview
- Authentication
- Endpoints with examples
- Error codes
- Rate limits
Workflow Guide Example
- Prerequisites
- Step-by-step instructions
- Common patterns
- Troubleshooting
- Best practices
# Example Asset File
This placeholder represents where asset files would be stored.
Replace with actual asset files (templates, images, fonts, etc.) or delete if not needed.
Asset files are NOT intended to be loaded into context, but rather used within
the output Claude produces.
Example asset files from other skills:
- Brand guidelines: logo.png, slides_template.pptx
- Frontend builder: hello-world/ directory with HTML/React boilerplate
- Typography: custom-font.ttf, font-family.woff2
- Data: sample_data.csv, test_dataset.json
## Common Asset Types
- Templates: .pptx, .docx, boilerplate directories
- Images: .png, .jpg, .svg, .gif
- Fonts: .ttf, .otf, .woff, .woff2
- Boilerplate code: Project directories, starter files
- Icons: .ico, .svg
- Data files: .csv, .json, .xml, .yaml
Note: This is a text placeholder. Actual assets can be any file type.
#!/usr/bin/env python3
"""
Example helper script for course-generator
This is a placeholder script that can be executed directly.
Replace with actual implementation or delete if not needed.
Example real scripts from other skills:
- pdf/scripts/fill_fillable_fields.py - Fills PDF form fields
- pdf/scripts/convert_pdf_to_images.py - Converts PDF pages to images
"""
def main():
print("This is an example script for course-generator")
# TODO: Add actual script logic here
# This could be data processing, file conversion, API calls, etc.
if __name__ == "__main__":
main()