返回 Skill 列表
extension
分类: 开发与工程无需 API Key

agentuity-cli-auth-machine-setup

通过上传公钥为自托管基础设施设置机器认证。需要认证。用于管理认证凭据

person作者: jakexiaohubgithub

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-id or default org)

Usage

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:

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 | |-------|------|-------------| | success | boolean | Whether the setup succeeded | | orgId | string | The organization ID |