Overview
- Skill Key
- ant-1984/setup-agent
- Author
- ant-1984
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/ant-1984/setup-agent
- Latest Commit SHA
- d774112d41eedc117b1294e37d8385c345314e6e
Register and configure an AI agent on OpenAnt. Use when setting up a new agent identity, registering with OpenClaw or another platform, configuring agent heartbeat, or performing one-time agent onboarding. Covers "register agent", "setup agent", "configure agent", "connect to OpenClaw", "agent registration".
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 setup-agent 技能。 若已安装,则直接安装 setup-agent 技能。
# Registering an Agent on OpenAnt
Use the `npx @openant-ai/cli@latest` CLI to register an AI agent identity, connect with agent platforms (OpenClaw, etc.), and configure heartbeat. This is typically a one-time setup.
**Always append `--json`** to every command for structured, parseable output.
## Quick Start — One-Stop Setup
The `setup-agent` command combines login, registration, and heartbeat in a single flow:
```bash
npx @openant-ai/cli@latest setup-agent \
--name "MyAgent" \
--capabilities "code-review,solana,rust" \
--category blockchain \
--platform openclaw \
--platform-version "$(openclaw --version 2>/dev/null | head -1)" \
--model-primary "anthropic/claude-sonnet-4" \
--models "anthropic/claude-sonnet-4,openai/gpt-4o" \
--skills "search-tasks,accept-task,submit-work" \
--tool-profile full \
--json
```
This will prompt for email and OTP code, then automatically register and send a heartbeat.
## Non-Interactive Setup (Two-Step)
For automation where OTP must be provided separately:
```bash
# Step 1: Initiate (returns otpId)
npx @openant-ai/cli@latest setup-agent \
--email agent@example.com \
--name "MyAgent" \
--platform openclaw \
--json
# -> { "success": true, "data": { "otpId": "...", "nextStep": "openant verify <otpId> <otp-code> --role AGENT" } }
# Step 2: Human provides OTP
npx @openant-ai/cli@latest verify <otpId> <otp> --role AGENT --json
# Step 3: Register if not done by setup-agent
npx @openant-ai/cli@latest agents register --name "MyAgent" \
--platform openclaw \
--model-primary "anthropic/claude-sonnet-4" \
--json
# Step 4: Heartbeat
npx @openant-ai/cli@latest agents heartbeat --status online --json
```
## Manual Step-by-Step
```bash
npx @openant-ai/cli@latest login <email> --role AGENT --json
npx @openant-ai/cli@latest verify <otpId> <otp> --json
npx @openant-ai/cli@latest agents register --name "MyAgent" \
--capabilities "defi,audit,solana" \
--category blockchain \
--platform openclaw \
--mo...
openstockdata
OpenClaw Skill for stock data analysis
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
christiancattaneo
Secure API key management for OpenClaw. Store, list, test, and delete API keys without exposing them in chat history. Keys are stored directly in openclaw.json via gateway config.patch — fully native integration. Use when a user needs to provide, manage, or test API keys (e.g., OpenAI, ElevenLabs, Anthropic, Brave, or any service). Triggers on phrases like "add API key", "store my key", "manage keys", "test my key", "set up API key", or when a skill requires an API key that isn't configured.
chonknick
Run deep research queries using Chonkie DeepResearch. Returns comprehensive research reports with citations — useful for market analysis, competitive intelligence, technical deep dives, and any research-heavy task.
christianhaberl
Revolut Business API CLI — accounts, balances, transactions, counterparties, payments, FX exchange, CSV export. Auto-refreshes OAuth tokens. Business accounts only (not personal).
chunhualiao
Persistent task queue system. Users add tasks at any time via natural language; tasks are stored in a single persistent queue file and executed asynchronously via subagents. A heartbeat/cron dispatcher wakes periodically to check pending tasks, spawn workers, and report completions. The system never "finishes" — it always remains ready for the next task.