Blockscout-rs implementation-plan
Turn an approved task-analysis result into a shared technical design and coding-ready implementation handoff; use when Claude has an existing task folder under `tmp/tasks/`, plus a selected solution and related codebase research, and needs to produce `implementation-plan.md` and `coding-task.md` before writing code
install
source · Clone the upstream repo
git clone https://github.com/blockscout/blockscout-rs
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/blockscout/blockscout-rs "$T" && mkdir -p ~/.claude/skills && cp -r "$T/interchain-indexer/.claude/skills/implementation-plan" ~/.claude/skills/blockscout-blockscout-rs-implementation-plan && rm -rf "$T"
manifest:
interchain-indexer/.claude/skills/implementation-plan/SKILL.mdsource content
Implementation Plan Skill
Follow the workflow defined in @../../../.memory-bank/workflows/implementation-plan.md
Required Guardrails
- Read the existing task folder artifacts first, especially
and the selected solution.task.md - Re-check the current code, tests, configs, and schema paths instead of trusting earlier analysis blindly.
- Treat this as a handoff-preparation step, not a fresh solution-comparison step.
- If the chosen direction is ambiguous or stale enough to change the recommendation, stop and route the task back to analysis.
- Write the outputs into the existing
folder astmp/tasks/<task-name>/
andimplementation-plan.md
.coding-task.md - Keep the implementation plan focused on shared technical design; keep the coding task focused on actionable execution details.