Stats
Links
Categories
Marketplace for aide plugin
npx claudepluginhub rlcurrall/aideAI agent toolkit
A unified command-line tool designed for AI coding agents (like Claude Code) to interact with Jira, Azure DevOps, and GitHub APIs.
Linux/macOS:
curl -fsSL https://raw.githubusercontent.com/rlcurrall/aide/main/install.sh | bash
Windows (PowerShell):
irm https://raw.githubusercontent.com/rlcurrall/aide/main/install.ps1 | iex
Windows (Git Bash):
curl -fsSL https://raw.githubusercontent.com/rlcurrall/aide/main/install.sh | bash
The installation scripts will:
~/.local/bin (Linux/macOS) or %LOCALAPPDATA%\Programs\aide (Windows)Download the pre-built binary for your platform from the releases page:
Linux:
curl -fsSL https://github.com/rlcurrall/aide/releases/latest/download/aide-linux -o aide
chmod +x aide
sudo mv aide /usr/local/bin/
macOS:
curl -fsSL https://github.com/rlcurrall/aide/releases/latest/download/aide-mac -o aide
chmod +x aide
sudo mv aide /usr/local/bin/
Windows (PowerShell):
Invoke-WebRequest -Uri "https://github.com/rlcurrall/aide/releases/latest/download/aide.exe" -OutFile "aide.exe"
# Move aide.exe to a directory in your PATH
git clone https://github.com/rlcurrall/aide.git
cd aide
bun install
bun run build # Current platform
# or
bun run build:win # Windows
bun run build:linux # Linux
bun run build:mac # macOS ARM
bun run build:all # All platforms
Binaries are output to the dist/ directory.
bun run dev <command>
# Get help
aide --help
aide jira --help
aide pr --help
# Search Jira tickets
aide jira search "assignee = currentUser()"
aide jira view PROJ-123
# List pull requests
aide pr list --status active
aide pr comments --pr 24094 --latest 5
aide <service> <action> [options]
| Service | Description |
|---|---|
jira | Jira ticket management |
pr | Pull request management |
plugin | Claude Code plugin manager |
prime | Output aide context |
upgrade | Upgrade aide to latest |
| Command | Description |
|---|---|
aide jira search <jql> | Search tickets using JQL |
aide jira view <key> | Get ticket details |
aide jira comment <key> <text> | Add comment to ticket |
aide jira comments <key> | Get ticket comments |
aide jira update <key> --description <text> | Update ticket fields |
| Command | Description |
|---|---|
aide pr list | List pull requests |
aide pr view [--pr ID] | View pull request details |
aide pr diff [--pr ID] | View PR diff and changed files |
aide pr create | Create a pull request |
aide pr update [--pr ID] | Update a pull request |
aide pr comments [--pr ID] | Get PR comments |
aide pr comment <text> [--pr ID] | Post a comment on a PR |
aide pr reply <thread> <text> [--pr ID] | Reply to a comment thread |
Note: --pr flag is optional - aide auto-detects from current branch if omitted.
# Search for your tickets
aide jira search "assignee = currentUser()"
# Get ticket details
aide jira view PROJ-123
# Add a comment
aide jira comment PROJ-123 "Work completed"
# Get recent comments
aide jira comments PROJ-123 --latest 5
# Update description
aide jira update PROJ-123 --description "New description text"
# List active PRs (auto-discovers project from git remote)
aide pr list
# List PRs with filters
aide pr list --status completed --limit 10
aide pr list --created-by "[email protected]"
# View PR details (--pr optional, auto-detects from current branch)
aide pr view --pr 24094
aide pr view # auto-detect PR from branch