From coding-workflow
Turn a repository into a task-driven AI delivery loop with durable planning artifacts, guarded single-task execution, progress logging, and validation gates. Use when Codex needs to bootstrap or operate workflows built around files like architecture.md, task.json, progress.txt, project-config.json, CLAUDE.md, AGENTS.md, or similar backlog-driven harnesses, especially when replacing shell-based automation with explicit subagent orchestration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/coding-workflow:task-driven-ai-devThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to create or operate a repo-level AI development harness. Keep the loop explicit: define the system, choose one task, implement it, validate it, record evidence, then stop.
assets/templates/architecture.mdassets/templates/progress.txtassets/templates/project-config.jsonassets/templates/task.jsonreferences/artifact-model.mdreferences/lessons-from-history.mdreferences/subagent-orchestration.mdreferences/workflow-contract.mdscripts/select_next_task.pyscripts/validate_iteration.pyUse this skill to create or operate a repo-level AI development harness. Keep the loop explicit: define the system, choose one task, implement it, validate it, record evidence, then stop.
architecture.md, task.json, progress.txt, and project-config.json when they exist.assets/templates/.references/workflow-contract.md before running an iteration.scripts/select_next_task.py to choose the next ready task instead of scanning passes: false by hand.scripts/validate_iteration.py before marking a task complete.CLAUDE.md or AGENTS.md, treat them as adapters, not the canonical workflow definition.See references/artifact-model.md for the detailed contract and template usage.
Before implementing, check the task nature:
See references/subagent-orchestration.md for recommended subagent roles (selection, worker, verification).
See references/workflow-contract.md for the full iteration protocol.
passes to true.progress.txt become fiction; it is memory for future agents, not marketing copy.Load references/lessons-from-history.md when hardening an existing harness or debugging regressions that appeared after the main backlog was finished.
assets/templates/architecture.md: starting point for the architecture contract.assets/templates/task.json: backlog template with dependencies, blocked state, and validation notes.assets/templates/progress.txt: durable progress and blocking log template.assets/templates/project-config.json: repo-specific command and artifact map.scripts/select_next_task.py: choose the next ready task deterministically.scripts/validate_iteration.py: validate task/progress consistency before completion.references/workflow-contract.md: one-task iteration protocol and done gate.references/artifact-model.md: artifact semantics and field expectations.references/subagent-orchestration.md: recommended subagent roles and delegation patterns.references/lessons-from-history.md: failure modes extracted from a real long-running AI-built repo.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub zhaohuanke123/vanko-skill --plugin interactive-learning