MyCoder.ai — Summary
MyCoder is a command-line AI coding agent (npm package mycoder) that spawns parallel sub-agents for concurrent task processing, supporting multiple model providers (Anthropic Claude, OpenAI, Ollama). Installed globally via npm install -g mycoder, it runs as its own runtime rather than a plugin layer on top of another tool. The agent system includes a rich tool set: shell execution, text editor, browser/fetch, MCP servers, sleep, think, and an agentStart/agentDone tool pair that explicitly spawns and tracks sub-agents with unique IDs. GitHub integration mode lets it work directly with issues and PRs; interactive corrections via Ctrl+M mid-run allow human steering. Context window management includes automatic message compaction for long-running agents.
Differs from seeds: closest to claude-flow in spawning parallel sub-agents at runtime for concurrent execution, but MyCoder is a standalone CLI tool (not a Claude Code plugin) and is model-agnostic across three provider families. Unlike taskmaster-ai (which decomposes a spec into tasks) or openspec (which writes delta specs), MyCoder is an autonomous executor that reads project files, writes code, and manages its own sub-agent lifecycle end-to-end without a formal spec layer.