Install
$ agentstack add skill-nestharus-agent-implementation-skill-src ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
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)
/agents/ # agent definitions distributed across system modules (scan/, proposal/, implementation/, verification/, testing/, etc.)
templates/
implement-proposal.md # 10-step implementation schedule
research-cycle.md # 7-step research schedule
rca-cycle.md # 6-step RCA schedule
Workspaces live on native filesystem for performance, separate from project:
- Planspace:
~/.claude/workspaces//— schedule, state, log, artifacts, coordination database - Codespace: project root — where source code lives
Clean up planspace when workflow is fully complete (rm -rf the workspace dir).
Your Role
BEFORE DOING ANYTHING ELSE: Determine your role in the pipeline, then read the corresponding agent definition file. Agent definitions are distributed under system-owned directories (e.g., $WORKFLOW_HOME//agents/.md); the task router resolves agent files by name. Do not proceed until you have read it.
Phase Detection
Check these in order:
- User explicitly requested an action → Read the matching file
- Test failures need investigation →
rca.md - Proposal exists, not yet evaluated →
evaluate.md - Proposal evaluated, no baseline →
baseline.md - Baseline exists, implementation needed →
implement.md - No proposal exists →
research.md - Something feels wrong about a change →
constraints.md - Need to pick a model →
models.md - Need concern-based problem decomposition →
audit.md
Files
| File | What It Does | |------|-------------| | research.md | Exploration → alignment → proposal → refinement | | evaluate.md | Proposal alignment review (Accept / Reject / Push Back) | | baseline.md | Atomize proposal into constraints / patterns / tradeoffs | | implement.md | Multi-model implementation with planspace/codespace + dynamic scheduling | | rca.md | Root cause analysis + architectural fix for test failures | | audit.md | Concern-based problem decomposition + alignment tracing | | constraints.md | Surface implicit constraints, validate design principles | | models.md | Model selection guide for multi-model workflows |
Design Philosophy
These principles govern all pipeline behavior. Violations are alignment failures.
- Alignment over audit — Check directional coherence between adjacent
layers ("is it solving the right problem?"), never feature coverage against a checklist ("is it done?"). The system is never done.
- Strategy over brute force — Strategy collapses many waves of problems
in one go. Brute force leads to countless cycles. Fewer tokens, fewer cycles, same quality.
- Scripts dispatch, agents decide — Scripts do mechanical coordination
(dispatch, check, log). Agents do reasoning (explore, understand, decide). Strategic decisions (grouping, relatedness, signal interpretation) belong to agents, not scripts.
- Heuristic exploration, not exhaustive scanning — Build a routing map
(codemap), then use it for targeted investigation. Never catalog every file. The cost of occasionally routing wrong is far less than exhaustive scanning.
- Problems, not features — We decompose problems all the way down, then
solve tiny problems. Proposals describe strategies, not implementations. We never do feature coverage because we generate as we go.
- Proposals must solve the same problems — Alternative proposals are
valid only if they solve the original problems. An optimization or complexity argument is an excuse. Do not introduce constraints the user did not specify.
- Accuracy over shortcuts — zero tolerance for fabrication and bypasses —
We accept zero tolerance for invented understanding, bypassed safeguards, or pipeline shortcuts that skip required grounding. Agents must follow the full pipeline faithfully: explore before proposing, propose before implementing, align before proceeding. Operational execution still uses proportional guardrails: the ROAL loop scales effort to actual risk and keeps residual risk below the configured threshold rather than pretending all execution can be made literally risk-free. "This is simple enough to skip a step" is never valid reasoning. When in doubt, follow the pipeline.
Terminology Contract
- "Audit" only ever means alignment against stated problems and
constraints — never feature coverage against a checklist.
- "Alignment" is directional coherence between adjacent layers:
does the work solve the problem it claims to solve?
- "Feature coverage" is explicitly banned as a verification method.
Plans describe problems and strategies, not enumerable features.
The Full Lifecycle
Exploration → Alignment → Proposal → Review → Baseline → Implementation → Verification
(research.md) (evaluate.md) (baseline.md) (implement.md) (rca.md)
Phases iterate: Review may loop back to Research. Implementation may trigger tangent research cycles. Verification may reveal architectural issues requiring RCA.
Artifact Flow
[Raw Idea]
↓
[Exploration Notes] ← research.md Phase A
↓
[Alignment Document] ← research.md Phase B
↓
[Proposal] ← research.md Phase C
↓
[Evaluation Report] ← evaluate.md (iterate if REJECT/PUSH BACK)
↓
[Design Baseline] ← baseline.md (constraints/, patterns/, TRADEOFFS.md)
↓
[Section Files → Integration Proposals → Strategic Implementation → Code] ← implement.md
↓
[Tests → Debug → Constraint Check → Lint → Commit] ← implement.md + rca.md
Workflow Orchestration
For multi-step workflows, use the orchestration system instead of running everything from memory.
Running the Implementation Pipeline
All implementation work goes through the canonical pipeline runner:
python -m pipeline --spec [--slug ] [--qa-mode]
The runner provides minimal bootstrap: planspace initialization (paths, parameters.json, run-metadata.json, run.db), then hands off to the adaptive orchestration system. It does NOT own stages, schedule, governance, or directory scaffolding -- those are determined by the system's own decision-making (ROAL, coordination, signal processing).
Do NOT dispatch agents directly via the agents binary or write prompts manually. All dispatch must go through the pipeline's adaptive orchestration system.
Never use any sub-agent spawning or delegation mechanism outside this repo's dispatch and task-submission system — external spawning causes "sibling" errors and reliability issues.
Schedule Templates
Pre-built schedules in $WORKFLOW_HOME/templates/. Each step specifies its model:
[wait] 1. step-name | model-name -- description (skill-section-reference)
implement-proposal.md— full 10-step implementation pipelineresearch-cycle.md— external research → evaluate → propose → refine (human-facing)rca-cycle.md— investigate → plan fix → apply → verify
Note: In-runtime section research (blocking_research_questions) is handled automatically through queued research_plan tasks within the section loop, not through this external schedule template.
Stage 3 Codemap Exploration
Stage 3 dispatches agents to explore and understand the codebase:
- An Opus agent explores the codespace — reads files, follows its curiosity, builds understanding.
- The agent writes
/artifacts/codemap.mdcapturing what it discovered. - Per-section Opus agents use the codemap to identify related files for each section.
- Deep scan dispatches GLM agents to reason about specific file relevance in context.
Control and recovery:
- If
codemap.mdalready exists, reuse it only if the codespace
fingerprint is unchanged or the verifier confirms validity; otherwise rebuild.
- If a section already has
## Related Files, validate the list against
the current codemap/section content; skip only if unchanged.
- Non-zero codemap exit stops Stage 3 before section exploration.
Model Roles
| Model | Used For | |-------|----------| | claude-opus | Section setup (excerpt extraction), alignment checks (shape/direction), decomposition, codemap exploration, per-section file identification | | gpt-high | Integration proposals, strategic implementation, coordinated fixes, extraction, investigation, constraint alignment check | | gpt-xhigh | Escalation-tier synthesis, deep cross-section convergence | | glm | Test running, verification, quick commands, deep file analysis, semantic impact analysis |
Prompt Files
Step agents receive self-contained prompt files (they cannot read $WORKFLOW_HOME). The orchestrator builds each prompt from:
- Skill section text — copied verbatim from the referenced skill file
- Planspace path — so the agent can read/write state and artifacts
- Codespace path — so the agent knows where source code lives
- Context — relevant content from typed artifacts and
run.db-backed context sidecars - Output contract — what the agent should return on success/failure
Written to: /artifacts/step-N-prompt.md
Workspace Structure
Each workflow gets a planspace at ~/.claude/workspaces//:
schedule.md— task queue with status markers (copied from template)artifacts/— prompt files, typed JSON artifacts, context sidecars, output files, working files for stepsartifacts/sections/— section excerpts (proposal + alignment excerpts)artifacts/proposals/— integration proposals per sectionartifacts/snapshots/— post-completion file snapshots per sectionartifacts/notes/— cross-section consequence notesartifacts/coordination/— global coordinator state and fix promptsartifacts/decisions/— accumulated parent decisions per section (from pause/resume)artifacts/parameters.json— runtime parameters (e.g.,{"qa_mode": true}to enable QA dispatch interception)artifacts/qa-intercepts/— QA interceptor prompts, outputs, and rationale files (created when qa_mode is enabled)run.db— coordination database (messages, events, agent registry)constraints/— discovered constraints (promote later)tradeoffs/— discovered tradeoffs (promote later)
Coordination System (db.sh)
SQLite-backed coordination for agent messaging. One run.db per pipeline run — messages are claimed (not consumed), history is preserved, and the database file is the complete audit trail.
# Initialize the coordination database (idempotent)
bash "$WORKFLOW_HOME/scripts/db.sh" init /run.db
# Send a message to an agent
bash "$WORKFLOW_HOME/scripts/db.sh" send /run.db [--from ] "message text"
# Block until a message arrives (agent sleeps, no busy-loop)
bash "$WORKFLOW_HOME/scripts/db.sh" recv /run.db [timeout_seconds]
# Check pending count (non-blocking)
bash "$WORKFLOW_HOME/scripts/db.sh" check /run.db
# Read all pending messages
bash "$WORKFLOW_HOME/scripts/db.sh" drain /run.db
# Agent lifecycle
bash "$WORKFLOW_HOME/scripts/db.sh" register /run.db [pid]
bash "$WORKFLOW_HOME/scripts/db.sh" unregister /run.db
bash "$WORKFLOW_HOME/scripts/db.sh" agents /run.db
bash "$WORKFLOW_HOME/scripts/db.sh" cleanup /run.db [name]
# Event logging and querying
bash "$WORKFLOW_HOME/scripts/db.sh" log /run.db [tag] [body] [--agent ]
bash "$WORKFLOW_HOME/scripts/db.sh" tail /run.db [kind] [--since ] [--limit ]
bash "$WORKFLOW_HOME/scripts/db.sh" query /run.db [--tag ] [--agent ] [--since ] [--limit ]
Key patterns:
- Orchestrator blocks on
recvwaiting for parallel step results - Step agents send
done::orfail::when finished - Section-loop sends
summary:setup:,summary:proposal:,summary:proposal-align:,summary:impl:,summary:impl-align:,status:coordination:messages;completeonly on full success;fail::coordination_exhausted:on coordination timeout - Mailbox is required for orchestrator/step coordination boundaries
- Codemap exploration is a single Opus agent that explores the codespace directly
- Agents needing user input send
ask::, then block on their own mailbox - User or orchestrator can send
abortto any agent to trigger graceful shutdown agentscommand shows who's registered and who's waiting — detect stuck agents
Cross-Cutting Tools
- audit.md — Concern-based problem decomposition + alignment tracing
- constraints.md — Before implementation or when something feels wrong
- models.md — Which external model to use for any given task
Internal Dispatch Reference (Script Use Only)
> WARNING: These are internal implementation details used by the pipeline runner > and section dispatcher. The orchestrating session must NOT invoke agents directly. > Direct invocation bypasses QA interception, coordination tracking, and pipeline discipline.
# Sequential dispatch — model directly with prompt file
agents --model --file /artifacts/step-N-prompt.md \
> /artifacts/step-N-output.md 2>&1
# Agent file dispatch — agent instructions prepended to prompt
agents --agent-file "$WORKFLOW_HOME/proposal/agents/alignment-judge.md" \
--file /artifacts/alignment-prompt.md
# Parallel dispatch with db.sh coordination
(agents --model gpt-high --file && \
bash "$WORKFLOW_HOME/scripts/db.sh" send /run.db orchestrator "done:block-A") &
(agents --model gpt-high --file && \
bash "$WORKFLOW_HOME/scripts/db.sh" send /run.db orchestrator "done:block-B") &
bash "$WORKFLOW_HOME/scripts/db.sh" recv /run.db orchestrator
bash "$WORKFLOW_HOME/scripts/db.sh" recv /run.db orchestrator
# Codemap exploration dispatch (Opus explores the codespace)
agents --model claude-opus --project \
--file /artifacts/scan-logs/codemap-prompt.md \
> /artifacts/codemap.md 2>&1
Note: The examples above show script-level dispatch — the pipeline runner launching step agents internally. Nested strategic work within step agents (e.g., exploration during integration proposals) uses task submission: agents write structured task-request files, and the dispatcher resolves agent file + model. See implement.md Stage 4-5 for task submission details.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: nestharus
- Source: nestharus/agent-implementation-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.