https://github.com/zfdang/agent-passport-cli-public
Public release channel + docs for the kitepass CLI
https://github.com/zfdang/agent-passport-cli-public
Last synced: 9 days ago
JSON representation
Public release channel + docs for the kitepass CLI
- Host: GitHub
- URL: https://github.com/zfdang/agent-passport-cli-public
- Owner: zfdang
- Created: 2026-05-25T06:57:56.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-05-25T07:01:21.000Z (about 1 month ago)
- Last Synced: 2026-05-25T09:05:37.569Z (about 1 month ago)
- Language: HTML
- Size: 35.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kitepass CLI β public release channel
This repository is the **public distribution channel** for the
`kitepass` command-line tool. The CLI source code lives in the private
monorepo `zfdang/agent-passport-platform`; releases here mirror its
`cli/` directory.
- Pre-built binaries for Linux (x86_64, arm64) and macOS (x86_64, arm64)
are published to **[Releases](../../releases)**.
- The static site at is built from
[`webpages/`](./webpages/) via the
[Pages workflow](./.github/workflows/pages.yaml).
## Install
```sh
curl -fsSL https://cli.kitepass.xyz/install.sh | sh
```
β¦or fetch a specific tag:
```sh
KITEPASS_VERSION=cli-v0.1.0 sh -c "$(curl -fsSL https://cli.kitepass.xyz/install.sh)"
```
Manual install:
1. Pick the right archive from [Releases](../../releases) for your
platform β `kitepass-cli-linux-x86_64-.tar.gz`,
`kitepass-cli-macos-arm64-.tar.gz`, etc.
2. Verify the SHA-256 against the `*.sha256` sidecar.
3. Verify the Sigstore signature with `cosign verify-blob` (the
`.pem` certificate and `.sig` signature are uploaded alongside
each archive).
4. Extract and put the `kitepass` binary on your `PATH`.
## Reporting issues
Please file issues here. Internal source-level fixes happen in
`agent-passport-platform`; this repo's issue tracker is the canonical
user-facing surface.
## Verifying signatures (cosign)
```sh
cosign verify-blob \
--certificate kitepass-cli-linux-x86_64-cli-v0.1.0.tar.gz.pem \
--signature kitepass-cli-linux-x86_64-cli-v0.1.0.tar.gz.sig \
--certificate-identity-regexp 'github\.com/zfdang/agent-passport-platform' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
kitepass-cli-linux-x86_64-cli-v0.1.0.tar.gz
```