List Jira boards for a project. Use when the user wants to find board IDs, see available boards, or needs to identify which board to query for sprint information.
Post a comment on a pull request. Use when the user wants to add a comment to a PR, respond to feedback, request review, or document decisions.
Load PR comments and feedback for code review. Use when the user wants to see reviewer feedback, check for unresolved comments, understand what changes are requested, or review discussion on a PR.
Create a new pull request. Use when the user wants to open a PR, submit code for review, create a draft PR, or push changes for merge.
View pull request diff and code changes. Use when the user wants to see what changed in a PR, review code changes, understand the scope of modifications, or examine specific file changes.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
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>
# Set up credentials (stores in OS keyring)
aide login jira # prompts for Jira URL, email, API token
aide login ado # prompts for Azure DevOps org URL and PAT
aide whoami # show what's configured and where it came from
# 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 |
login | Save credentials to keyring |
logout | Remove stored credentials |
whoami | Show credential sources |
| Command | Description |
|---|---|
aide jira search <jql> | Search tickets using JQL |
aide jira view <key> | Get ticket details |
aide jira create -p PROJ -t Task -s "..." | Create a ticket |
aide jira update <key> | Update ticket fields |
aide jira transition <key> <status> | Change workflow status |
aide jira comment <key> <text> | Add comment to ticket |
aide jira comments <key> | Get ticket comments |
aide jira delete-comment <key> <id> | Delete a comment |
aide jira edit-comment <key> <id> <text> | Edit a comment |
aide jira attach <key> | Manage attachments |
aide jira fields <project> | Discover available fields |
aide jira boards <project> | List boards for a project |
aide jira sprint <board-id> | Get sprint info for a board |
| 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.
npx claudepluginhub rlcurrall/aide --plugin aideAutonomous Development Workflows
Official Atlassian MCP server for Jira and Confluence integration with OAuth authentication. Provides ticket management, JQL search, and ensures work completeness. Zero configuration - OAuth handles authentication automatically.
Orchestration plugin. v1 use case: async development - turn ready issues into pull requests, then iterate on review feedback until a human takes over. Designed to host more orchestration use cases (refactoring, docs, audits) in future versions.
Commands for team workflows, PR reviews, and collaboration
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Memory compression system for Claude Code - persist context across sessions