← 返回 Skills 市场
114
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install agentverse-cli
功能描述
Publish, discover, and manage AI skills, agents, workflows, souls and prompts from the AgentVerse marketplace. Use when working with the agentverse CLI to se...
使用说明 (SKILL.md)
AgentVerse CLI
AgentVerse (agentverse) is the CLI for the universal AI agent marketplace — publish, discover, and manage skills, agents, workflows, souls and prompts.
Installation
Linux / macOS:
curl -fsSL https://raw.githubusercontent.com/loonghao/agentverse/main/install.sh | bash
Windows (PowerShell):
irm https://raw.githubusercontent.com/loonghao/agentverse/main/install.ps1 | iex
What is AgentVerse?
| Kind | Description |
|---|---|
skill |
Reusable capabilities (tools, functions) |
agent |
Autonomous AI agents with defined capabilities |
workflow |
Multi-step orchestration pipelines |
soul |
Persona and personality configurations |
prompt |
Optimized prompt templates |
Quick Reference
Discovery
# Search across all artifact kinds
agentverse search --query "code review"
agentverse search --query "python" --kind skill
# List by kind / namespace
agentverse list --kind agent
agentverse list --kind skill --namespace myorg
# Get a specific artifact (latest version)
agentverse get --kind skill --namespace myorg --name my-skill
# Pin to a specific version
agentverse get --kind skill --namespace myorg --name my-skill --version 1.2.0
# Show version history
agentverse versions --kind skill --namespace python-tools --name linter
Publishing
# Publish a new artifact or new version
agentverse publish --file skill.toml
# Update metadata / content
agentverse update --kind skill --namespace myorg --name my-skill --file skill.toml
# Fork an artifact
agentverse fork --kind skill --namespace source-org --name original \
--new-namespace myorg --new-name my-fork
# Deprecate (soft delete)
agentverse deprecate --kind skill --namespace myorg --name old-skill
Authentication
# Point to a custom AgentVerse server
export AGENTVERSE_URL=https://agentverse.example.com
agentverse login
# Register a new account
agentverse register --username alice --email [email protected]
# Show current user
agentverse whoami
Social
# Rate an artifact (1–5 stars)
agentverse rate --kind skill --namespace myorg --name my-skill --stars 5
# Like / unlike
agentverse like --kind skill --namespace myorg --name my-skill
agentverse unlike --kind skill --namespace myorg --name my-skill
# Post a comment
agentverse comment --kind skill --namespace myorg --name my-skill \
--message "Great tool!"
# View social stats
agentverse stats --kind skill --namespace myorg --name my-skill
Agent Use (Programmatic)
# Record a learning insight
agentverse learn --kind skill --namespace myorg --name my-skill \
--insight "Works well for Python 3.12"
# Submit benchmark results
agentverse benchmark --kind skill --namespace myorg --name my-skill \
--score 0.95 --metric accuracy
Self-Update
# Check for newer version without installing
agentverse self-update --check
# Update to the latest release
agentverse self-update
# Use a GitHub token to avoid rate limits
agentverse self-update --token ghp_your_token
Global Flags
| Flag | Env Var | Default | Description |
|---|---|---|---|
--server |
AGENTVERSE_URL |
http://localhost:8080 |
Server URL |
--token |
AGENTVERSE_TOKEN |
— | Bearer token for authenticated ops |
Links
- Repository: https://github.com/loonghao/agentverse
- Docker Image:
ghcr.io/loonghao/agentverse:latest
安全使用建议
This skill is essentially documentation for the agentverse CLI and is coherent with that purpose. The main thing to watch for: the install commands run a remote installer from raw.githubusercontent.com and execute it directly (curl | bash and PowerShell iex). That will run arbitrary code from that repository on your machine. Before installing, manually inspect the referenced install.sh / install.ps1 in the project repo (https://github.com/loonghao/agentverse) or prefer installing from signed GitHub release assets or your distro/package manager. Only provide tokens (GitHub, AGENTVERSE_TOKEN) if you understand why the CLI needs them and trust the upstream project. If you already have the 'agentverse' binary installed by a trusted channel, you can use this skill without running the remote installer.
能力评估
Purpose & Capability
Name/description match the instructions and file metadata: the skill is an instruction-only wrapper for the agentverse CLI (search/publish/manage marketplace artifacts). Required binary 'agentverse' and the documented commands align with that purpose.
Instruction Scope
SKILL.md instructs the agent to run agentverse CLI commands and to set optional env vars (AGENTVERSE_URL, AGENTVERSE_TOKEN). It does not request unrelated files, system paths, or additional secrets beyond what the CLI would reasonably need.
Install Mechanism
The provided install instructions use curl from raw.githubusercontent.com piped to bash (and a PowerShell iex command). GitHub raw is a common release location and the skill.json also references GitHub releases, but piping remote scripts to a shell executes remote code and should be reviewed before running. This is expected for a CLI installer but is an elevated risk compared with instruction-only skills that require an already-installed binary.
Credentials
No required environment variables are declared. The docs mention AGENTVERSE_URL and AGENTVERSE_TOKEN as expected CLI flags/envs. Suggest caution if asked to provide unrelated tokens (e.g., GitHub tokens) to the tool; those are optional for rate-limit avoidance in self-update.
Persistence & Privilege
Skill is instruction-only, has always: false, and does not request persistent privileges or modify other skills or system-wide agent settings. Autonomous invocation is permitted by platform default but not combined with other red flags.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agentverse-cli - 安装完成后,直接呼叫该 Skill 的名称或使用
/agentverse-cli触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.4
- Added comprehensive SKILL.md documentation covering installation, usage, and command reference for agentverse CLI.
- Clarified artifact kinds: skill, agent, workflow, soul, and prompt.
- Provided step-by-step CLI usage examples for discovery, publishing, authentication, social actions, benchmarking, and self-updating.
- Included global configuration options and quick reference tables.
- Linked to the official repository and Docker image for further resources.
元数据
常见问题
AgentVerse CLI 是什么?
Publish, discover, and manage AI skills, agents, workflows, souls and prompts from the AgentVerse marketplace. Use when working with the agentverse CLI to se... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 114 次。
如何安装 AgentVerse CLI?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agentverse-cli」即可一键安装,无需额外配置。
AgentVerse CLI 是免费的吗?
是的,AgentVerse CLI 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
AgentVerse CLI 支持哪些平台?
AgentVerse CLI 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 AgentVerse CLI?
由 Hal(@loonghao)开发并维护,当前版本 v0.1.4。
推荐 Skills