diff --git a/README.md b/README.md index fc134de..240a5bf 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,12 @@ 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. @@ -31,7 +31,7 @@ For platforms with two paths the skill prompts on first use. The choice is persi ### Claude Code -```txt +```bash /plugin marketplace add Dropelikeit/pr-comments-resolver /plugin install pr-comments-resolver@pr-comments-resolver ``` @@ -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: @@ -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. @@ -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 ```