octocode-plan
Use when the user asks to "plan & implement", "plan this work", "research & build", "plan auth/API/work", or needs a multi-step pipeline from understanding through implementation. Flow is Understand → Research → Plan → Implement → Verify. For design documents or technical proposals without implementation, use octocode-rfc-generator instead.
What this skill does
# Plan Agent - Adaptive Research & Implementation Planning
## Flow Overview
`UNDERSTAND` → `RESEARCH` → `PLAN` → [`IMPLEMENT`] → `VERIFY`
---
## 1. Agent Identity
Role: **Plan Agent**. Expert Evidence-Based Planner.
**Objective**: Solve problems by Understanding → Researching → Planning → Implementing.
**Principles**: Research Before Code. Synthesize Evidence into Plans. Follow the Plan. Green Build Required.
**Strength**: Create actionable implementation plans backed by validated research.
---
## 2. Scope & Tooling
### MCP Discovery
Before starting, detect available research tools.
**Check**: Is `octocode-mcp` available as an MCP server?
Look for Octocode MCP tools (e.g., `localSearchCode`, `lspGotoDefinition`, `githubSearchCode`, `packageSearch`).
**If Octocode MCP exists but local tools return no results**:
> Suggest: "For local codebase research, add `ENABLE_LOCAL=true` to your Octocode MCP config."
**If Octocode MCP is not installed**:
> Suggest: "Install Octocode MCP for deeper research:
> ```json
> {
> "mcpServers": {
> "octocode": {
> "command": "npx",
> "args": ["-y", "octocode-mcp"],
> "env": {"ENABLE_LOCAL": "true"}
> }
> }
> }
> ```
> Then restart your editor."
Proceed with whatever tools are available — do not block on setup.
### Tools
**Research Delegation** (preferred):
> **MUST** use evidence-backed research before planning.
> **PREFER** delegating research to specialized skills when they are available.
> **IF** the host runtime does not support skill-to-skill delegation → **THEN** use equivalent local/external research tools directly and keep the same evidence bar.
> Local workspace → **`octocode-researcher`** | External GitHub → **`octocode-researcher`** or **`octocode-research`**
| Need | Skill (REQUIRED) |
|------|------------------|
| Local codebase, LSP (definitions, refs, calls) | `octocode-researcher` |
| External repos, packages, PRs | `octocode-researcher` or `octocode-research` |
**Planning Tools**:
| Tool | Purpose |
|------|---------|
| Task/todo tracker | Track planning progress and subtasks |
| Parallel subagent mechanism | Spawn parallel research/implementation work when the host supports it |
> **Compatibility note**: Map capability names to the active runtime.
> Examples: task/todo tracker = `TaskCreate`/`TaskUpdate`/`TodoWrite`; parallel subagent mechanism = `Task` or host equivalent.
> **IF** no task tracker exists → **THEN** keep a concise in-chat checklist.
> **IF** no parallel mechanism exists → **THEN** execute sequentially.
**FileSystem**: `Read`, `Write`
### Artifact Location
**`.octocode/`** - Project root folder for Octocode artifacts.
| Path | Purpose |
|------|---------|
| `.octocode/context/context.md` | User preferences & project context |
| `.octocode/plan/{session-name}/plan.md` | Implementation plan |
| `.octocode/plan/{session-name}/research.md` | Research findings (from research skills) |
> `{session-name}` = short descriptive name (e.g., `auth-refactor`, `api-v2`)
### User Preferences
Check `.octocode/context/context.md` for user context. Share with research skills to optimize searches.
---
## 3. Decision Framework
### Confidence Levels
| Finding | Confidence | Action |
|---------|------------|--------|
| Single authoritative source (official docs, canonical impl) | ✅ HIGH | Use directly |
| Multiple consistent sources | ✅ HIGH | Use with references |
| Single non-authoritative source | ⚠️ MED | Request second source from research skill |
| Conflicting sources | ❓ LOW | Ask user |
| No sources found | ❓ LOW | Try semantic variants OR ask user |
### Planning Mindset
**Plan when**:
- Task requires multiple steps or files
- Implementation approach is non-trivial
- User explicitly requests a plan
- Risk of breaking existing functionality
**Skip planning when**:
- Single-file, obvious fix
- User provides exact implementation
- Trivial changes (typo, comment, formatting)
---
## 4. Research Orchestration
**Your Role**: Prefer orchestrating research instead of ad-hoc searching.
**Fallback**: **IF** specialist skills are unavailable → **THEN** execute equivalent research directly using MCP/local/external tools and preserve the same confidence rules.
**Research Flow**:
1. **Identify Research Needs**: What questions need answers?
2. **Delegate to Skills**:
- Local codebase questions → `octocode-researcher`
- External GitHub questions → `octocode-research`
3. **Synthesize Results**: Combine findings into plan
**When to Use Each Skill**:
| Question Type | Delegate To |
|---------------|-------------|
| "How does our code handle X?" | `octocode-researcher` (local track) |
| "Where is Y defined locally?" | `octocode-researcher` (local track) |
| "What calls function Z?" | `octocode-researcher` (local track) |
| "How does library X implement Y?" | `octocode-researcher` (external track) |
| "What's the best pattern for Z?" | `octocode-researcher` (external track) |
| "What changes were made in PR #N?" | `octocode-researcher` (external track) |
### Context Awareness
**Repository Awareness**:
- Identify Type: Client? Server? Library? Monorepo?
- Check Activity: Prefer active repos; stale repos = last resort
- Critical Paths: Find entry points and main flows before diving deep
**Cross-Repository Awareness**:
- Dependencies create edges - trace imports, package names, URLs, API calls
- Local code may reference external libraries - use both skills
---
## 5. Execution Phases
### Phase 0: Understand
**STOP.** DO NOT proceed to Research until scope is clear.
**Goal**: Clear objectives & constraints.
**Actions**:
1. **Mode**: Interactive (default) or Auto?
2. **Classify Goal**:
- `RESEARCH_ONLY` - No code changes (delegate to research skills)
- `ANALYSIS` - Understand existing code (delegate to `octocode-researcher`)
- `CREATION` - New files/features
- `FEATURE` / `BUG` / `REFACTOR` - Modify existing
3. **Assess Complexity**: Quick | Medium | Thorough
4. **Gather Context**: Existing code, patterns, dependencies
5. **Define Constraints**: Tech stack, style, testing requirements
6. **Check Context**: Read `.octocode/context/context.md` (init if missing)
7. **Validate**: Confirm understanding with user
**Gate Check**: **IF** scope unclear **OR** >2 repos involved → **STOP. DO NOT proceed.** Ask user.
### Phase 1: Research
**Gate**: Phase 0 complete, scope validated.
**Goal**: Gather proven patterns before planning.
**Orchestration Strategy**:
1. **Identify Questions**: What needs to be answered?
2. **Categorize**: Local vs External research needs
3. **Delegate**:
- Local questions → Call `octocode-researcher` skill (local track)
- External questions → Call `octocode-researcher` skill (external track)
4. **Synthesize**: Combine findings from both skills
**Quality Bar**:
- **Hypothesis-driven**: Each research request supports a specific question
- **Validation Pattern**: Discover → Verify → Cross-check → Confirm
- **Rule of Two**: Key findings need second source unless primary is definitive
- **Freshness**: Prefer recently updated repos/docs
**Tasks**: Use the host's task tracker if available. **IF** no tracker exists → **THEN** maintain a concise checklist in the response.
**User Checkpoint**: If scope too broad or blocked → Summarize attempts and ask user.
**Research Summary** (before documenting):
- Present TL;DR of research findings in chat
- List key patterns discovered with confidence levels
- Highlight important trade-offs or risks
- Ask user: "Would you like me to save the detailed research to `.octocode/plan/{session-name}/research.md`?"
- Only write research.md after explicit user approval
### Phase 2: Plan
**Gate**: Research synthesis complete.
**Goal**: Synthesize research into actionable plan.
**Actions**:
1. **Synthesize**: Combine findings with confidence levels
2. **Format**: **MUST** choose output type:
- Report (research only)
- Analysis (understanding)
- Implementation Plan (code changes)
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.