| Crates.io | pillar-cli |
| lib.rs | pillar-cli |
| version | 0.2.6 |
| created_at | 2025-12-30 07:04:18.672219+00 |
| updated_at | 2026-01-24 20:29:04.876478+00 |
| description | A file-based task tracker for managing projects, milestones, and issues |
| homepage | https://github.com/nqn/pillar |
| repository | https://github.com/nqn/pillar |
| max_upload_size | |
| id | 2012206 |
| size | 2,996,014 |
A file-based task tracker for managing projects, milestones, and issues
Pillar is a command-line task tracker that uses plain text files (Markdown with YAML frontmatter) to manage your projects, milestones, and issues. Perfect for developers who want to track work without leaving the terminal or dealing with complex web interfaces.
pillar ui# Initialize a new workspace
pillar init
# Create a project
pillar project create "MyApp" --priority high
# Add a milestone
pillar milestone create MyApp "v1.0" --date 2026-03-01
# Create an issue
pillar issue create MyApp "Fix login bug" --priority urgent --milestone "v1.0"
# View board
pillar board
# Launch Web UI
pillar ui
# Add a comment
pillar comment add issue MyApp 1 "Working on this now"
cargo install pillar-cli
git clone https://github.com/nqn/pillar.git
cd pillar
cargo install --path .
brew install pillar
# Standard initialization (stores data in current directory)
pillar init
# Use a base directory (keeps PM data separate from code)
pillar init --path pm
# Create a project
pillar project create "MyProject" --priority medium
# List all projects
pillar project list
# Filter projects
pillar project list --status in-progress --priority high
# Show project details
pillar project show "MyProject"
# Update project
pillar project edit "MyProject" --status in-progress --priority high
# Create a milestone
pillar milestone create MyProject "v1.0" --date 2026-06-01
# List milestones
pillar milestone list
# Filter by project
pillar milestone list --project MyProject
# Update milestone
pillar milestone edit MyProject "v1.0" --status in-progress
# Create an issue
pillar issue create MyProject "Add user authentication" \
--priority high \
--milestone "v1.0" \
--tags "feature,security"
# List issues
pillar issue list
# Filter issues
pillar issue list --status todo --priority high --project MyProject
# Update issue
pillar issue edit MyProject/001 --status in-progress
# Add comment to project
pillar comment add project MyProject "Sprint planning completed"
# Add comment to issue
pillar comment add issue MyProject 1 "Fixed in commit abc123"
# Add comment to milestone
pillar comment add milestone MyProject "v1.0" "All features complete"
# List comments
pillar comment list project MyProject
pillar comment list issue MyProject 1
# Overview of all work
pillar status
# Kanban board view
pillar board
# Board for specific project
pillar board MyProject
### Web UI
Launch the interactive local dashboard:
```bash
pillar ui
# or specify a custom port
pillar ui --port 8080
When you run pillar init, it creates the following structure:
.pillar/
├── config.toml # Workspace configuration
└── templates/ # Templates for new entities
├── project.md
├── milestone.md
└── issue.md
MyProject/ # Project directory
├── README.md # Project metadata and description
├── milestones/ # Milestone files
│ └── v1.0.md
└── issues/ # Issue files
├── 001-add-auth.md
└── 002-fix-bug.md
---
title: Add user authentication
status: in-progress
priority: high
project: MyProject
milestone: v1.0
tags: [feature, security]
created: 2025-12-29T10:00:00Z
---
# Add user authentication
## Description
Implement OAuth2 authentication for user login.
## Acceptance Criteria
- [ ] OAuth2 integration
- [ ] Session management
- [ ] Logout functionality
## Comments
### [2025-12-29T14:30:00Z] - Alice
Started implementation, using passport.js
### [2025-12-29T16:45:00Z] - Bob
Added tests for auth flow
backlog - Not yet prioritizedtodo - Ready to work onin-progress - Currently being worked oncompleted - Finishedcancelled - Not doing thislow - Nice to havemedium - Standard priorityhigh - Importanturgent - Critical, needs immediate attentionKeep your PM data separate from code:
# Initialize with base directory
pillar init --path pm
# Now all projects go in ./pm/ directory
pillar project create "MyProject"
# Creates: pm/MyProject/
The configuration is stored in .pillar/config.toml:
[workspace]
version = "0.1.0"
base_directory = "pm"
[defaults]
priority = "medium"
status = "backlog"
Contributions are welcome! Please see CONTRIBUTING.md for details.
# Clone the repository
git clone https://github.com/nqn/pillar.git
cd pillar
# Run tests (single-threaded to avoid race conditions)
make test
# Build debug binary
make build
# Build release (Bundles UI assets automatically)
make release
This project is licensed under the MIT License - see the LICENSE file for details.
Pillar is uniquely positioned for Agentic Development. Because it uses plain Markdown files and a structured CLI, it is the perfect tool for AI coding agents (like GitHub Copilot, Cursor, or specialized agents) to track their own progress.
Check out the Agent Guide for a ready-to-use system prompt for your AI agents.
Git-Friendly: All your tasks are in plain text files that can be versioned with Git. No more losing task history or dealing with database backups.
Developer-Focused: Designed for developers who live in the terminal. No context switching to a web browser.
Portable: Your data is just Markdown files. Easy to read, easy to edit, easy to migrate.
Flexible: Works with your workflow. Use it alongside code, keep it separate, or integrate it into your documentation.
Found a bug? Have an idea for a feature? Please open an issue!
If you find Pillar useful, please consider: