Background
The Copilot SDK now supports bundling the GitHub Copilot CLI binary directly within the SDK package (Node.js v0.1.24-preview.0 released Feb 10, 2026). This was implemented in PR #414 by @qmuntal and PR #419 by @SteveSandersonMS.
Previously, users had to manually install and authenticate the GitHub Copilot CLI as a separate step. The SDK now includes automatic extraction and setup of the CLI binary from the npm package.
Proposal
Update Planeteer to leverage SDK CLI bundling and remove the manual installation prerequisite:
- Update
package.json - Bump @github/copilot-sdk from ^0.1.0 to ^0.1.24-preview.0 (or latest stable)
- Update
README.md - Remove "GitHub Copilot CLI installed and authenticated" from prerequisites section
- Simplify onboarding - Update Quick Start instructions to reflect that users only need Node.js 22+
- Test bundling behavior - Verify the SDK auto-extracts and uses the bundled CLI on first run
Benefit
- Zero friction onboarding - Users can
npm install && npm start without external dependencies
- Version consistency - CLI version is pinned to SDK version, eliminating version mismatch issues
- Better developer experience - One less manual setup step improves adoption
- Cross-platform reliability - SDK handles platform-specific binary selection automatically
Acceptance Criteria
AI generated by Weekly Enhancement Suggestions