macOS Installation
Install aitasks on macOS via Homebrew, with notes on terminal-emulator choice
Run from the project root. aitasks expects to be invoked from the directory containing
.git/— the root of your project’s git repository. All install methods below assume youcdinto that directory first. aitasks stores task files, plans, and configuration inside your repository and relies on git for task IDs, locking, syncing, and archival. Installing in a subdirectory or a non-git directory will not work correctly.
The simplest method — works on every supported platform (macOS, Linux, WSL):
curl -fsSL https://raw.githubusercontent.com/beyondeye/aitasks/main/install.sh | bash
Then cd into your project root (where .git/ lives) and run ait setup to install dependencies and configure agent integrations. See ait setup for details.
If you prefer your distro’s package manager:
| Platform | Install command |
|---|---|
| macOS | brew install beyondeye/aitasks/aitasks — see the Homebrew guide |
| Linux (Arch / Debian / Ubuntu / Fedora / RHEL / Rocky / Alma / WSL) | Distro-specific install paths — see the Linux guide |
| Windows / WSL | Use a WSL2 Ubuntu/Debian shell — see the Windows / WSL guide |
All install methods drop a single ait command on your $PATH — the global shim (~3 KB). The shim downloads the framework on demand when you run ait setup in your project, so the installed package stays tiny and you do not need to re-install the package to get framework updates. For the design rationale see the packaging strategy reference; for current limitations of each channel and the roadmap toward more official repos see the packaging distribution status & roadmap.
Framework upgrades are per-project. Inside any project that already has aitasks set up, run:
ait upgrade latest
Windows users: Run from a WSL shell, not PowerShell. See the Windows/WSL guide.
macOS users: Apple Terminal.app has limited tmux support (no truecolor, no right-click menu). See the macOS guide for recommended terminal emulators.
Already have the global
aitshim? Once any install method has placedaiton your PATH, you can bootstrap aitasks in any new project directory by runningait setupthere — the shim auto-downloads the framework on first run. Make sure you are at the root of the git repository (where.git/lives), not in a subdirectory.
After installing, see these guides for the rest of the environment:
ait ide workflow.ait board.ait codeagent and the Settings TUI.If you git clone a repository that already has aitasks installed in
data-branch mode (the default for projects bootstrapped with current
versions), the working tree will look “empty” until you run setup:
cd /path/to/cloned-repo # the git repository root
./ait setup
Use
./ait, notait. On a fresh clone the globalaitshim at~/.local/bin/aitmay not be installed yet, or may not be onPATH. The project-local./aitdispatcher is always present in the repo root.
./ait setup detects the existing remote aitask-data branch and:
aitask-data branch from the remote..aitask-data/ git worktree checked out at that branch.aitasks/ and aiplans/ directories with symlinks
into the worktree, so task and plan files appear in the usual places.aitasks/metadata/userconfig.yaml, etc.).If you see any of these on a fresh clone, run ./ait setup:
aitasks/ exists but contains only an empty metadata/ subdirectory —
no task files visible.ait board (or ./ait board) shows no tasks../ait git-health reports:
Mode: legacy (no separate .aitask-data worktree) — nothing to check.git branch -a shows a remote aitask-data branch that is not checked
out anywhere locally.For background on why task data lives on a separate branch, see the Git branching model.
Per-project files (committed to your repo):
ait — CLI dispatcher script.aitask-scripts/ — Framework scripts (task management, board, stats, etc.).claude/skills/aitask-* — Primary skill definitions (used directly by Claude Code and as the source for wrappers)aitasks/ — Task data directory (auto-created)aiplans/ — Implementation plans directory (auto-created)Optional: Codex CLI support (when ait setup detects Codex CLI):
.agents/skills/ — Codex CLI skill wrappers.codex/instructions.md — aitasks instructions for Codex.codex/config.toml — created or merged with aitask settings.codex/rules/default.rules — Codex CLI allow rules for aitasks helper scriptsOptional: OpenCode support (when ait setup detects OpenCode):
.opencode/skills/ — OpenCode skill wrappers.opencode/commands/ — OpenCode command wrappers.opencode/instructions.md — aitasks instructions for OpenCodeopencode.json — merged with aitask settingsGlobal dependencies (installed once per machine via ait setup):
fzf, gh (for GitHub), glab (for GitLab), or bkt (for Bitbucket), jq, git, zstd~/.aitask/venv/ with textual (>=8.1), pyyaml, linkify-it-py, tomli, and plotext (for ait stats-tui chart panes). Versions are pinned — see ait setup for details~/.aitask/pypy_venv/ for faster ait board — see PyPy Runtimeait shim at ~/.local/bin/ait.claude/settings.local.json (see Claude Code Permissions)Next: Getting Started
Install aitasks on macOS via Homebrew, with notes on terminal-emulator choice
Install aitasks on Arch, Debian/Ubuntu, Fedora/RHEL, and other Linux distros
Guide for installing and running aitasks on Windows via WSL
Terminal emulator choice, tmux, and the ait ide workflow
Authenticate with GitHub, GitLab, or Bitbucket
Optional PyPy 3.11 sibling interpreter for faster long-running TUIs
Refresh the supported AI code-agent model lists used by ait codeagent, the Settings TUI, and verified-score stats
Known integration caveats for ai code agents used with aitasks