Desktop install
kc after the platform-specific setup succeeds.This website tracks the current public release metadata and the live installer status. GitHub Release assets may remain the actual binary host until a different delivery path is explicitly published, and install/PATH success still stays separate from release trust.
kc after the platform-specific setup succeeds.command -v kckc --helpGet-Command kckc --helpIf release metadata is unavailable in your browser session, Kiwi falls back to the published GitHub release links until the website metadata refreshes.
Use all downloads for the full public asset list. The downloads page also exposes checksums, the release manifest, and the standalone CLI bundles.
Fallback only. The desktop installer remains primary. Use this path only if the Windows installer flow is blocked and only after the Windows CLI bundle is published on this site.
$meta = Invoke-RestMethod "https://kiwi-control.kiwi-ai.in/data/latest-release.json"; if (-not $meta.publicReleaseReady -or -not $meta.artifacts.cliWindows.latestUrl) { throw "Windows CLI bundle is not published yet. Use the desktop installer path for now." }; $zip = Join-Path $env:TEMP "kiwi-control-cli.zip"; $dir = Join-Path $env:TEMP "kiwi-control-cli"; Invoke-WebRequest $meta.artifacts.cliWindows.latestUrl -OutFile $zip; Remove-Item -Recurse -Force $dir -ErrorAction SilentlyContinue; Expand-Archive $zip -DestinationPath $dir -Force; & (Join-Path $dir "install.ps1"); Get-Command kc; kc --help