Skip to content

Commit 430d31c

Browse files
Copilotpelikhan
andcommitted
Add Sandbox Runtime to cli-version-checker workflow
Add @anthropic-ai/sandbox-runtime (SRT) to the list of tracked dependencies in the CLI version checker agentic workflow. This ensures the SRT version is monitored and updated alongside other agentic CLI tools. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
1 parent 7c89bfa commit 430d31c

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

.github/workflows/cli-version-checker.lock.yml

Lines changed: 8 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/cli-version-checker.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Monitors and updates agentic CLI tools (Claude Code, GitHub Copilot CLI, OpenAI Codex, GitHub MCP Server, Playwright MCP, Playwright Browser) for new versions
2+
description: Monitors and updates agentic CLI tools (Claude Code, GitHub Copilot CLI, OpenAI Codex, GitHub MCP Server, Playwright MCP, Playwright Browser, Sandbox Runtime) for new versions
33
on:
44
schedule: daily
55
workflow_dispatch:
@@ -28,7 +28,7 @@ timeout-minutes: 45
2828

2929
# CLI Version Checker
3030

31-
Monitor and update agentic CLI tools: Claude Code, GitHub Copilot CLI, OpenAI Codex, GitHub MCP Server, Playwright MCP, and Playwright Browser.
31+
Monitor and update agentic CLI tools: Claude Code, GitHub Copilot CLI, OpenAI Codex, GitHub MCP Server, Playwright MCP, Playwright Browser, and Sandbox Runtime.
3232

3333
**Repository**: ${{ github.repository }} | **Run**: ${{ github.run_id }}
3434

@@ -62,6 +62,9 @@ For each CLI/MCP server:
6262
- **Playwright Browser**: `https://api.github.com/repos/microsoft/playwright/releases/latest`
6363
- Release Notes: https://github.com/microsoft/playwright/releases
6464
- Docker Image: `mcr.microsoft.com/playwright:v{VERSION}`
65+
- **Sandbox Runtime**: Use `npm view @anthropic-ai/sandbox-runtime version`
66+
- Repository: https://github.com/anthropic-experimental/sandbox-runtime
67+
- Package: https://www.npmjs.com/package/@anthropic-ai/sandbox-runtime
6568

6669
**Optimization**: Fetch all versions in parallel using multiple npm view or WebFetch calls in a single turn.
6770

@@ -105,11 +108,13 @@ For each CLI tool update:
105108
- Copilot CLI: `npm install -g @github/copilot@<version>`
106109
- Codex: `npm install -g @openai/codex@<version>`
107110
- Playwright MCP: `npm install -g @playwright/mcp@<version>`
111+
- Sandbox Runtime: `npm install -g @anthropic-ai/sandbox-runtime@<version>`
108112
2. Invoke help to discover commands and flags (compare with cached output if available):
109113
- Run `claude-code --help`
110114
- Run `copilot --help` or `copilot help copilot`
111115
- Run `codex --help`
112116
- Run `npx @playwright/mcp@<version> --help` (if available)
117+
- Sandbox Runtime is a library, check NPM package metadata for API changes
113118
3. **Explore subcommand help** for each tool (especially Copilot CLI):
114119
- Identify all available subcommands from main help output
115120
- For each subcommand, run its help command (e.g., `copilot help config`, `copilot help environment`, `copilot config --help`)

0 commit comments

Comments
 (0)