Feature plans for LLM-assisted development. One command sets up your project so coding agents automatically create, follow, and maintain structured plans.
Project description
planager
Feature plans for LLM-assisted development.
One command sets up your project so coding agents automatically create, follow, and maintain structured feature plans across sessions.
Prerequisites
planager uses uv for installation. If you don't have it:
curl -LsSf https://astral.sh/uv/install.sh | sh
See the uv installation docs for other methods.
Install
cd your-project
uvx planager init
You'll see a menu to pick your agent:
Welcome to planager! Which agent are you using?
1. Claude Code - Anthropic's Claude Code agent
2. pi.dev - The pi coding agent
3. Codex - OpenAI's Codex agent
Select [1-3]:
You can also skip the menu by passing the target directly
(uvx planager init claude, uvx planager init pi, uvx planager init codex),
or run multiple targets in the same project - each one only creates the files
its agent needs.
That's it. No runtime dependencies, no background processes.
What it does
After planager init, your project gets:
.plans/- directory where feature plans live (markdown files).- Agent-specific skill directory - slash commands for creating and checking plans.
- Instruction file - instructions that make the agent automatically discover and follow plans without you having to ask.
| Target | Skills directory | Instruction file | Slash commands |
|---|---|---|---|
claude |
.claude/skills/ |
CLAUDE.md |
/planager, /planager-status |
pi |
.pi/skills/ |
AGENTS.md |
/skill:planager, /skill:planager-status |
codex |
.codex/skills/ |
AGENTS.md |
$planager, $planager-status |
How it works
Plans are markdown files with frontmatter, phased steps, and checkboxes:
---
feature: auth
title: User Authentication
status: in-progress
created: 2026-04-18
updated: 2026-04-18
---
## Context
Implement email/password authentication with session management.
## Phase 1: Database schema
- [x] Create users table migration
- [x] Add password hashing utility
- [ ] Add session table migration
## Phase 2: API endpoints
- [ ] POST /login
- [ ] POST /register
## Notes
Using bcrypt for hashing. Decided against JWT - sessions are simpler for now.
The instruction file teaches the agent to:
- Check for in-progress plans at the start of each session.
- Create plans before starting non-trivial features.
- Update plans as work progresses (check off steps, add notes).
- Mark plans done when a feature is complete.
No special tools or MCP servers - the agent reads and writes plain markdown files.
Slash commands
/planager (Claude) / /skill:planager (pi) / $planager (Codex)
Create a new feature plan or resume an existing one.
- With a description:
/planager add dark mode support- explores the codebase, drafts a phased plan, asks for approval. - Without:
/planager- lists in-progress plans and offers to resume or create new.
/planager-status (Claude) / /skill:planager-status (pi) / $planager-status (Codex)
Show progress across all plans:
Feature Status Progress
─────────────── ─────────── ────────────────
auth in-progress Phase 2: 3/7
dark-mode planning Phase 1: 0/4
api-v2 done 5/5
Idempotent
Running uvx planager init again is safe - it skips files that already
exist and won't duplicate the instruction file snippet.
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file planager-0.4.0.tar.gz.
File metadata
- Download URL: planager-0.4.0.tar.gz
- Upload date:
- Size: 32.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5e0c720d2b8735d0b9f2e67645e1102026915b508485f3c9c2f511b31f4cce8
|
|
| MD5 |
25dbab1b88e6d02c815e128f8d01a1e6
|
|
| BLAKE2b-256 |
7a57d6f4588099de3c3a9bc68be13d19e85455ad99912cd764d90186eab5dd64
|
File details
Details for the file planager-0.4.0-py3-none-any.whl.
File metadata
- Download URL: planager-0.4.0-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66c85583a1cee7c24947a6f7d0b71c171e8bcc2b1bc6063e6082989ce5562c97
|
|
| MD5 |
9fd0edeff6c7c9a15b1fe00eccbf3047
|
|
| BLAKE2b-256 |
71bef331b722c2245a5eed77e12ff7a3310300e200fd188311a6fd505303c37c
|