v2.1.3 - Installer NativeCommandError fix across the per-agent adapters
Patch release: finishes the installer stderr fix started in v2.1.2. Urgent.
Fixed
- The per-agent installers had the same
NativeCommandErrorbug as the shared one.agents/claude/install.ps1andagents/codex/install.ps1clone the node-building skills (and codex registers its MCP) with& git clone ... 2>&1 | Out-Null/& codex mcp add ... 2>&1 | Out-Nullunder$ErrorActionPreference = "Stop", so a harmless native stderr line could abort the adapter install (v2.1.2 fixed only the shared installer). Both now route those calls through theNativehelper. The gemini / qwen adapters make no native calls and were unaffected. - Installer catches a partial template clone instead of reporting success.
shared/install_shared.ps1now gates the "cloned + index built" message on the exit codes of all threegitsteps (clone / sparse-checkout / checkout), not just aTest-Path index.jsoncheck, so a partial clone falls through to the "template clone incomplete" warning.