Setup & Install
ait setup and ait upgrade 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 git-health | Diagnose the .aitask-data worktree state (detached HEAD, stuck rebase/merge) |
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 monitor | Dashboard of every code-agent and TUI pane across all aitasks tmux sessions |
ait minimonitor | Narrow sidebar variant of monitor for tmux agent panes |
ait applink | Pair the mobile companion app to your workspace over LAN (QR bootstrap) |
ait stats-tui | Pane-based viewer for archived task completion statistics |
ait ide | Start (or attach to) the configured tmux session and launch ait monitor — one view of a shared session; see ait ide --help |
ait settings | Open the settings TUI for configuration management |
ait syncer | Open the remote-desync syncer TUI for main and aitask-data |
| 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 projects | Manage the linked-project registry (list, add, remove, update, prune, doctor, resolve, exec) — see Multi-Project and Cross-Project Dependencies |
| 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 skillrun | Launch a code agent with a profile-aware aitask skill |
ait explain-runs | Manage aitask-explain run directories (list, delete, cleanup) |
ait explain-cleanup | Remove stale aitask-explain run directories |
ait zip-old | Archive old completed task and plan files into tar.zst bundles — periodic maintenance (guide) |
| Command | Description |
|---|---|
ait setup | Install/update dependencies and configure Claude Code permissions |
ait upgrade | 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 monitor # Dashboard of all agent/TUI panes
ait projects list # List registered linked projects
ait skillrun pick --profile fast 42 # Launch a code agent on task 42
ait git-health # Diagnose the .aitask-data worktree
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 upgrade # Update to latest version
ait upgrade 0.2.1 # Upgrade to specific version
ait --version # Show installed version
See also: Repository Maintenance for periodic upkeep commands (zip-old, explain cleanup, changelog, git-health, upgrade), and Multi-Project for the cross-repo ait projects workflow.
Next: Development Guide
ait setup and ait upgrade 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