markplane

作者 zerowand01已验证

AI-native, markdown-first project management. Your repo is the project manager.

179
Stars
20
Forks
Rust
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/zerowand01/markplane

快速入门

使用 markplane 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Markplane

Project management in your repo, built for AI collaboration.


Every developer using AI coding assistants hits the same wall: the AI is great at code, but clueless about the project. It doesn't know what you're building, what's blocked, or what's next. Meanwhile, your project data is locked in a SaaS tool that lives outside your codebase, outside your editor, outside your flow.

Markplane stores every task, epic, and plan as a markdown file inside your repo — version-controlled with git, browsable with any editor, and automatically compressed into token-efficient summaries your AI assistant can read and act on. No database, no SaaS, no context-switching.

Quickstart

  1. Install markplane (see below)
  2. Initialize in your project: markplane init --name "My Project" (details)
  3. Open the web UI: markplane serve --open
  4. Connect your AI via MCP (setup guide)
  5. Just tell your AI what to do in plain English: "Create a task for the login bug, mark it critical, and link it to the auth epic."

A day with Markplane

Morning — You open your AI assistant and ask "what should we work on?" It pulls the project summary via MCP — 2 tasks in progress, 1 blocked on the auth migration, the payments epic is 60% done — and suggests the highest-priority planned task.

Mid-day — You hit a design question. You talk it through with your AI, arrive at an approach, and say "create a task for this, and then let's work on an implementation plan." Markdown files appear in your repo, linked and ready.

Afternoon — "Let's implement TASK-xyz." Your AI reads the plan, understands the dependencies and project context, and builds it. When you're happy with the result: "mark it done." The context layer updates.

End of day — You commit. Your project state is versioned alongside your code. Tomorrow's session picks up where today left off — no re-explaining.

Why Markplane

  • AI-native, not AI-retrofitted.context/ summaries compress full project state into ~1000 tokens. Your AI loads only what it needs. Every design decision optimizes for LLM context windows.
  • Files are the database — No vendor, no subscription, no migration. grep your tasks. git blame your status changes. Branch your backlog like you branch your code.
  • MCP server built in — AI assistants don't just read your project — they manage it. Query tasks, update status, create plans, and track dependencies without leaving your conversation.
  • Zero infrastructuremarkplane init and you're done. No signup, no server, no Docker container. It's a single binary.

Agent Memory

Markplane also works as structured memory for autonomous AI agents. Instead of unstructured daily logs that degrade over time, your agent gets typed tasks, decisions, and project state — compressed into a token-efficient summary that persists across sessions.

For OpenClaw, see @zerowand/markplane-memory.

The Context Layer

Markplane automatically generates a .context/ directory with compressed, token-efficient summaries of your entire project state. This is what makes AI collaboration work — your assistant doesn't need to read every file to understand the project.

FileWhat it containsSize
summary.mdActive epics, in-progress work, blocked items, priority queue, key metrics~1000 tokens
active-work.mdDetailed view of current work with dependencies and assignees~500 tokens
blocked-items.mdItems waiting on unresolved dependencies~200-500 tokens
metrics.mdStatus distribution, priority breakdown, epic progress~500 tokens

Each directory also has an INDEX.md that lists all items with IDs and status — so an AI agent can scan the index (~200 tokens) and load only the specific items it needs, instead of reading everything.

A typical monolithic ROADMAP.md + BACKLOG.md consumes 10,000-30,000 tokens with low signal-to-noise. Markplane's equivalent project state fits in ~1000 tokens.

See the AI Integration Guide for the full context layer design, token budgets, and recommended AI reading patterns.

Installation

Homebrew (macOS and Linux)

brew install zerowand01/markplane/markplane

Shell script (macOS and Linux)

curl -fsSL https://raw.githubusercontent.com/zerowand01/markplane/master/install.sh | sh

Downloads the latest release, verifies the SHA256 checksum, and installs to ~/.local/bin/. Customize with environment variables:

curl -fsSL https://raw.githubusercontent.com/zerowand01/markplane/master/install.sh | INSTALL_DIR=/usr/local/bin sh

Pre-built binary

Download the latest release for your platform from GitHub Releases. Pre-built binaries include the web UI and require no additional dependencies.

PlatformArchive
macOS (Apple Silicon)markplane-v*-aarch64-apple-darwin.tar.gz
macOS (Intel)markplane-v*-x86_64-apple-darwin.tar.gz
Linux (x86_64)markplane-v*-x86_64-unknown-linux-musl.tar.gz
Windows (x86_64)markplane-v*-x86_64-pc-windows-msvc.zip

macOS / Linux:

tar xzf markplane-v*.tar.gz       # extract the binary from the archive
mv markplane ~/.local/bin/        # or /usr/local/bin/ with sudo

Note: On macOS, binaries downloaded via a browser may be blocked by Gatekeeper. Remove the quarantine attribute with xattr -d com.apple.quarantine ~/.local/bin/markplane, or use the shell script install which avoids this entirely.

Windows: Extract markplane.exe from the .zip to a location on your PATH (e.g., %LOCALAPPDATA%\markplane\).

Build from source

Requires Rust 1.93.0+. To include the web UI, also requires Node.js 18+.

git clone https://github.com/zerowand01/markplane.git
cd markplane

# CLI only
cargo install --path crates/markplane-cli

# CLI + Web UI (single binary)
cd crates/markplane-web/ui && npm install && npm run build && cd ../../..
cargo install --path crates/markplane-cli --features embed-ui

Initialization

Initialize Markplane in your project:

markplane init --name "My Project"

This creates the .markplane/ directory with config, templates, and starter content to explore. Use markplane init --empty to skip starter content.

.markplane/
├── config.yaml           # Project settings
├── INDEX.md              # Root navigation
├── roadmap/              # Epics — strategic goals and phases (EPIC-xxxxx)
├── backlog/              # Tasks — the "what" to do (TASK-xxxxx)
├── plans/                # Plans — the "how" to do it (PLAN-xxxxx)
├── notes/                # Notes — research, ideas, decisions (NOTE-xxxxx)
├── templates/            # Document templates
└── .context/             # Token-optimized summaries for AI

Web UI

Launch the local web dashboard to see your project:

markplane serve --open

This opens http://localhost:4200 in your browser with a dashboard, kanban board, dependency graph, and more.

See the Web UI Guide for keyboard shortcuts, views, and details.

AI Integration

Markplane includes a built-in MCP server that lets AI coding assistants manage your project directly. Connect your assistant, then just tell it what to do in natural language — "create a task for the login bug", "show me what's blocked", "mark TASK-fq2x8 as done".

Example with Claude Code:

Per-user — adds Markplane to your local editor configuration:

claude mcp add --transport stdio markplane -- markplane mcp

Project-wide — add a .mcp.json file at the repo root so every team member gets the integration automatically:

{
  "mcpServers": {
    "markplane": {
      "command": "markplane",
      "args": ["mcp"]
    }
  }
}

See the MCP Setup Guide for other editors, configuration options, and the full tool and resource catalog.

CLI

The CLI is a power-user interface for everything Markplane can do:

markplane add "Fix login redirect" --type bug --priority critical --tags auth
markplane ls                          # List tasks
markplane ls --priority high,critical # Filter by priority
markplane show TASK-fq2x8            # View item details
markplane start TASK-fq2x8           # Set to in-progress
markplane done TASK-fq2x8            # Mark as done
markplane dashboard                   # Project overview
markplane sync                        # Regenerate INDEX.md + .context/
markplane check                       # Validate cross-references

See the CLI Reference for complete command documentation.

Status Workflows

TypeStatusesConfigurable?
Taskdraftbacklogplannedin-progressdone (also cancelled)Yes — via config.yaml workflows.task
EpiclaternextnowdoneNo
Plandraftapprovedin-progressdoneNo
NotedraftactivearchivedNo

Task statuses are fully configurable. Each status maps to one of six status categories (draft, backlog, planned, active, completed, cancelled) that control system behavior (kanban columns, progress tracking, archive eligibility). Add custom statuses like in-review, in-qa, or deployed by placing them under the appropriate category in config.yaml.

Features

  • Markdown + YAML frontmatter — Structured metadata (status, priority, effort, tags) in YAML; free-form details in markdown.
  • AI-optimized context layer — Generated .context/ summaries compress full project state into ~1000 tokens for AI consumption. INDEX.md routing lets AI agents load only what they need.
  • Web UI — Local dashboard with kanban board, dependency graph, markdown rendering, search, and dark/light themes.
  • MCP server — Structured tool access for AI coding assistants (Claude, Cursor, etc.) via JSON-RPC over stdio.
  • Cross-references[[TASK-rm6d3]] wiki-style links between items, with validation via markplane check.
  • Dependency trackingblocks / depends_on relationships and bidirectional related links with visual dependency graphs.
  • Real-time sync — Changes from CLI, MCP, or file edits appear instantly in the web UI via WebSocket.
  • Archive management — Archive completed items across all entity types with easy restore.
  • Built-in workflows — Configurable status progressions for tasks, epics, plans, and notes.

Documentation

Development

See CONTRIBUTING.md for development setup and contribution guidelines.

  • Architecture — System design, data model, crate responsibilities
  • Releasing — Release process and versioning

License

Apache-2.0. See LICENSE for details.


© 2026 zeroWand LLC

常见问题

What is markplane?

markplane is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by zerowand01. AI-native, markdown-first project management. Your repo is the project manager. It has 179 GitHub stars.

Is markplane safe to use?

Yes. markplane passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install markplane?

Clone the repository with "git clone https://github.com/zerowand01/markplane" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is markplane written in?

markplane is primarily written in Rust. It is open-source under zerowand01 on GitHub, so you can review or fork the full source.

Are there alternatives to markplane?

Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh markplane against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

Scrapling

by D4Vinci

🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!

75,9137,581Python
MCP 服务器
查看详情

TrendRadar

by sansan0

⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。

61,65224,883Python
MCP 服务器
查看详情

context7

by upstash

Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors

61,0602,938TypeScript
MCP 服务器
查看详情

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

39,9393,219C
MCP 服务器
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情