A conversational thread tracker for managing streams of activity through self-reported progress. Unlike traditional task managers, Threads tracks momentum and context rather than deadlines.
npm install -g threads-cliRequires Node.js 20 or later.
# Create a new thread
threads new "API refactoring" -d "Modernize REST endpoints" -t hot -i 4
# List active threads
threads list --active
# Add progress to a thread
threads progress "API refactoring" "Completed authentication endpoints"
# View a specific thread
threads show "API refactoring"- Thread: A stream of activity with status, temperature (momentum), size (scope), and importance
- Progress: Timestamped notes you report to yourself about a thread
- Temperature: Indicates momentum (frozen, freezing, cold, tepid, warm, hot)
- Sub-threads: Threads can spawn children for breaking down work
- Groups: Organizational containers for related threads
- Dependencies: Links between threads with why/what/how/when context
threads new <name> # Create a new thread
threads show <name> # Display thread details
threads set <name> <property> # Update thread properties
threads spawn <parent> <child> # Create sub-thread
threads archive <name> # Archive a thread
threads clone <name> # Duplicate a thread
threads merge <source> <target> # Merge threadsthreads progress <name> <note> # Add progress entry
threads move-progress <s> <t> # Move progress between threads
threads timeline # View progress timeline
threads undo # Restore from backupthreads list # List all threads (tree view)
threads list --active # Show only active threads
threads list --hot # Show hot threads
threads list -g <group> # Filter by group
threads list --tag <tag> # Filter by tag
threads list --flat # Flat list instead of tree
threads search <query> # Search threadsthreads group new <name> # Create a group
threads group add <thread> <g> # Add thread to group
threads tag add <name> <tags> # Add tags to thread
threads depend <from> <to> # Create dependencythreads overview # High-level summary
threads agenda # Prioritized view
threads next # Suggest next thread to work on
threads details <name> # View/manage detail snapshotsthreads batch set status=paused "Thread1" "Thread2"
threads batch tag add urgent "Thread1" "Thread2"| Property | Values |
|---|---|
| status | active, paused, stopped, completed, archived |
| temperature | frozen, freezing, cold, tepid, warm, hot |
| size | tiny, small, medium, large, huge |
| importance | 1-5 |
Data is stored locally at ~/.threads/threads.json. This file is managed entirely by the CLI.
git clone https://github.com/joshuaramirez/threads-cli.git
cd threads-cli
npm install
npm run build
npm link # Install locally for testingnpm run build # Compile TypeScript
npm run dev # Run directly via tsx
npm test # Run tests
npm run typecheck # Type checking onlyMIT