Claude-skill-registry agentuity-cli-auth-machine-setup
Set up machine authentication by uploading a public key for self-hosted infrastructure. Requires authentication. Use for managing authentication credentials
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agentuity-cli-auth-machine-setup" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-auth-machine-setup && rm -rf "$T"
manifest:
skills/data/agentuity-cli-auth-machine-setup/SKILL.mdsource content
Auth Machine Setup
Set up machine authentication by uploading a public key for self-hosted infrastructure
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity auth machine setup [options]
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | Path to the public key file (PEM format) |
Examples
Upload ECDSA P-256 public key from file:
bunx @agentuity/cli auth machine setup --file ./public-key.pem
Upload public key from stdin:
cat public-key.pem | bunx @agentuity/cli auth machine setup
Output
Returns JSON object:
{ "success": "boolean", "orgId": "string" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether the setup succeeded |
| string | The organization ID |