Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ Supported agents: **Claude Code**, **Augment**, **Codex**, **Junie**, **Roo Code

## Supported Platforms

| Platform | CLI path | MCP path |
|---|---|---|
| GitHub | `gh` | — |
| GitLab | `glab` | — |
| Bitbucket Cloud | `acli` ([Atlassian CLI](https://developer.atlassian.com/cloud/acli/)) | [Atlassian Remote MCP](https://mcp.atlassian.com/v1/sse) (OAuth) |
| Azure DevOps | `az` + the [`azure-devops` extension](https://learn.microsoft.com/azure/devops/cli/) | [`@azure-devops/mcp`](https://www.npmjs.com/package/@azure-devops/mcp) (PAT via env var) |
| Platform | CLI path | MCP path |
|-----------------|--------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
| GitHub | `gh` | — |
| GitLab | `glab` | — |
| Bitbucket Cloud | `acli` ([Atlassian CLI](https://developer.atlassian.com/cloud/acli/)) | [Atlassian Remote MCP](https://mcp.atlassian.com/v1/sse) (OAuth) |
| Azure DevOps | `az` + the [`azure-devops` extension](https://learn.microsoft.com/azure/devops/cli/) | [`@azure-devops/mcp`](https://www.npmjs.com/package/@azure-devops/mcp) (PAT via env var) |

For platforms with two paths the skill prompts on first use. The choice is persisted in project memory and skipped on subsequent runs.

## Installation

### Claude Code

```txt
```bash
/plugin marketplace add Dropelikeit/pr-comments-resolver
/plugin install pr-comments-resolver@pr-comments-resolver
```
Expand All @@ -46,9 +46,9 @@ Codex auto-discovers `.codex-plugin/` and the repo-scoped marketplace at `.agent

If plugin installation from repo marketplaces is available in your Codex build, use the repository directly:

```txt
```bash
codex plugin marketplace add Dropelikeit/pr-comments-resolver
codex plugin install pr-comments-resolver@pr-comments-resolver
codex plugin add pr-comments-resolver@pr-comments-resolver
```

If your Codex build does not yet allow the plugin path, install the skill directly instead:
Expand Down Expand Up @@ -86,12 +86,12 @@ For a direct Codex skill install, you also need the skill present under `~/.code

### CLI paths

| Platform | CLI Tool | Install | Auth |
|---|---|---|---|
| GitHub | `gh` | [cli.github.com](https://cli.github.com/) | `gh auth login` |
| GitLab | `glab` | [gitlab.com/gitlab-org/cli](https://gitlab.com/gitlab-org/cli) | `glab auth login` |
| Bitbucket Cloud | `acli` | [developer.atlassian.com/cloud/acli](https://developer.atlassian.com/cloud/acli/) | `acli auth login` |
| Azure DevOps | `az` + `azure-devops` extension | [learn.microsoft.com/cli/azure/install-azure-cli](https://learn.microsoft.com/cli/azure/install-azure-cli) | `az extension add --name azure-devops` then `az login` |
| Platform | CLI Tool | Install | Auth |
|-----------------|---------------------------------|------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| GitHub | `gh` | [cli.github.com](https://cli.github.com/) | `gh auth login` |
| GitLab | `glab` | [gitlab.com/gitlab-org/cli](https://gitlab.com/gitlab-org/cli) | `glab auth login` |
| Bitbucket Cloud | `acli` | [developer.atlassian.com/cloud/acli](https://developer.atlassian.com/cloud/acli/) | `acli auth login` |
| Azure DevOps | `az` + `azure-devops` extension | [learn.microsoft.com/cli/azure/install-azure-cli](https://learn.microsoft.com/cli/azure/install-azure-cli) | `az extension add --name azure-devops` then `az login` |

The skill verifies authentication before doing any work and stops with a specific install/login instruction if something is missing.

Expand Down Expand Up @@ -150,13 +150,13 @@ You need a [Personal Access Token (PAT)](https://learn.microsoft.com/azure/devop

Trigger the skill with the slash command:

```txt
```bash
/resolve-comments
```

Or provide a specific PR/MR number:

```txt
```bash
/resolve-comments 42
```

Expand Down