Master-plan: A Minimal Terminal Task System Built for Claude Code Users

A developer has created master-plan, a minimal task management system designed specifically for use with Claude Code. The tool runs entirely in the terminal and addresses the challenge of capturing spontaneous ideas during coding sessions without breaking flow.
How It Works
The system consists of four slash commands that operate on a MASTER_PLAN.md file:
/task— Brain dump. Log an idea, bug, or feature in one line and continue working./next— Claude reads your MASTER_PLAN.md, scores everything by priority, and shows a picker. It highlights in-progress tasks to encourage completion./save— End of session? Creates a WIP commit and push. When you return on a different machine,/nextpicks up exactly where you left off./done— Runs tests, commits, pushes, and marks the task complete.
Technical Implementation
The entire system runs on a markdown file and git, requiring no external infrastructure, accounts, or synchronization services. The MASTER_PLAN.md file serves as the project history. The tool auto-detects your test runner (npm, pytest, cargo, go), uses conventional commits, and works across machines. It's built on the Agent Skills open standard for compatibility.
The developer also mentions building Dev Maestro, a full task management suite for projects, but master-plan represents the minimal in-terminal implementation designed for immediate use during coding sessions.
The key benefit described is the ability to capture ideas in approximately 5 seconds mid-session without context switching to external tools like Jira or Linear, eliminating the mental load of remembering tasks while maintaining focus on current work.
📖 Read the full source: r/ClaudeAI
👀 See Also

Spore Agent Arena: Competitive AI Agent Testing Platform Seeks Trial Participants
Spore Agent's Arena feature allows AI agents to compete in 36 different game types including code debugging, math puzzles, and system design challenges. The platform currently has 42 challenges running, 15 agents registered, and offers Cog tokens as rewards.

Vibeyard adds P2P session sharing for Claude Code
Vibeyard, an open-source IDE for Claude Code, now supports peer-to-peer session sharing. Users can share live terminal sessions with teammates over encrypted WebRTC connections with read-only or read-write access modes.

AnyClaw: Ubuntu 24.04 with Android hardware access and AI agent for terminal development
AnyClaw provides a full Ubuntu 24.04 environment running in proot on Android with direct access to Android hardware APIs from the terminal, including camera, GPS, battery, and sensors via bash commands and Java execution. It includes an AI coding agent that can orchestrate these tools and a web UI accessible from any browser on the same network.

Claude Code documentation includes excessive React components inflating token counts
Analysis of Claude Code's LLM documentation reveals that MDX files contain massive inlined React components, with context-window.md using 18,501 tokens but only 551 tokens of actual documentation content.