assimilate-popular-wor…
This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research…
Central utility skill for GSD operations. Provides config parsing, slug generation, timestamps, path operations, and orchestrates calls to other specialized skills. Acts as the unified entry point that the original gsd-tools.cjs provided via its lib/ modules (commands, config,
$ npx -y skills add a5c-ai/babysitter --skill gsd-tools --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/gsd-toolsContext preview
The summary Claude sees to decide when to auto-load this skill.
Central utility skill for GSD operations. Provides config parsing, slug generation, timestamps, path operations, and orchestrates calls to other specialized skills. Acts as the unified entry point that the original gsd-tools.cjs provided via its lib/ modules (commands, config,
name: gsd-tools description: Central utility skill for GSD operations. Provides config parsing, slug generation, timestamps, path operations, and orchestrates calls to other specialized skills. Acts as the unified entry point that the original gsd-tools.cjs provided via its lib/ modules (commands, config, core, init). allowed-tools: Bash(*) Read Write Edit Glob Grep metadata: author: babysitter-sdk version: "1.0.0" category: gsd-core backlog-id: SK-GSD-001 graph: domains: [domain:software-engineering] skillAreas: [skill-area:agentic-loops, skill-area:orchestration-loop] workflows: [workflow:feature-development] topics: [topic:developer-experience] roles: [role:tech-lead, role:backend-engineer]
Load and parse `.planning/config.json` with defaults:
{
"profile": "balanced",
"autoCommit": true,
"autoVerify": true,
"planCheckerEnabled": true,
"maxPlanRevisions": 2,
"waveParallelization": true,
"contextMonitor": true,
"contextWarningThreshold": 70,
"contextCriticalThreshold": 85,
"summaryVariant": "standard",
"tddEnabled": false,
"questioningDepth": "adaptive"
}Read config:
cat .planning/config.json
If config does not exist, create with defaults. Merge user overrides with defaults (user values take precedence).
Generate kebab-case slugs from descriptions:
Input: "Add user authentication with OAuth2" Output: "add-user-authentication-with-oauth2" Input: "Fix bug #123 in payment processing" Output: "fix-bug-123-in-payment-processing"
Rules:
Format timestamps for GSD artifacts:
Header: "2026-03-02T14:30:00Z" Frontmatter: "2026-03-02" Filename: "20260302-143000" Display: "Mar 2, 2026 2:30 PM"
Resolve paths within `.planning/` structure:
Phase directory: .planning/phase-{N}/
Plan file: .planning/phase-{N}/PLAN-{M}.md
Summary file: .planning/phase-{N}/SUMMARY.md
Quick task: .planning/quick/{NNN}-{slug}/
Debug session: .planning/debug/{slug}.md
Codebase docs: .planning/codebase/
Research docs: .planning/research/
Milestone archive: milestones/v{X}.{Y}/Parse integer and decimal phase numbers:
"72" -> { major: 72, minor: null, display: "72" }
"72.1" -> { major: 72, minor: 1, display: "72.1" }
"72.2" -> { major: 72, minor: 2, display: "72.2" }Decimal phases are inserted phases (e.g., urgent work between phase 72 and 73).
Sequential numbering for quick tasks:
.planning/quick/001-fix-login-bug/ .planning/quick/002-add-rate-limiting/ .planning/quick/003-update-readme/
Scan existing directories, find highest number, increment by 1. Zero-pad to 3 digits.
Ensure `.planning/` directory exists with required structure:
.planning/ config.json PROJECT.md (if new-project has run) REQUIREMENTS.md (if new-project has run) ROADMAP.md (if new-project has run) STATE.md (always present after init) quick/ (created on demand) debug/ (created on demand) codebase/ (created on demand) research/ (created on demand)
Detect current project state for routing:
const states = {
NO_PROJECT: "No .planning/ directory or no PROJECT.md",
INITIALIZED: ".planning/ exists with PROJECT.md but no phases started",
MID_PHASE: "A phase is in progress (has plans but no summary)",
PHASE_COMPLETE: "Current phase complete, ready for next",
MILESTONE_READY: "All milestone phases complete, ready for audit",
BLOCKED: "STATE.md has active blockers"
};1. Use `Read` to load `.planning/config.json` 2. Parse JSON and merge with defaults 3. Return merged configuration object
1. Accept description string as input 2. Apply slug transformation rules 3. Use `Glob` to check for duplicates in target directory 4. Append deduplication suffix if needed 5. Return final slug
1. Use `Bash` to create directory structure with `mkdir -p` 2. Use `Write` to create `config.json` with defaults if missing 3. Use `Read` + `Glob` to detect existing state 4. Return initialization status
This skill is used by **all GSD processes** as the first initialization step:
{
"operation": "init|config|slug|path|state",
"status": "success|error",
"resultEnforce obedience on agentic workforces. Manage extremely complex workflows through deterministic, hallucination-free self-orchestration.
Repo: a5c-ai/babysitter
This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research…
This skill should be used when the user asks to "babysit issues", "work on assigned issues", "check a5c-agent issues", "process babysitter issues", or wants to…
Discover public GitHub repositories that import defineTask from @a5c-ai/babysitter-sdk and maintain a deduplicated catalog of those repositories in…
This skill should be used when the user asks to "fix pipelines", "fix CI", "check staging pipelines", "fix failing workflows", "fix failing actions", or wants…
Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to…
For a repository in the babysitter-users catalog, locate its babysitter processes and any committed runs (.a5c/runs/<runId>/) and perform a retrospective on a…