template-scaffolding
Template loading, variable filling, and scaffolding for all GSD artifacts. Manages 22+ templates covering every document type in the GSD system, from PROJECT.md to milestone archives.
npx skills add a5c-ai/babysitter --skill template-scaffolding --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
phase: 72 status: planned created: 2026-03-02 template: phase-prompt variant: standard --- # Phase 72: OAuth2 Authentication ... ``` ### 7. Template Discovery List available templates: ``` Available templates: project - Project definition (PROJECT.md) requirements - Requirements specification (REQUIREMENTS.md) roadmap - Development roadmap (ROADMAP.md) state - Project state (STATE.md) context - Phase context (CONTEXT.md) summary - Phase summary (SUMMARY.md) [3 variants] phase-prompt - Phase plan (PLAN.md) ... ``` ### 8. Template Variant Selection Automatic variant selection based on context: ```javascript function selectSummaryVariant(context) { if (context.isQuickTask) return 'summary-minimal'; if (context.taskCount <= 3) return 'summary-minimal'; if (context.taskCount <= 8) return 'summary-standard'; return 'summary-complex'; } ``` ## Tool Use Instructions ### Loading and Filling a Template 1. Use `Glob` to locate the template file in `templates/` 2. Use `Read` to load the template content 3. Replace all `{{VARIABLE}}` placeholders with provided values 4. Process conditional blocks (`{{#if}}...{{/if}}`, `{{#unless}}...{{/unless}}`) 5. Add frontmatter if specified 6. Use `Write` t
- Configuration
- Error Handling
- Constraints
What does the template-scaffolding skill do?
Template loading, variable filling, and scaffolding for all GSD artifacts. Manages 22+ templates covering every document type in the GSD system, from PROJECT.md to milestone archives.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill template-scaffolding --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
