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

Claude IDE Bridge: Open-source tool gives Claude AI direct access to your code editor
Claude IDE Bridge is an open-source, MIT-licensed tool that connects Claude AI directly to your code editor, allowing it to view open files, unsaved changes, and errors live rather than through pasted code snippets. The tool currently works with VS Code and Windsurf.

Open-source MCP server enables AI agents to handle L402 payments via Lightning Network
A Python MCP plugin built with FastMCP intercepts HTTP 402 Payment Required responses, pays Lightning Network invoices, and retrieves data for AI agents. The repository includes a local dummy-agent for testing without spending real funds.

Reverse Engineering Apple Neural Engine for Training MicroGPT Models
A developer reverse engineered Apple's Neural Engine private APIs to create a training pipeline for a 110M parameter MicroGPT model, achieving 6.6 TFLOPs/watt power efficiency on M4 Mac hardware.

Graph Compose: Hosted Temporal Workflows with Visual Builder and AI
Graph Compose is a hosted platform for orchestrating API workflows on Temporal, letting you define workflows as JSON graphs with three building methods: a React Flow visual builder, a TypeScript SDK, and an AI assistant that converts plain English to graphs.