Task management CLI for AI agents and humans with visual kanban board
npm install @stevestomp/ohno-cliCLI and visual kanban board for Ohno task management.
``bashNo install needed - just run
npx @stevestomp/ohno-cli init
npx @stevestomp/ohno-cli serve
Quick Start
`bash
Initialize in your project
ohno initCreate a task
ohno create "Fix the login bug"Start working on it
ohno start task-abc123View kanban board
ohno serve
Open http://localhost:3333/kanban.html
`Commands
$3
`bash
ohno serve # Start visual board server
ohno serve --port 8080 # Custom port
ohno status # Show project stats
ohno sync # One-time HTML generation
`$3
`bash
ohno tasks # List all tasks
ohno tasks -s todo # Filter by status
ohno task # Get task details
ohno create "Title" # Create task (source: human)
ohno create "Fix bug" --source kaizen-fix # Create with source tracking
ohno start # Start working (→ in_progress)
ohno done # Mark complete (→ done)
ohno review # Mark for review
ohno block "reason" # Set blocker
ohno unblock # Resolve blocker
`$3
`bash
ohno dep add # Add dependency
ohno dep rm # Remove dependency
ohno dep list # Show dependencies
`$3
`bash
ohno context --json # Get session context
ohno next --json # Get next recommended task
`Kanban Board Features
- Live reload - Auto-refreshes when tasks change
- Edit/Delete - Edit or delete tasks from the UI
- Detail panel - Click any task for full details
- Filters - Filter by epic, priority
- Self-contained - Single HTML file, no external assets
Options
All commands support:
-
--json - Machine-readable JSON output
- -d, --dir - Specify project directoryCreate command options:
-
--source - Track task origin (human, pokayokay-plan, kaizen-fix, kaizen-suggest)
- --story MIT