Agent skill
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
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/agentuity-cli-auth-machine-setup
Metadata
Additional technical details for this skill
- tags
- mutating slow requires-auth uses-stdin
- command
- agentuity auth machine setup
SKILL.md
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 (
--org-idor default org)
Usage
bash
agentuity auth machine setup [options]
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
--file |
string | Yes | - | Path to the public key file (PEM format) |
Examples
Upload ECDSA P-256 public key from file:
bash
bunx @agentuity/cli auth machine setup --file ./public-key.pem
Upload public key from stdin:
bash
cat public-key.pem | bunx @agentuity/cli auth machine setup
Output
Returns JSON object:
json
{
"success": "boolean",
"orgId": "string"
}
| Field | Type | Description |
|---|---|---|
success |
boolean | Whether the setup succeeded |
orgId |
string | The organization ID |
Didn't find tool you were looking for?