Claude-skill-registry implementation-runner
Performs implementation in the chain and records completion state and changed files in analysisContext. Use during implementation.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/implementation-runner" ~/.claude/skills/majiayu000-claude-skill-registry-implementation-runner && rm -rf "$T"
manifest:
skills/data/implementation-runner/SKILL.mdsource content
Implementation Runner
Inputs
analysisContext.request.userMessageanalysisContext.decisions.skillChainanalysisContext.repo.openFiles
(if present)analysisContext.artifacts.contextDocPath
Procedure
- Check requirements and context.
- Define change scope and implement.
- Record changed files and key change summary.
- Update implementation completion in
.analysisContext
Output (patch)
signals.implementationComplete: true repo.changedFiles: - src/... notes: - "implementation: complete, changed_files=3"
Rules
- Do not call other skills/subagents.
- If failed or deferred, record the reason in
.notes