Plan Feature: Comprehensive Archon Implementation Planning
Description
Plan Feature: Comprehensive Archon Implementation Planning skill
Installation
claude install-skill https://github.com/coleam00/Archon README
description: Create a comprehensive implementation plan for an Archon feature argument-hint:
Plan Feature: Comprehensive Archon Implementation Planning
Objective
Produce a detailed, actionable implementation plan for: **$ARGUMENTS**
The plan will be saved to `.claude/archon/plans/{kebab-case-name}.md` and is designed to be consumed by the `/execute` command.
Phase 1: Feature Understanding
Restate the feature request in your own words. Identify:
- undefined
Phase 2: Codebase Intelligence
Use subagents to perform targeted codebase research in parallel. Spawn separate subagents for:
**Subagent A — Affected package deep-dive:** Read all relevant source files in the affected packages. Map the current data flow. Identify every file that will need to change.
**Subagent B — Interface and type contracts:** Read `packages/core/src/types/` and relevant `index.ts` exports. Understand what interfaces exist and how they're consumed across packages.
**Subagent C — Test patterns:** Find existing test files similar to the area of change:
find packages/ -name "*.test.ts" | head -30
Read 2-3 representative test files to understand mocking patterns, assertion style, and `mock.module()` isolation requirements per package.
**Subagent D — Related prior work:**
git log --oneline --all | head -20
Read recent commits touching relevant files to understand change patterns.
Synthesize findings: current state, gaps, constraints.
Phase 3: External Research (if needed)
If the feature involves external APIs, new libraries, or unfamiliar patterns, use web search to research:
- undefined
Document any specific findings that affect the implementation approach.
Phase 4: Strategic Thinking
Before writing tasks, reason through:
**Architecture decisions:**
- undefined
**Interface design:**
- undefined
Related Skills
next.js
| The React Framework | 138360 | 1503 | 1 |
Development community sharing-skills
skill for guidance.
Development community root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development community Template Skill
Minimal skeleton for a new skill project structure.
Development community Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THIS PRODUCT. ---
Development official Claude API
When code imports anthropic/@anthropic-ai/sdk/claude_agent_sdk, or user asks to use Claude APIBuild apps with the Claude API or Anthropic SDK
Development official Related Agents
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
Contributing to nanobot
Thank you for being here. nanobot is built with a simple belief: good tools should feel calm, clear, and humane. We care deeply about useful features, but we also believe in achieving more with less:
Key exports from each phase
for summary in .planning/phases/*/*-SUMMARY.md; do echo "=== $summary ===" grep -A 10 "Key Files\|Exports\|Provides" "$summary" 2>/dev/null done