Setup & Install
ait setup and ait install commands
| Command | Description |
|---|---|
ait create | Create a new task as draft, or finalize drafts (interactive or batch mode) |
ait ls | List and filter tasks by priority, effort, status, labels |
ait update | Update task metadata (status, priority, labels, etc.) |
ait sync | Sync task data with remote (push/pull) |
ait git | Run git commands against task data (worktree-aware) |
ait lock | Lock/unlock tasks to prevent concurrent work |
| Command | Description |
|---|---|
ait board | Open the kanban-style TUI board |
ait codebrowser | Launch the code browser TUI |
ait settings | Open the settings TUI for configuration management |
| Command | Description |
|---|---|
ait issue-import | Import tasks from GitHub/GitLab/Bitbucket issues |
ait issue-update | Update or close linked GitHub/GitLab/Bitbucket issues |
ait pr-import | Import pull requests as tasks or extract PR data for AI analysis |
| Command | Description |
|---|---|
ait stats | Show task completion statistics |
ait changelog | Gather changelog data from commits and archived plans |
| Command | Description |
|---|---|
ait codeagent | Manage code agent and model configuration |
ait explain-runs | Manage aiexplain run directories (list, delete, cleanup) |
ait explain-cleanup | Remove stale aiexplain run directories |
ait zip-old | Archive old completed task and plan files |
| Command | Description |
|---|---|
ait setup | Install/update dependencies and configure Claude Code permissions |
ait install | Update aitasks to latest or specific version |
ait setup # Install dependencies
ait create # Interactive task creation (draft workflow)
ait create --batch --name "fix_bug" # Create draft (no network needed)
ait create --batch --name "fix_bug" --commit # Create and finalize immediately
ait create --batch --finalize-all # Finalize all draft tasks
ait ls -v 15 # List top 15 tasks (verbose)
ait ls -v -l ui,frontend 10 # Filter by labels
ait update --batch 42 --status Done # Mark task done
ait board # Open TUI board
ait codebrowser # Open code browser TUI
ait issue-import # Import issues from issue tracker
ait lock 42 # Pre-lock a task before Claude Web
ait lock --list # See all active locks
ait lock --unlock 42 # Release a lock
ait sync # Interactive sync with progress
ait sync --batch # Batch mode for scripting
ait git add aitasks/t42.md # Git operations on task data
ait stats # Show completion stats
ait explain-runs --list # List all explain runs
ait explain-runs --cleanup-stale # Remove stale runs
ait explain-cleanup --dry-run --all # Preview stale cleanup
ait codeagent list-agents # Show available code agents
ait codeagent list-models claudecode # List Claude models
ait codeagent resolve task-pick # Show configured agent/model
ait settings # Open settings TUI
ait install # Update to latest version
ait install 0.2.1 # Install specific version
ait --version # Show installed version
Next: Development Guide
ait setup and ait install commands
ait create, ait ls, and ait update commands
ait board, ait codebrowser, and ait stats commands
ait explain-runs and ait explain-cleanup commands
ait sync command for bidirectional task data synchronization
ait lock command for atomic task locking to prevent concurrent work
ait issue-import, ait issue-update, ait changelog, and ait zip-old commands
ait pr-import — import pull requests as tasks or extract PR data for AI analysis
ait codeagent command for multi-agent model selection and invocation