ANDA PM is a small local PM dashboard for AI coding workflows. It helps vibe coders track local project status, Git state, stage plans, risks, and next actions across multiple projects.
ANDA PM is not a SaaS product. It runs on your computer and reads project folders stored locally.
- Developers using Claude Code, Codex, Cursor, Antigravity, GitHub, and terminal-based AI coding workflows
- Vibe coders managing multiple local projects who want a simple project status board
Replace <ANDA-PM-GITHUB-URL> with the URL of this repository.
git clone <ANDA-PM-GITHUB-URL>
cd anda-pm
npm install
npm run serveThe terminal prints the local address to open in your browser. It may look like:
http://127.0.0.1:4173
This address is only an example. Always open the address shown after npm run serve.
Cloning ANDA PM installs only ANDA PM itself. Your existing projects are not connected automatically.
- Open the local dashboard address shown in the terminal.
- Choose a project from Projects found on this computer.
- Click Connect this project.
- If the project is not listed, use Find project folder directly.
- Confirm that the project card appears on the dashboard.
Connecting a project does not automatically create its project plan. ANDA PM reads PM documents already stored in the connected local project folder.
BLUEPRINT.md: recommended file for numbered stage plans and stage statusCURRENT_STATUS.md: current progress, completed work, next actions, and risksTODO.md: remaining tasks
Without these documents, the dashboard may not show stage plans or detailed PM status. Non-developers can ask an AI assistant to create the documents, save them in the project folder, and then use Reload PM documents in ANDA PM.
Recommended stage statuses are done, active, todo, and blocked.
Disconnecting a project only removes it from ANDA PM's connection list. It never deletes the actual project folder.
ANDA PM reads local project folders, not GitHub repositories directly.
- Reload PM documents reads files from the connected local project path.
- It does not run
git pullor automatically fetch updates from GitHub. - To reflect GitHub changes, update the project in its own local folder first, then reload its PM documents in ANDA PM.
npm test