pick-copilot-tag
Pick Copilot Tag
Determine which microsoft/vscode-copilot-chat release tag is compatible with
a given Positron build by checking API proposal version compatibility.
When to Use
Use this skill when:
- Deciding which copilot-chat tag to merge after an upstream Code OSS update
- A release build rejects copilot-chat with "API proposals not compatible"
- Upgrading copilot-chat and need to find the latest compatible tag
Prerequisites
- GitHub CLI (
gh) installed and authenticated jqandpython3available
Workflow
Step 1: Run the Check
From the Positron repo root, run the script with no arguments. It will
automatically read package.json for the Code OSS version, extract proposals
from the source tree, discover compatible tag series, and check them all:
.claude/skills/pick-copilot-tag/scripts/check-proposals.sh
For checking against a built Positron app instead of the source tree:
.claude/skills/pick-copilot-tag/scripts/check-proposals.sh --app /Applications/Positron.app
To check against a specific Positron release (fetches both proposals and the Code OSS version from the release tag on GitHub):
.claude/skills/pick-copilot-tag/scripts/check-proposals.sh --positron-version 2026.03.0
To check a specific tag series (skips auto-discovery):
.claude/skills/pick-copilot-tag/scripts/check-proposals.sh --tag-series v0.37
Flags can be combined, e.g. --positron-version 2026.03.0 --tag-series v0.37.
Step 2: Report Results
The script outputs each tag as OK or BAD with specific mismatches. Report:
- The latest compatible tag (first OK in descending version order)
- What breaks in newer tags (which proposals changed)
- A recommendation
Use -v / --verbose to show the full proposals list instead of just the count.
Use --pre-releases to also check date-based pre-release tags (skipped by default).
Example Output
Positron proposals: 9 versioned (from src/vs/.../extensionsApiProposals.ts)
Code OSS version: 1.109.0
Checking recent tag series for engine compatibility:
v0.36 -> ^1.108.0 (compatible)
v0.37 -> ^1.109.0 (compatible)
v0.38 -> ^1.110.0 (needs Code OSS >= 1.110.0)
--- v0.37 ---
Releases (10 tags):
BAD v0.37.9
chatHooks@6 (not in Positron)
chatParticipantPrivate@13 (Positron has chatParticipantPrivate@12)
BAD v0.37.6
chatHooks@6 (not in Positron)
OK v0.37.5
Pre-releases (41 tags, skipped -- use --pre-releases to check)
Latest compatible release: v0.37.5
More from posit-dev/positron
positron-qa-verify
Generates clear, actionable verification guides for QA testing of Positron bug fixes and features
55positron-intake-rotation
This skill should be used when handling issue intake rotation duties for the Positron repository. It provides workflows for reviewing and organizing new issues, responding to discussions, handling support tickets, and searching for related content. Use this skill when on intake rotation duty, when helping someone with intake tasks, or when learning the intake rotation process.
53positron-pr-helper
Generates well-structured PR bodies with dynamically fetched e2e test tags
52positron-issue-creator
This skill should be used when drafting GitHub issues for the Positron repository. It provides workflows for searching duplicates, selecting appropriate labels, gathering complete context through questioning, and writing terse, fluff-free issues that precisely describe what is needed or wrong. The skill prepares issues for manual submission by the user. Use this skill when the user asks to draft or prepare an issue for Positron.
49positron-e2e-tests
This skill should be used when writing, debugging, or maintaining Playwright e2e tests for Positron. Load this skill when creating new test files, adding test cases, fixing flaky tests, or understanding the test infrastructure.
20positron-notebooks
This skill should be used when developing, debugging, or maintaining Positron Notebooks - the React-based feature-flagged notebook editor. Load this skill when tasks involve notebook cells, execution, selection state, context keys, or notebook editor features.
4