Back to Plugins

micode

Structured Brainstorm → Plan → Implement workflow with session continuity

View on GitHub

micode

CI npm version

OpenCode plugin with structured Brainstorm → Plan → Implement workflow and session continuity.

https://github.com/user-attachments/assets/85236ad3-e78a-4ff7-a840-620f6ea2f512

Quick Start

Add to ~/.config/opencode/opencode.json:

{ "plugin": ["micode"] }

Then run /init to generate ARCHITECTURE.md and CODE_STYLE.md.

Workflow

Brainstorm → Plan → Implement
     ↓         ↓        ↓
  research  research  executor

Brainstorm

Refine ideas into designs through collaborative questioning. Fires research subagents in parallel. Output: thoughts/shared/designs/YYYY-MM-DD-{topic}-design.md

Plan

Transform designs into implementation plans with bite-sized tasks (2-5 min each), exact file paths, and TDD workflow. Output: thoughts/shared/plans/YYYY-MM-DD-{topic}.md

Implement

Execute in git worktree for isolation. The Executor orchestrates implementer→reviewer cycles with parallel execution via fire-and-check pattern.

Session Continuity

Maintain context across sessions with structured compaction. Run /ledger to create/update thoughts/ledgers/CONTINUITY_{session}.md.

Commands

CommandDescription
/initInitialize project docs
/ledgerCreate/update continuity ledger
/searchSearch past plans and ledgers

Agents

AgentPurpose
commanderOrchestrator
brainstormerDesign exploration
plannerImplementation plans
executorOrchestrate implement→review
implementerExecute tasks
reviewerCheck correctness
codebase-locatorFind file locations
codebase-analyzerDeep code analysis
pattern-finderFind existing patterns
project-initializerGenerate project docs
ledger-creatorContinuity ledgers
artifact-searcherSearch past work

Tools

ToolDescription
ast_grep_searchAST-aware code pattern search
ast_grep_replaceAST-aware code pattern replacement
look_atExtract file structure
artifact_searchSearch past plans/ledgers
btca_askQuery library source code
pty_spawnStart background terminal session
pty_writeSend input to PTY
pty_readRead PTY output
pty_listList PTY sessions
pty_killTerminate PTY

Hooks

  • Think Mode - Keywords like "think hard" enable 32k token thinking budget
  • Ledger Loader - Injects continuity ledger into system prompt
  • Auto-Compact - At 50% context usage, automatically summarizes session to reduce context
  • File Ops Tracker - Tracks read/write/edit for deterministic logging
  • Artifact Auto-Index - Indexes artifacts in thoughts/ directories
  • Context Injector - Injects ARCHITECTURE.md, CODE_STYLE.md
  • Token-Aware Truncation - Truncates large tool outputs

Development

git clone git@github.com:vtemian/micode.git ~/.micode
cd ~/.micode && bun install && bun run build
// Use local path
{ "plugin": ["~/.micode"] }

Release

npm version patch  # or minor, major
git push --follow-tags

Philosophy

  1. Brainstorm first - Refine ideas before coding
  2. Research before implementing - Understand the codebase
  3. Plan with human buy-in - Get approval before coding
  4. Parallel investigation - Spawn multiple subagents
  5. Isolated implementation - Use git worktrees
  6. Continuous verification - Implementer + Reviewer per task
  7. Session continuity - Never lose context

Inspiration