CLI for Phabricator and Phorge - built for humans and AI agents.
- Maniphest - Full task management: create, show, edit, search, comment, parents/subtasks
- Paste - Create, show, edit, search, and comment on pastes
- Diffusion - Repository management, branches, and URI configuration
- Passphrase - Search, list, and retrieve secrets (passwords, tokens, SSH keys, notes)
- User - User info and interactive setup wizard
Cross-cutting features:
- Monogram shortcuts -
phabfive T123expands tophabfive maniphest show T123 - Batch editing - Edit multiple objects at once:
phabfive edit T1,T2,T3 --status=resolved - Shell completion - Tab completion for commands, options, and values
- Machine-readable output -
--format=jsonor--format=yamlfor scripting and AI agents
For complete documentation, see Read the Docs.
uv is a fast Python package installer (10-100x faster than pip):
# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install from pypi.org
uv tool install phabfive
# Install from Github to get unreleased features and fixes
uv tool install git+https://github.com/dynamist/phabfive@masterIf you prefer mise-en-place the polyglot tool version manager:
# Install mise if you haven't already
curl https://mise.run | sh
# Install from pypi.org
mise use --global --pin pipx:phabfiveRun the interactive setup wizard:
phabfive user setupThe wizard will prompt for your Phabricator/Phorge URL and API token, then store them in ~/.arcrc (Arcanist-compatible format). If you have multiple servers configured, phabfive will let you choose which one to use.
Then start using phabfive:
# Show tasks and pastes with monogram shortcuts
phabfive T123
phabfive P456
# Search and filter
phabfive maniphest search "migration tasks" --tag myproject
phabfive paste search "config"
# Create and edit
phabfive maniphest create "Fix the bug" --priority=high --tag myproject
phabfive maniphest edit T123 "New Title" --status=resolved
# Smart navigation - raise/lower priority, move columns forward/backward
phabfive edit T123 --priority=raise
phabfive edit T123 --tag=MyBoard --column=forward
# Batch operations
phabfive edit T1,T2,T3 --status=resolved
phabfive maniphest search --assigned=@me | phabfive edit --column=DoneEnable tab completion for bash, zsh, or fish:
phabfive --install-completion bash
phabfive --install-completion zsh
phabfive --install-completion fishAfter installation, restart your shell or source your profile.
Manual configuration (advanced)
Arcanist-compatible ~/.arcrc (recommended):
{
"hosts": {
"https://yourserver.com/api/": {
"token": "cli-ABC123"
}
}
}Or environment variables:
export PHAB_TOKEN=cli-ABC123
export PHAB_URL=https://yourserver.com/api/Windows SSL certificates: If you encounter certificate errors, install pip-system-certs to use the Windows certificate store: pip install pip-system-certs
- Full CLI Reference - Complete command documentation
- Development Guide - Set up dev environment, run tests, local Phorge/Phabricator setup
- Release Process - How to build and publish releases
See docs/development.md for instructions on setting up your development environment.
Copyright (c) 2017-2026 Dynamist AB
See the LICENSE file provided with the source distribution for full details.
