| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-09-16 | 4.8 kB | |
| Skill Recorder v0.6.0 source code.tar.gz | 2026-09-16 | 5.4 MB | |
| Skill Recorder v0.6.0 source code.zip | 2026-09-16 | 5.5 MB | |
| Totals: 3 Items | 10.9 MB | 0 | |
Source-only release
Skill Recorder 0.6.0 is published from commit 34564484d0661cca9974148bd7a8f5783c29ce63.
This release is source-only. No installers or portable binaries are attached; GitHub's generated archives contain the tagged repository source only.
Highlights
- Adds an optional, session-scoped recorded terminal. Commands, working directories, exit status, timing, and output from that app-owned terminal can inform analysis and skill generation; existing external terminals are not monitored.
- Offers Microsoft Enterprise SSO or a personal GitHub account when Windows device/account metadata provides a Microsoft Entra tenant hint. This is a routing hint, not proof of employment. Without a hint, and on macOS/Linux, users retain standard GitHub sign-in without Microsoft-specific UI.
- Uses browser-based Copilot login without opening a lingering black terminal window. The Microsoft option opens enterprise SSO first, then asks the user to continue to Copilot authorization in the same browser profile.
- Automatically retries the interrupted signed-out analysis once after the CLI finishes login and a fresh SDK client verifies authentication. Cancellation and navigation prevent stale retries; skill/automation build and installation actions are not automatically replayed.
- Removes the legacy FFmpeg frame-extraction fallback.
- Includes the merged fast-uri 3.1.5 and js-yaml 4.3.1 dependency updates and preserves the GitHub Actions commit-SHA pins from main.
Security, compatibility, and licensing
- Keep passwords, tokens, and other confidential information out of recordings and recorded-terminal output. Analysis sends recording-derived content to GitHub Copilot; the existing recording privacy and redaction controls remain applicable.
- The Windows sign-in hint stays local and does not inspect browser cookies, Office credentials, or unrelated token caches. It is not used for authorization.
- Interactive Microsoft SSO and personal-account OAuth were not manually exercised during release preparation. Automated authentication, cancellation, and analysis-recovery coverage is included.
- The terminal additions use MIT-licensed xterm.js and node-pty components. The canonical npm registry lockfile and exact-version lifecycle-script allowlist remain enforced; no compliance checks or policy approvals were bypassed.
- Existing redistribution controls and notices for GitHub Copilot CLI, Electron/Chromium, Sharp/libvips, ONNX Runtime, Tesseract, and other bundled components remain enforced.
- Local release validation passed 225 tests, the application build, eval typecheck, lockfile portability, and license preparation under Node.js 24.19.0 and npm 11.17.0. The Windows ARM64 inventory resolved all 285 package licenses, with zero unresolved entries.
- The exact release commit passed the Windows x64, Windows ARM64, macOS, and Ubuntu workflows, including commit-pinned source-installation and applicable platform compliance/package checks.
- No data migration is required. Re-run the commit-pinned source installer below to update an existing source installation. Local source builds are not redistributable release binaries.
Installer script SHA-256
These hashes were calculated from the exact release commit's Git blobs.
:::text
13b5d14ff6ecd9d519a708fa2663e11b297231955c78781efb69bc4d2a2e8bb6 install.ps1
bd8b5200a2c140c5a5ed9299d565ac72cee5420181774008977eaf75f210db1d install.sh
Commit-pinned installation
Windows 11 x64 or ARM64
:::powershell
$commit="34564484d0661cca9974148bd7a8f5783c29ce63"; $env:SKILL_RECORDER_COMMIT=$commit; irm "https://raw.githubusercontent.com/microsoft/skill-recorder/$commit/install.ps1" | iex
macOS or Ubuntu
:::sh
commit="34564484d0661cca9974148bd7a8f5783c29ce63"; 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. Installation remains subject to local enterprise and operating-system policies.
What's changed
- Add session-scoped recorded terminal (#62)
- Update fast-uri (#45) and js-yaml (#59)
- Remove legacy FFmpeg frame fallback (#69)
- Pin GitHub Actions to full-length commit SHAs (#75)
- Improve Copilot sign-in routing and resume interrupted analysis (#80)
- Release 0.6.0 (#81)
Full changelog: https://github.com/microsoft/skill-recorder/compare/v0.5.0...v0.6.0