agent-implementation-skilllisted
Install: claude install-skill nestharus/agent-implementation-skill
# Development Workflow
Single entry point for the full development lifecycle. Read this file,
determine what phase you're in or what the user needs, then read the
relevant sub-file from this directory.
## Paths
Everything lives in this skill folder. WORKFLOW_HOME is: !`dirname "$(grep -rl '^name: agent-implementation-skill' ~/.claude/skills/*/SKILL.md .claude/skills/*/SKILL.md 2>/dev/null | head -1)" 2>/dev/null`
When dispatching scripts or agents, export `WORKFLOW_HOME` with the path
above. Scripts also self-locate via `dirname` as a fallback when invoked
directly.
```
$WORKFLOW_HOME/
SKILL.md # this file — entry point
implement.md # multi-model implementation pipeline
research.md # exploration → alignment → proposal
rca.md # root cause analysis
evaluate.md # proposal review
baseline.md # constraint extraction
audit.md # concern-based problem decomposition
constraints.md # constraint discovery
models.md # model selection guide
scripts/
workflow.sh # schedule state markers ([wait]/[run]/[done]/[fail]) — internal, not the entry point
db.sh # SQLite-backed coordination database
tools/
extract-docstring-py # extract Python module docstrings
extract-summary-md # extract YAML frontmatter from markdown
README.md # tool interface spec (for Opus to write new tools)
<system>/agents/ # agent defini