Commands Reference

Full flag reference for every allye CLI command.

Global flags

--help, -h       Print help
--version, -v    Print version
--json           Machine-readable JSON output
--no-color       Disable color
--quiet, -q      Suppress non-essential output
--workspace      Override active workspace
--team           Override active team

allye / allye tui

Launch the terminal UI.


allye init

Initialize a workspace in the current directory.

allye init
allye init --name "my-project" --team "Engineering" --template startup
FlagDescription
--nameWorkspace name (default: directory name)
--teamTeam name to create
--templatesolo / startup / standard / enterprise
--skip-mcpSkip MCP config output

allye auth

allye auth login              # interactive browser login
allye auth login --token PAT  # login with PAT
allye auth logout
allye auth whoami
allye auth token              # print current token
allye auth refresh            # refresh OAuth token

allye mcp

allye mcp start                          # stdio mode
allye mcp start --agent=claude-code      # start + auto-configure
allye mcp start --http --port 8421       # HTTP mode
allye mcp start --http --stdio           # both transports
allye mcp status
allye mcp actions                        # list registered actions
allye mcp stop
allye mcp logs
allye mcp logs --tail 100

allye sprint

allye sprint list
allye sprint list --status active
allye sprint current
allye sprint items
allye sprint items --sprint S-14
allye sprint items --status blocked

allye task

# list
allye task list
allye task list --type story
allye task list --assignee me
allye task list --status in-progress
allye task list --label backend

# view
allye task show PROJ-248
allye task show PROJ-248 --comments

# create
allye task create
allye task create --type story --title "Add rate limiting" --sprint current

# update
allye task update PROJ-248 --status done
allye task update PROJ-248 --assignee marina --priority high
allye task update PROJ-248 --points 5

# status shortcuts
allye task start PROJ-248    # → in_progress
allye task done PROJ-248     # → done
allye task block PROJ-248    # → blocked

allye board

allye board list
allye board show             # interactive kanban
allye board show --id UUID

Move cards between columns with m, open detail with Enter.


allye doc

allye doc list
allye doc list --folder FOLDER-ID
allye doc show DOC-ID
allye doc create
allye doc create --title "Auth Guide" --type guide --parent FOLDER-ID
allye doc edit DOC-ID        # opens in $EDITOR
allye doc publish DOC-ID

allye memory

allye memory search "SSO domain decision"
allye memory search --tags decision,auth
allye memory show MEM-ID
allye memory save
allye memory save --title "Decision" --content "..."
allye memory delete MEM-ID

allye skill

allye skill list
allye skill search "planning"
allye skill install allye-assistant/allye-plugin
allye skill show SKILL-SLUG
allye skill export SKILL-SLUG     # merged export

allye workspace

allye workspace list
allye workspace current
allye workspace switch NAME
allye workspace create --name "NewCo"

allye team

allye team list
allye team current
allye team switch NAME
allye team create --name "Backend"

allye config

allye config list
allye config show CONFIG-ID
allye config edit CONFIG-ID   # opens in $EDITOR
allye config set KEY VALUE