← ClaudeAtlas

aod-blueprintlisted

Unified project setup and story generation skill that auto-detects new vs existing projects. Three modes: first-run (creates repo, registers project, activates), subsequent-run (skips setup, adds new stories with deduplication), and demo (loads pre-built Hello World stories). Generates ICE-scored, dependency-ordered stories as GitHub Issues and outputs a consumer guide. Use when a developer invokes /aod.blueprint to bootstrap or extend a project.
davidmatousek/tachi · ★ 75 · AI & Automation · score 82
Install: claude install-skill davidmatousek/tachi
# /aod.blueprint Skill ## Purpose Unified project setup and story generation in a single command. The skill auto-detects whether the current project is new or existing, then runs the appropriate workflow: 1. **First-Run** -- Creates GitHub repo, registers project with orchestrator API, activates it, runs interactive intake, generates stories, creates issues 2. **Subsequent-Run** -- Skips setup, runs interactive intake, generates new stories with deduplication against existing issues 3. **Demo Mode** (`--demo`) -- Loads pre-built Hello World stories from `HELLO_WORLD_STORIES.md`, skips interactive intake entirely All modes end with issue creation, lifecycle sync, consumer guide generation, and a completion report. --- ## Step 0: Prerequisites Check Validate that required tools and services are available before proceeding. ### 0.1: Check gh CLI Run `gh --version` via Bash tool. - If the command succeeds, continue to Step 0.2. - If the command fails, display the following error and STOP: ``` ERROR: GitHub CLI (gh) is not installed or not in PATH. Install it from https://cli.github.com/ and run `gh auth login` to authenticate. ``` ### 0.2: Check API Health Run the following command via Bash tool: ```bash curl -sf ${AOD_API_URL:-http://localhost:8000}/health -H "X-AOD-Source: skill" ``` - If the command succeeds (exit code 0), display "Prerequisites OK" and continue to Step 1. - If the command fails, display the following error and STOP: ``` ERROR: AOD Orchestrator