| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-09-16 | 4.6 kB | |
| Skill Recorder v0.6.2 source code.tar.gz | 2026-09-16 | 5.4 MB | |
| Skill Recorder v0.6.2 source code.zip | 2026-09-16 | 5.5 MB | |
| Totals: 3 Items | 10.9 MB | 1 | |
Source-only release
Skill Recorder 0.6.2 is published from commit b4010acd834881f64b19b32377e0423834b30600.
This release is source-only. No installers or portable binaries are attached. GitHub's generated archives contain the tagged repository source only.
Changes
- Fix Microsoft enterprise sign-in so it completes SSO first, then opens GitHub Copilot app authorization in the same default browser, without a device code. Keep the same browser profile to reuse the authenticated GitHub session.
- Make both browser handoffs explicit: after SSO reaches the Microsoft enterprise page, close that tab, return to Skill Recorder and choose Authorize Copilot. After authorization, return to Skill Recorder even if GitHub's completion page refers to a terminal.
- Pin the bundled GitHub Copilot CLI to reviewed version 1.0.78, which supports browser OAuth for desktop subprocesses without a terminal. The previously bundled 1.0.71 does not support
--web-flow. - Run sign-in with
--no-auto-update login --web-flowso the user's cached auto-updated CLI cannot change this behavior. Personal sign-in also uses browser authorization without device codes. - Improve error guidance when the CLI does not support browser authorization or cannot save credentials securely. CLI output, tokens and authorization URLs are not exposed in app diagnostics.
- Preserve cancellation, fresh authentication verification and the once-only retry of an interrupted analysis.
Compatibility and validation
- The Microsoft device/account hint remains a routing hint, not authorization or proof of employment. The app does not copy browser cookies or sign the user in on their behalf.
- Re-read the exact CLI 1.0.78 license and redistribution terms; unmodified application bundling remains permitted. Updated the reviewed compliance policy. No SDK upgrade or new dependency install scripts.
- Local validation covered 237 passing tests, the application build, eval typecheck, lockfile portability, the 285-package license inventory and an isolated SDK/CLI compatibility probe.
- The new bundled-CLI regression test validates browser OAuth, PKCE and the loopback callback using a fake browser that denies authorization. It does not contact GitHub, authorize an account or access the user's credentials.
- Windows x64 and ARM64 and macOS and Ubuntu passed on the exact release commit, covering commit-pinned source installation, tests, builds, compliance and applicable packaging/architecture checks.
- Manual validation limitation: the complete interactive SSO and final authorization with the reporting user's actual Microsoft account have not been verified. Hosted-runner and simulated-browser checks do not prove that the end-to-end login succeeds in that user's browser profile or enterprise environment.
- Re-run the pinned source installer below to update. Locally assembled source builds are not redistributable release binaries. Installation and authentication remain subject to enterprise and operating-system policies.
Installer script SHA-256
These hashes were calculated from the exact release commit's Git blobs. The installer scripts are unchanged from 0.6.1.
:::text
7678f7f8d38d600f2fb732f95afeadc8aa4f9b9802989d26e2f932970795770c install.ps1
bd8b5200a2c140c5a5ed9299d565ac72cee5420181774008977eaf75f210db1d install.sh
Commit-pinned installation
Windows 11 x64 or ARM64
:::powershell
$commit="b4010acd834881f64b19b32377e0423834b30600"; $env:SKILL_RECORDER_COMMIT=$commit; irm "https://raw.githubusercontent.com/microsoft/skill-recorder/$commit/install.ps1" | iex
macOS or Ubuntu
:::sh
commit="b4010acd834881f64b19b32377e0423834b30600"; curl -fsSL "https://raw.githubusercontent.com/microsoft/skill-recorder/$commit/install.sh" | SKILL_RECORDER_COMMIT="$commit" bash
For script inspection and hash verification before execution, use the inspect-first instructions.
What's changed
- Fix Microsoft SSO browser authorization without device codes (#85).
- Release Skill Recorder v0.6.2 (#86).
Full changelog: https://github.com/microsoft/skill-recorder/compare/v0.6.1...v0.6.2