From aidlc-v2
AI-DLC intent-bootstrap skill. Owns the entire act of bootstrapping an intent: confirms the org-ai-kb location, generates and confirms the intent slug, picks the next intent number, creates the intent directory and its skeleton files (`intent-prompt.md`, `state/intent-state.md`, `audit/intent-audit.md`, stub `workflow.md`), classifies greenfield/brownfield, and writes a structured `intent.md` and `bootstrap-context.md` for downstream skills. Invoked by `aidlc-orchestrator` as the first pre-loop step of every intent. Not normally invoked directly.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aidlc-v2:aidlc-intent-bootstrapThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Bootstrap an intent end-to-end: create the directory and skeleton files every later skill depends on, classify the intent, and produce `intent.md` and `bootstrap-context.md`. This skill runs before `workflow.md` exists, so it owns everything required to bring an intent into existence.
Bootstrap an intent end-to-end: create the directory and skeleton files every later skill depends on, classify the intent, and produce intent.md and bootstrap-context.md. This skill runs before workflow.md exists, so it owns everything required to bring an intent into existence.
The orchestrator passes:
There is no input file — intent-prompt.md does not yet exist; this skill creates it.
Ask only what cannot be inferred. In order:
<workspace-root>/org-ai-kb/.For greenfield with no codekb, slug + type may be all that's worth asking.
plan-creation: "false" — no plan file produced. Execution follows the steps below directly.
org-ai-kb/aidlc-docs/ exists.<nnn> (zero-padded) by listing existing intent-* directories.intent-<nnn>-<slug>/ with subfolders state/, audit/, bootstrap/intent-bootstrap/.intent-prompt.md (verbatim prompt) at the intent root.state/intent-state.md with the header from aidlc-state-schema.md.audit/intent-audit.md with a header.workflow.md with exactly one line:
workflow-composition --phase bootstrap intent.md bootstrap/intent-bootstrap/bootstrap-context.md
No intent-bootstrap line — by the time process_checker reads workflow.md, this skill has finished.intent.md at the intent root.bootstrap-context.md in bootstrap/intent-bootstrap/.bootstrap/intent-bootstrap/)Return to the orchestrator: status: complete, intent_dir_path, and the list of artefacts produced.
See validation-spec.md.
npx claudepluginhub ijin/aidlc-cc-plugin-v2 --plugin aidlc-v2Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.