用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Tyler-R-Kendrick/OpenSesame --skill opensesame-clis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | opensesame-clis |
| description | Install, configure, initialize, and use OpenSesame host and client CLIs |
Ports: Host API 8787, Identity API 8788, Daemon 18790.
# Host CLI + daemon
cargo build -p opensesame-cli -p opensesame-daemon
./target/debug/opensesame daemon install # copies binary to ~/.local/bin when present
# Client / identity CLI
pnpm install
pnpm --filter @opensesame/cli build
export OPENSESAME_SERVER=http://127.0.0.1:8787 # host CLI
export OPENSESAME_DAEMON_URL=http://127.0.0.1:18790
export OPENSESAME_ISSUER=http://127.0.0.1:8788 # client CLI
export OPENSESAME_HOST_API=http://127.0.0.1:8787
export OPENSESAME_ENV=development # or set OPENSESAME_CLAIM_PEPPER
./target/debug/opensesame daemon start
./target/debug/opensesame daemon status
pnpm --filter @opensesame/control-plane start # :8788
./target/debug/opensesame-gateway --listen 127.0.0.1:8787
# Host
./target/debug/opensesame login --flow device --no-browser --server http://127.0.0.1:8787
./target/debug/opensesame whoami --server http://127.0.0.1:8787
./target/debug/opensesame daemon logs
./target/debug/opensesame daemon stop
./target/debug/opensesame dev check --schema fixtures/demo.env.schema
./target/debug/opensesame dev resolve --mode agent --schema fixtures/demo.env.schema
./target/debug/opensesame-toolbar approve-device --user-code ABCD-EFGH
./target/debug/opensesame-toolbar approve-claim --claim-id clm_…
# Client
pnpm --filter @opensesame/cli start -- login --device --issuer http://127.0.0.1:8788
pnpm --filter @opensesame/cli start -- host health --host http://127.0.0.1:8787
pnpm --filter @opensesame/cli start -- host discover --host http://127.0.0.1:8787