Side project organizer: track multiple projects, capture ideas, and context-switch like a pro.
We all have too many side projects. Hustle Vault helps you track them all, capture ideas on the fly, time your work, and seamlessly switch between projects without losing context.
- Project tracking with status (active/paused/archived)
- Context switching - save and restore project state
- Idea bank - quick-capture ideas with tags, link to projects later
- Time tracking - start/stop timers per project
- Todo lists and notes per project
- Rich dashboard with stale project detection
- SQLite storage - everything local in
~/.hustle-vault/
pip install hustle-vault# Add projects
hustle-vault add my-saas --description "SaaS for developers" --path ./my-saas
hustle-vault add side-game --description "Indie game prototype"
# Capture ideas (no project needed)
hustle-vault idea "AI-powered code review tool" --tags ai,saas
hustle-vault idea "Pixel art generator" --tags game,art
# Switch between projects
hustle-vault switch my-saas # saves current context, restores my-saas
# Track time
hustle-vault timer-start my-saas
# ... do some work ...
hustle-vault timer-stop my-saas
# Add todos and notes
hustle-vault todo my-saas "Set up Stripe integration"
hustle-vault note my-saas "Use webhook approach for payments"
# View everything
hustle-vault dashboard
hustle-vault status my-saas
hustle-vault time-report
hustle-vault ideas --search "ai"The rich dashboard shows all your projects at a glance, with stale project warnings, running timers, and recent ideas.
hustle-vault dashboard| Command | Description |
|---|---|
add <name> |
Add a new project |
switch <name> |
Switch to a project (saves/restores context) |
list |
List all projects |
status <name> |
Detailed project status |
idea <text> |
Capture a quick idea |
ideas |
List/search ideas |
archive <name> |
Archive a project |
todo <project> <text> |
Add a todo |
note <project> <text> |
Add a note |
timer-start <project> |
Start time tracking |
timer-stop <project> |
Stop time tracking |
time-report |
Show time across all projects |
dashboard |
Rich visual dashboard |
MIT