Agent skill · Design & Presentation

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.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill template-scaffolding --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: ReadWriteEditGlob
Path: library/methodologies/gsd/skills/template-scaffolding/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

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

What's inside
Steps it walks through
  1. Configuration
  2. Error Handling
  3. Constraints
Ships with 1 file
  • README.md
More from babysitter
All skills →
About this skill
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.

Keep going