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

✍️ OpenClawRadar📅 Published: March 11, 2026🔗 Source
Master-plan: A Minimal Terminal Task System Built for Claude Code Users
Ad

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, /next picks up exactly where you left off.
  • /done — Runs tests, commits, pushes, and marks the task complete.
Ad

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

Ad

👀 See Also

aco-system: An Entire Company OS for Claude That Writes User Stories, Breaks Tasks, Reviews PRs
Tools

aco-system: An Entire Company OS for Claude That Writes User Stories, Breaks Tasks, Reviews PRs

A Reddit user shared how aco-system turned a single GitHub issue into a fully validated PR with tests — driven entirely by Claude. Includes user story generation, task breakdown, secret checking, and PR review.

OpenClawRadar
Sentinel: Self-Hosted Agent Platform for Claude Code Subscribers
Tools

Sentinel: Self-Hosted Agent Platform for Claude Code Subscribers

Sentinel is a free, open-source agent platform that runs directly on your existing Claude Code OAuth token without API overhead. It provides a clean operator UI with real-time browser automation via built-in VNC and includes features like Git gating, session trace logs, and structured hierarchical memory.

OpenClawRadar
Extracting OpenClaw Components: A Developer's Experience with Lane Queue and Memory System
Tools

Extracting OpenClaw Components: A Developer's Experience with Lane Queue and Memory System

A developer attempted to extract specific components from OpenClaw for use in personal AI agents, testing the Lane Queue task execution system and examining the memsearch memory system. The Lane Queue was successfully reimplemented in Python using documentation, revealing gaps in documentation and 13 implementation issues.

OpenClawRadar
Open Brain: Open-source MCP server adds persistent memory with auto-graph and semantic search to Claude
Tools

Open Brain: Open-source MCP server adds persistent memory with auto-graph and semantic search to Claude

Open Brain is an open-source MCP server that gives Claude persistent memory across sessions with automatic entity extraction, semantic deduplication, and auto-graphing of connections between thoughts. It uses Supabase with pgvector and Deno Edge Functions, is self-hostable, and includes 16 MCP tools for graph traversal, entity browsing, and weekly review synthesis.

OpenClawRadar