A fast, keyboard-first project management tool inspired by Linear.
# Build from source
go build -o pulse ./cmd/pulse
# Start the server
./pulse start --addr localhost:3002
# Open in browser
open http://localhost:3002- Issue Management: Create, update, and track issues with priorities, labels, and estimates
- Kanban Board: Visual workflow with drag-and-drop (coming soon)
- Cycles: Sprint planning with time-boxed iterations
- Velocity Metrics: Track team performance with cycle time, lead time, and completion rate
- Keyboard Shortcuts: Full keyboard navigation for power users
- REST API: Programmatic access for integrations
See PRD.md for detailed product requirements and roadmap.
pulse/
├── cmd/
│ └── pulse/
│ └── main.go # CLI entry point
├── internal/
│ └── server/
│ └── server.go # Web server & API
├── docs/ # Documentation
├── PRD.md # Product requirements
├── go.mod # Go module definition
└── Makefile # Build automation
# Build binary
make build
# Run tests
make test
# Run linter
make lintMIT