diff --git a/.github/workflows/build-registry.yml b/.github/workflows/build-registry.yml index 259bf2c6..0871351b 100644 --- a/.github/workflows/build-registry.yml +++ b/.github/workflows/build-registry.yml @@ -47,6 +47,8 @@ jobs: name: Build & Validate needs: lint-and-test runs-on: ubuntu-latest + outputs: + agent_ids: ${{ steps.list-agents.outputs.ids }} steps: - uses: actions/checkout@v6 @@ -62,9 +64,11 @@ jobs: - name: Validate and build run: uv run --with jsonschema .github/workflows/build_registry.py - - name: Verify agent auth support - timeout-minutes: 15 - run: python3 .github/workflows/verify_agents.py --auth-check + - name: List agents for auth matrix + id: list-agents + run: | + IDS=$(python3 .github/workflows/verify_agents.py --list-ids) + echo "ids=$IDS" >> "$GITHUB_OUTPUT" - name: List dist run: ls -la dist/ @@ -76,10 +80,36 @@ jobs: name: registry path: dist/ + verify-auth: + name: Auth (${{ matrix.agent_id }}) + needs: build + if: needs.build.outputs.agent_ids != '[]' + runs-on: ubuntu-latest + timeout-minutes: 5 + strategy: + fail-fast: false + matrix: + agent_id: ${{ fromJson(needs.build.outputs.agent_ids) }} + steps: + - uses: actions/checkout@v6 + + - name: Install uv + uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: "lts/*" + + - name: Verify auth + env: + AGENT_ID: ${{ matrix.agent_id }} + run: python3 .github/workflows/verify_agents.py --auth-check --agent "$AGENT_ID" + upload: name: Upload to S3 - needs: build - if: github.event_name == 'push' && github.ref == 'refs/heads/main' + needs: [build, verify-auth] + if: always() && !failure() && !cancelled() && github.event_name == 'push' && github.ref == 'refs/heads/main' runs-on: ubuntu-latest env: S3_PREFIX: registry/v1 @@ -131,8 +161,8 @@ jobs: release: name: Publish GitHub Release - needs: build - if: github.event_name == 'push' && github.ref == 'refs/heads/main' + needs: [build, verify-auth] + if: always() && !failure() && !cancelled() && github.event_name == 'push' && github.ref == 'refs/heads/main' runs-on: ubuntu-latest permissions: contents: write diff --git a/.github/workflows/update-versions.yml b/.github/workflows/update-versions.yml index 0c0264d5..4bd57db0 100644 --- a/.github/workflows/update-versions.yml +++ b/.github/workflows/update-versions.yml @@ -153,7 +153,7 @@ jobs: node-version: "lts/*" - name: Install uv - uses: astral-sh/setup-uv@v7 + uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 - name: Apply version updates env: diff --git a/.github/workflows/verify_agents.py b/.github/workflows/verify_agents.py index 48e28d13..5ab5b7d9 100644 --- a/.github/workflows/verify_agents.py +++ b/.github/workflows/verify_agents.py @@ -28,6 +28,7 @@ except ImportError: HAS_AUTH_CLIENT = False + # Platform detection PLATFORM_MAP = { ("Darwin", "arm64"): "darwin-aarch64", @@ -823,6 +824,11 @@ def main(): default=DEFAULT_AUTH_TIMEOUT, help=f"ACP handshake timeout in seconds (default: {DEFAULT_AUTH_TIMEOUT})", ) + parser.add_argument( + "--list-ids", + action="store_true", + help="Print non-quarantined agent IDs as a JSON array and exit", + ) args = parser.parse_args() # Always show what's happening @@ -839,6 +845,17 @@ def main(): registry_dir = Path(__file__).parent.parent.parent sandbox_base = registry_dir / args.sandbox_dir + # Handle --list-ids: print agent IDs as JSON and exit + if args.list_ids: + # Redirect diagnostic output (quarantine notices) to stderr + # so only the JSON array is captured by command substitution. + old_stdout = sys.stdout + sys.stdout = sys.stderr + agents = load_registry(registry_dir) + sys.stdout = old_stdout + print(json.dumps([a["id"] for a in agents])) + return + # Handle --clean-all if args.clean_all: if sandbox_base.exists(): diff --git a/auggie/agent.json b/auggie/agent.json index 07d59889..080ff67e 100644 --- a/auggie/agent.json +++ b/auggie/agent.json @@ -1,21 +1,17 @@ { "id": "auggie", "name": "Auggie CLI", - "version": "0.21.0", + "version": "0.22.0", "description": "Augment Code's powerful software agent, backed by industry-leading context engine", "repository": "https://github.com/augmentcode/auggie", "website": "https://www.augmentcode.com/", - "authors": [ - "Augment Code " - ], + "authors": ["Augment Code "], "license": "proprietary", "icon": "./icon.svg", "distribution": { "npx": { - "package": "@augmentcode/auggie@0.21.0", - "args": [ - "--acp" - ], + "package": "@augmentcode/auggie@0.22.0", + "args": ["--acp"], "env": { "AUGMENT_DISABLE_AUTO_UPDATE": "1" } diff --git a/claude-acp/agent.json b/claude-acp/agent.json index 97360b3c..247b132c 100644 --- a/claude-acp/agent.json +++ b/claude-acp/agent.json @@ -1,18 +1,14 @@ { "id": "claude-acp", "name": "Claude Agent", - "version": "0.24.2", + "version": "0.25.0", "description": "ACP wrapper for Anthropic's Claude", "repository": "https://github.com/agentclientprotocol/claude-agent-acp", - "authors": [ - "Anthropic", - "Zed Industries", - "JetBrains" - ], + "authors": ["Anthropic", "Zed Industries", "JetBrains"], "license": "proprietary", "distribution": { "npx": { - "package": "@agentclientprotocol/claude-agent-acp@0.24.2" + "package": "@agentclientprotocol/claude-agent-acp@0.25.0" } } } diff --git a/cline/agent.json b/cline/agent.json index 3b8df7f2..fc5ce6d2 100644 --- a/cline/agent.json +++ b/cline/agent.json @@ -1,21 +1,17 @@ { "id": "cline", "name": "Cline", - "version": "2.11.0", + "version": "2.13.0", "description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more", "repository": "https://github.com/cline/cline", "website": "https://cline.bot/cli", - "authors": [ - "Cline Bot Inc." - ], + "authors": ["Cline Bot Inc."], "license": "Apache-2.0", "icon": "./icon.svg", "distribution": { "npx": { - "package": "cline@2.11.0", - "args": [ - "--acp" - ] + "package": "cline@2.13.0", + "args": ["--acp"] } } } diff --git a/codebuddy-code/agent.json b/codebuddy-code/agent.json index 6d373d63..bf822c3c 100644 --- a/codebuddy-code/agent.json +++ b/codebuddy-code/agent.json @@ -1,19 +1,15 @@ { "id": "codebuddy-code", "name": "Codebuddy Code", - "version": "2.70.1", + "version": "2.77.0", "description": "Tencent Cloud's official intelligent coding tool", "website": "https://www.codebuddy.cn/cli/", - "authors": [ - "Tencent Cloud" - ], + "authors": ["Tencent Cloud"], "license": "Proprietary", "distribution": { "npx": { - "package": "@tencent-ai/codebuddy-code@2.70.1", - "args": [ - "--acp" - ] + "package": "@tencent-ai/codebuddy-code@2.77.0", + "args": ["--acp"] } } } diff --git a/codex-acp/agent.json b/codex-acp/agent.json index b10d46dd..a8447fcf 100644 --- a/codex-acp/agent.json +++ b/codex-acp/agent.json @@ -1,43 +1,40 @@ { "id": "codex-acp", "name": "Codex CLI", - "version": "0.10.0", + "version": "0.11.1", "description": "ACP adapter for OpenAI's coding assistant", "repository": "https://github.com/zed-industries/codex-acp", - "authors": [ - "OpenAI", - "Zed Industries" - ], + "authors": ["OpenAI", "Zed Industries"], "license": "Apache-2.0", "distribution": { "binary": { "darwin-aarch64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-aarch64-apple-darwin.tar.gz", + "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.11.1/codex-acp-0.11.1-aarch64-apple-darwin.tar.gz", "cmd": "./codex-acp" }, "darwin-x86_64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-x86_64-apple-darwin.tar.gz", + "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.11.1/codex-acp-0.11.1-x86_64-apple-darwin.tar.gz", "cmd": "./codex-acp" }, "linux-aarch64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-aarch64-unknown-linux-gnu.tar.gz", + "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.11.1/codex-acp-0.11.1-aarch64-unknown-linux-gnu.tar.gz", "cmd": "./codex-acp" }, "linux-x86_64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-x86_64-unknown-linux-gnu.tar.gz", + "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.11.1/codex-acp-0.11.1-x86_64-unknown-linux-gnu.tar.gz", "cmd": "./codex-acp" }, "windows-aarch64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-aarch64-pc-windows-msvc.zip", + "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.11.1/codex-acp-0.11.1-aarch64-pc-windows-msvc.zip", "cmd": "./codex-acp.exe" }, "windows-x86_64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-x86_64-pc-windows-msvc.zip", + "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.11.1/codex-acp-0.11.1-x86_64-pc-windows-msvc.zip", "cmd": "./codex-acp.exe" } }, "npx": { - "package": "@zed-industries/codex-acp@0.10.0" + "package": "@zed-industries/codex-acp@0.11.1" } } } diff --git a/corust-agent/agent.json b/corust-agent/agent.json index 5e49f802..78e65931 100644 --- a/corust-agent/agent.json +++ b/corust-agent/agent.json @@ -1,7 +1,7 @@ { "id": "corust-agent", "name": "Corust Agent", - "version": "0.4.0", + "version": "0.4.1", "description": "Co-building with a seasoned Rust partner.", "repository": "https://github.com/Corust-ai/corust-agent-release", "website": "https://corust.ai/", @@ -10,19 +10,19 @@ "distribution": { "binary": { "darwin-aarch64": { - "archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.4.0/agent-darwin-arm64.tar.gz", + "archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.4.1/agent-darwin-arm64.tar.gz", "cmd": "./corust-agent-acp" }, "darwin-x86_64": { - "archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.4.0/agent-darwin-x64.tar.gz", + "archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.4.1/agent-darwin-x64.tar.gz", "cmd": "./corust-agent-acp" }, "linux-x86_64": { - "archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.4.0/agent-linux-x64.tar.gz", + "archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.4.1/agent-linux-x64.tar.gz", "cmd": "./corust-agent-acp" }, "windows-x86_64": { - "archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.4.0/agent-windows-x64.zip", + "archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.4.1/agent-windows-x64.zip", "cmd": "./corust-agent-acp.exe" } } diff --git a/dimcode/agent.json b/dimcode/agent.json index 3bca7f9f..16b7466b 100644 --- a/dimcode/agent.json +++ b/dimcode/agent.json @@ -3,16 +3,12 @@ "name": "DimCode", "version": "0.0.20", "description": "A coding agent that puts leading models at your command.", - "authors": [ - "ArcShips" - ], + "authors": ["ArcShips"], "license": "proprietary", "distribution": { "npx": { "package": "dimcode@0.0.20", - "args": [ - "acp" - ] + "args": ["acp"] } } } diff --git a/factory-droid/agent.json b/factory-droid/agent.json index 0ef28fca..e4bfadcc 100644 --- a/factory-droid/agent.json +++ b/factory-droid/agent.json @@ -1,21 +1,15 @@ { "id": "factory-droid", "name": "Factory Droid", - "version": "0.90.0", + "version": "0.93.0", "description": "Factory Droid - AI coding agent powered by Factory AI", "website": "https://factory.ai/product/cli", - "authors": [ - "Factory AI" - ], + "authors": ["Factory AI"], "license": "proprietary", "distribution": { "npx": { - "package": "droid@0.90.0", - "args": [ - "exec", - "--output-format", - "acp" - ], + "package": "droid@0.93.0", + "args": ["exec", "--output-format", "acp"], "env": { "DROID_DISABLE_AUTO_UPDATE": "true", "FACTORY_DROID_AUTO_UPDATE_ENABLED": "false" diff --git a/gemini/agent.json b/gemini/agent.json index 2e4aefe9..fce901d2 100644 --- a/gemini/agent.json +++ b/gemini/agent.json @@ -1,20 +1,16 @@ { "id": "gemini", "name": "Gemini CLI", - "version": "0.35.3", + "version": "0.36.0", "description": "Google's official CLI for Gemini", "repository": "https://github.com/google-gemini/gemini-cli", "website": "https://geminicli.com", - "authors": [ - "Google" - ], + "authors": ["Google"], "license": "Apache-2.0", "distribution": { "npx": { - "package": "@google/gemini-cli@0.35.3", - "args": [ - "--acp" - ] + "package": "@google/gemini-cli@0.36.0", + "args": ["--acp"] } } } diff --git a/github-copilot-cli/agent.json b/github-copilot-cli/agent.json index e79706ca..bbe209ba 100644 --- a/github-copilot-cli/agent.json +++ b/github-copilot-cli/agent.json @@ -1,20 +1,16 @@ { "id": "github-copilot-cli", "name": "GitHub Copilot", - "version": "1.0.14", + "version": "1.0.17", "description": "GitHub's AI pair programmer", "repository": "https://github.com/github/copilot-cli", "website": "https://github.com/features/copilot/cli/", - "authors": [ - "GitHub" - ], + "authors": ["GitHub"], "license": "proprietary", "distribution": { "npx": { - "package": "@github/copilot@1.0.14", - "args": [ - "--acp" - ] + "package": "@github/copilot@1.0.17", + "args": ["--acp"] } } } diff --git a/github-copilot/agent.json b/github-copilot/agent.json index 37f91fd9..7e00a9fb 100644 --- a/github-copilot/agent.json +++ b/github-copilot/agent.json @@ -1,20 +1,16 @@ { "id": "github-copilot", "name": "GitHub Copilot", - "version": "1.460.0", + "version": "1.464.0", "description": "GitHub's AI pair programmer", "repository": "https://github.com/github/copilot-language-server-release", "website": "https://github.com/features/copilot/cli/", - "authors": [ - "GitHub" - ], + "authors": ["GitHub"], "license": "proprietary", "distribution": { "npx": { - "package": "@github/copilot-language-server@1.460.0", - "args": [ - "--acp" - ] + "package": "@github/copilot-language-server@1.464.0", + "args": ["--acp"] } } } diff --git a/goose/agent.json b/goose/agent.json index b3aef168..e8d0b97a 100644 --- a/goose/agent.json +++ b/goose/agent.json @@ -1,50 +1,38 @@ { "id": "goose", "name": "goose", - "version": "1.29.0", + "version": "1.29.1", "description": "A local, extensible, open source AI agent that automates engineering tasks", "repository": "https://github.com/block/goose", "website": "https://block.github.io/goose/", - "authors": [ - "Block" - ], + "authors": ["Block"], "license": "Apache-2.0", "distribution": { "binary": { "darwin-aarch64": { - "archive": "https://github.com/block/goose/releases/download/v1.29.0/goose-aarch64-apple-darwin.tar.bz2", + "archive": "https://github.com/block/goose/releases/download/v1.29.1/goose-aarch64-apple-darwin.tar.bz2", "cmd": "./goose", - "args": [ - "acp" - ] + "args": ["acp"] }, "darwin-x86_64": { - "archive": "https://github.com/block/goose/releases/download/v1.29.0/goose-x86_64-apple-darwin.tar.bz2", + "archive": "https://github.com/block/goose/releases/download/v1.29.1/goose-x86_64-apple-darwin.tar.bz2", "cmd": "./goose", - "args": [ - "acp" - ] + "args": ["acp"] }, "linux-aarch64": { - "archive": "https://github.com/block/goose/releases/download/v1.29.0/goose-aarch64-unknown-linux-gnu.tar.bz2", + "archive": "https://github.com/block/goose/releases/download/v1.29.1/goose-aarch64-unknown-linux-gnu.tar.bz2", "cmd": "./goose", - "args": [ - "acp" - ] + "args": ["acp"] }, "linux-x86_64": { - "archive": "https://github.com/block/goose/releases/download/v1.29.0/goose-x86_64-unknown-linux-gnu.tar.bz2", + "archive": "https://github.com/block/goose/releases/download/v1.29.1/goose-x86_64-unknown-linux-gnu.tar.bz2", "cmd": "./goose", - "args": [ - "acp" - ] + "args": ["acp"] }, "windows-x86_64": { - "archive": "https://github.com/block/goose/releases/download/v1.29.0/goose-x86_64-pc-windows-msvc.zip", + "archive": "https://github.com/block/goose/releases/download/v1.29.1/goose-x86_64-pc-windows-msvc.zip", "cmd": "./goose-package\\goose.exe", - "args": [ - "acp" - ] + "args": ["acp"] } } } diff --git a/kilo/agent.json b/kilo/agent.json index 39d007c5..986924ab 100644 --- a/kilo/agent.json +++ b/kilo/agent.json @@ -1,58 +1,44 @@ { "id": "kilo", "name": "Kilo", - "version": "7.1.11", + "version": "7.1.20", "description": "The open source coding agent", "repository": "https://github.com/Kilo-Org/kilocode", "website": "https://kilo.ai/", - "authors": [ - "Kilo Code" - ], + "authors": ["Kilo Code"], "license": "MIT", "icon": "./icon.svg", "distribution": { "binary": { "darwin-aarch64": { - "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.11/kilo-darwin-arm64.zip", + "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.20/kilo-darwin-arm64.zip", "cmd": "./kilo", - "args": [ - "acp" - ] + "args": ["acp"] }, "darwin-x86_64": { - "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.11/kilo-darwin-x64.zip", + "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.20/kilo-darwin-x64.zip", "cmd": "./kilo", - "args": [ - "acp" - ] + "args": ["acp"] }, "linux-aarch64": { - "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.11/kilo-linux-arm64.tar.gz", + "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.20/kilo-linux-arm64.tar.gz", "cmd": "./kilo", - "args": [ - "acp" - ] + "args": ["acp"] }, "linux-x86_64": { - "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.11/kilo-linux-x64.tar.gz", + "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.20/kilo-linux-x64.tar.gz", "cmd": "./kilo", - "args": [ - "acp" - ] + "args": ["acp"] }, "windows-x86_64": { - "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.11/kilo-windows-x64.zip", + "archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.1.20/kilo-windows-x64.zip", "cmd": "./kilo.exe", - "args": [ - "acp" - ] + "args": ["acp"] } }, "npx": { - "package": "@kilocode/cli@7.1.11", - "args": [ - "acp" - ] + "package": "@kilocode/cli@7.1.20", + "args": ["acp"] } } } diff --git a/kimi/agent.json b/kimi/agent.json index db233814..8cff872d 100644 --- a/kimi/agent.json +++ b/kimi/agent.json @@ -1,43 +1,33 @@ { "id": "kimi", "name": "Kimi CLI", - "version": "1.28.0", + "version": "1.30.0", "description": "Moonshot AI's coding assistant", "repository": "https://github.com/MoonshotAI/kimi-cli", "website": "https://moonshotai.github.io/kimi-cli/", - "authors": [ - "Moonshot AI" - ], + "authors": ["Moonshot AI"], "license": "MIT", "distribution": { "binary": { "darwin-aarch64": { - "archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.28.0/kimi-1.28.0-aarch64-apple-darwin.tar.gz", + "archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.30.0/kimi-1.30.0-aarch64-apple-darwin.tar.gz", "cmd": "./kimi", - "args": [ - "acp" - ] + "args": ["acp"] }, "linux-aarch64": { - "archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.28.0/kimi-1.28.0-aarch64-unknown-linux-gnu.tar.gz", + "archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.30.0/kimi-1.30.0-aarch64-unknown-linux-gnu.tar.gz", "cmd": "./kimi", - "args": [ - "acp" - ] + "args": ["acp"] }, "linux-x86_64": { - "archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.28.0/kimi-1.28.0-x86_64-unknown-linux-gnu.tar.gz", + "archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.30.0/kimi-1.30.0-x86_64-unknown-linux-gnu.tar.gz", "cmd": "./kimi", - "args": [ - "acp" - ] + "args": ["acp"] }, "windows-x86_64": { - "archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.28.0/kimi-1.28.0-x86_64-pc-windows-msvc.zip", + "archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.30.0/kimi-1.30.0-x86_64-pc-windows-msvc.zip", "cmd": "./kimi.exe", - "args": [ - "acp" - ] + "args": ["acp"] } } } diff --git a/mistral-vibe/agent.json b/mistral-vibe/agent.json index 9c3ad61b..8ae25dfd 100644 --- a/mistral-vibe/agent.json +++ b/mistral-vibe/agent.json @@ -1,7 +1,7 @@ { "id": "mistral-vibe", "name": "Mistral Vibe", - "version": "2.7.0", + "version": "2.7.3", "description": "Mistral's open-source coding assistant", "repository": "https://github.com/mistralai/mistral-vibe", "website": "https://mistral.ai/products/vibe", @@ -13,27 +13,27 @@ "distribution": { "binary": { "darwin-aarch64": { - "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.0/vibe-acp-darwin-aarch64-2.7.0.zip", + "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.3/vibe-acp-darwin-aarch64-2.7.3.zip", "cmd": "./vibe-acp" }, "darwin-x86_64": { - "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.0/vibe-acp-darwin-x86_64-2.7.0.zip", + "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.3/vibe-acp-darwin-x86_64-2.7.3.zip", "cmd": "./vibe-acp" }, "linux-aarch64": { - "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.0/vibe-acp-linux-aarch64-2.7.0.zip", + "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.3/vibe-acp-linux-aarch64-2.7.3.zip", "cmd": "./vibe-acp" }, "linux-x86_64": { - "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.0/vibe-acp-linux-x86_64-2.7.0.zip", + "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.3/vibe-acp-linux-x86_64-2.7.3.zip", "cmd": "./vibe-acp" }, "windows-aarch64": { - "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.0/vibe-acp-windows-aarch64-2.7.0.zip", + "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.3/vibe-acp-windows-aarch64-2.7.3.zip", "cmd": "./vibe-acp.exe" }, "windows-x86_64": { - "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.0/vibe-acp-windows-x86_64-2.7.0.zip", + "archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.7.3/vibe-acp-windows-x86_64-2.7.3.zip", "cmd": "./vibe-acp.exe" } } diff --git a/nova/agent.json b/nova/agent.json index 2019c25f..cabd84cc 100644 --- a/nova/agent.json +++ b/nova/agent.json @@ -1,21 +1,17 @@ { "id": "nova", "name": "Nova", - "version": "1.0.91", + "version": "1.0.93", "description": "Nova by Compass AI - a fully-fledged software engineer at your command", "repository": "https://github.com/Compass-Agentic-Platform/nova", "website": "https://www.compassap.ai/portfolio/nova.html", - "authors": [ - "Compass AI" - ], + "authors": ["Compass AI"], "license": "proprietary", "icon": "./icon.svg", "distribution": { "npx": { - "package": "@compass-ai/nova@1.0.91", - "args": [ - "acp" - ] + "package": "@compass-ai/nova@1.0.93", + "args": ["acp"] } } } diff --git a/opencode/agent.json b/opencode/agent.json index 750c9483..aa03a9d8 100644 --- a/opencode/agent.json +++ b/opencode/agent.json @@ -1,51 +1,39 @@ { "id": "opencode", "name": "OpenCode", - "version": "1.3.9", + "version": "1.3.13", "description": "The open source coding agent", "repository": "https://github.com/anomalyco/opencode", "website": "https://opencode.ai", - "authors": [ - "Anomaly" - ], + "authors": ["Anomaly"], "license": "MIT", "icon": "./icon.svg", "distribution": { "binary": { "darwin-aarch64": { - "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.9/opencode-darwin-arm64.zip", + "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.13/opencode-darwin-arm64.zip", "cmd": "./opencode", - "args": [ - "acp" - ] + "args": ["acp"] }, "darwin-x86_64": { - "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.9/opencode-darwin-x64.zip", + "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.13/opencode-darwin-x64.zip", "cmd": "./opencode", - "args": [ - "acp" - ] + "args": ["acp"] }, "linux-aarch64": { - "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.9/opencode-linux-arm64.tar.gz", + "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.13/opencode-linux-arm64.tar.gz", "cmd": "./opencode", - "args": [ - "acp" - ] + "args": ["acp"] }, "linux-x86_64": { - "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.9/opencode-linux-x64.tar.gz", + "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.13/opencode-linux-x64.tar.gz", "cmd": "./opencode", - "args": [ - "acp" - ] + "args": ["acp"] }, "windows-x86_64": { - "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.9/opencode-windows-x64.zip", + "archive": "https://github.com/anomalyco/opencode/releases/download/v1.3.13/opencode-windows-x64.zip", "cmd": "./opencode.exe", - "args": [ - "acp" - ] + "args": ["acp"] } } } diff --git a/qoder/agent.json b/qoder/agent.json index 39da1b70..1445938f 100644 --- a/qoder/agent.json +++ b/qoder/agent.json @@ -1,20 +1,16 @@ { "id": "qoder", "name": "Qoder CLI", - "version": "0.1.37", + "version": "0.1.38", "description": "AI coding assistant with agentic capabilities", "website": "https://qoder.com", - "authors": [ - "Qoder AI" - ], + "authors": ["Qoder AI"], "license": "proprietary", "icon": "./icon.svg", "distribution": { "npx": { - "package": "@qoder-ai/qodercli@0.1.37", - "args": [ - "--acp" - ] + "package": "@qoder-ai/qodercli@0.1.38", + "args": ["--acp"] } } } diff --git a/qwen-code/agent.json b/qwen-code/agent.json index c5cbf139..65b55ea8 100644 --- a/qwen-code/agent.json +++ b/qwen-code/agent.json @@ -1,21 +1,16 @@ { "id": "qwen-code", "name": "Qwen Code", - "version": "0.13.2", + "version": "0.14.0", "description": "Alibaba's Qwen coding assistant", "repository": "https://github.com/QwenLM/qwen-code", "website": "https://qwenlm.github.io/qwen-code-docs/en/users/overview", - "authors": [ - "Alibaba Qwen Team" - ], + "authors": ["Alibaba Qwen Team"], "license": "Apache-2.0", "distribution": { "npx": { - "package": "@qwen-code/qwen-code@0.13.2", - "args": [ - "--acp", - "--experimental-skills" - ] + "package": "@qwen-code/qwen-code@0.14.0", + "args": ["--acp", "--experimental-skills"] } } }