A simplified terminal app for Azure DevOps task management with the goal of quickly getting in and out of your work items.
- View all your Azure DevOps work items in a clean terminal interface
- Hierarchical tree view showing parent-child task relationships
- Sprint-based navigation (Previous, Current, Next sprint tabs)
- Real-time search by title or work item ID
- Detailed work item cards with all information including:
- Parent task information
- State, priority, tags, assigned user
- Relative timestamps (e.g., "2 days ago", "3 weeks ago")
- Full description and comments
- and more...
- Azure CLI installed and configured
- Azure DevOps account
Install Hippo with a single command:
curl -sSL https://raw.githubusercontent.com/oribarilan/hippo/main/install.sh | bashThe installer will:
- Detect your platform (Linux, macOS, Windows)
- Download the latest release
- Install to the appropriate directory:
- Linux:
~/.local/bin(or/usr/local/binif root) - macOS:
/usr/local/bin - Windows:
~/bin
- Linux:
Custom installation directory:
curl -sSL https://raw.githubusercontent.com/oribarilan/hippo/main/install.sh | INSTALL_DIR=/custom/path bashNote: On macOS, you may need to run with sudo if /usr/local/bin requires elevated permissions, or specify a user directory:
curl -sSL https://raw.githubusercontent.com/oribarilan/hippo/main/install.sh | INSTALL_DIR=$HOME/.local/bin bash- Install Azure CLI Microsoft Docs
- Login to Azure:
az login- Run Hippo:
hippoOn first run, the setup wizard will start automatically and prompt you for:
- Azure DevOps organization URL (e.g.,
https://dev.azure.com/your-org) - Project name
- Team name (optional)
Your configuration is saved to ~/.config/hippo/config.yaml.
To reconfigure later, run: hippo --init
keybindings are visible in the help menu (?), with common actions also seen in the footer (bottom bar).
Hippo stores configuration in a standard location:
- macOS/Linux:
~/.config/hippo/config.yaml - Windows:
%APPDATA%\hippo\config.yaml
Example configuration:
config_version: 1
organization_url: "https://dev.azure.com/your-org"
project: "your-project"
team: "your-team" # optionalSee app/config.example.yaml for a complete example.
Hippo supports multiple configuration sources with the following precedence (highest to lowest):
- Command-line flags - Temporary overrides for single runs
- Environment variables - For CI/CD, development, containers
- Config file - Persistent user configuration
This means you can have a config file for daily use, but override values with environment variables in CI/CD or flags for quick tests.
To update your configuration, force the wizard to run:
./hippo --initOr manually edit the config file:
# macOS/Linux
vim ~/.config/hippo/config.yaml
# Windows
notepad %APPDATA%\hippo\config.yamlOverride configuration for a single run:
# Override organization and project
hippo --org https://dev.azure.com/other-org --project OtherProject
# Use a different config file
hippo --config /path/to/custom-config.yamlAvailable flags:
--org- Override organization URL--project- Override project name--team- Override team name--config- Use custom config file path--init- Run setup wizard--version- Show version--help- Show help
Environment variables are fully supported and useful for:
- CI/CD pipelines (GitHub Actions, Azure Pipelines, etc.)
- Docker containers
- Local development with
.envfiles - Testing different configurations
Supported variables:
export HIPPO_ADO_ORG_URL="https://dev.azure.com/your-org"
export HIPPO_ADO_PROJECT="your-project"
export HIPPO_ADO_TEAM="your-team"Example: Override project in CI/CD:
# Config file has your default project
# Override just the project for this run
export HIPPO_ADO_PROJECT="CI-Test-Project"
./hippoExample: Use .env file for development:
# Create .env file
echo "HIPPO_ADO_PROJECT=DevProject" > .env
# godotenv automatically loads .env
./hippoInterested in contributing to Hippo? Check out our Contributing Guide