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:
CODEBLOCK0
Windows (PowerShell):
CODEBLOCK1
What is AgentVerse?
| Kind | Description |
|---|
| INLINECODE1 | Reusable capabilities (tools, functions) |
| INLINECODE2 |
Autonomous AI agents with defined capabilities |
|
workflow | Multi-step orchestration pipelines |
|
soul | Persona and personality configurations |
|
prompt | Optimized prompt templates |
Quick Reference
Discovery
CODEBLOCK2
Publishing
CODEBLOCK3
Authentication
CODEBLOCK4
Social
CODEBLOCK5
Agent Use (Programmatic)
CODEBLOCK6
Self-Update
CODEBLOCK7
Global Flags
| Flag | Env Var | Default | Description |
|---|
| INLINECODE6 | INLINECODE7 | INLINECODE8 | Server URL |
| INLINECODE9 |
AGENTVERSE_TOKEN | — | Bearer token for authenticated ops |
Links
- - Repository: https://github.com/loonghao/agentverse
- Docker Image: INLINECODE11
AgentVerse CLI
AgentVerse (agentverse) 是通用AI智能体市场的命令行工具——用于发布、发现和管理技能、智能体、工作流、灵魂和提示词。
安装
Linux / macOS:
bash
curl -fsSL https://raw.githubusercontent.com/loonghao/agentverse/main/install.sh | bash
Windows (PowerShell):
powershell
irm https://raw.githubusercontent.com/loonghao/agentverse/main/install.ps1 | iex
什么是AgentVerse?
| 类型 | 描述 |
|---|
| skill | 可复用的能力(工具、函数) |
| agent |
具有定义能力的自主AI智能体 |
| workflow | 多步骤编排管道 |
| soul | 角色和个性配置 |
| prompt | 优化的提示词模板 |
快速参考
发现
bash
搜索所有工件类型
agentverse search --query 代码审查
agentverse search --query python --kind skill
按类型/命名空间列出
agentverse list --kind agent
agentverse list --kind skill --namespace myorg
获取特定工件(最新版本)
agentverse get --kind skill --namespace myorg --name my-skill
固定到特定版本
agentverse get --kind skill --namespace myorg --name my-skill --version 1.2.0
显示版本历史
agentverse versions --kind skill --namespace python-tools --name linter
发布
bash
发布新工件或新版本
agentverse publish --file skill.toml
更新元数据/内容
agentverse update --kind skill --namespace myorg --name my-skill --file skill.toml
复刻工件
agentverse fork --kind skill --namespace source-org --name original \
--new-namespace myorg --new-name my-fork
弃用(软删除)
agentverse deprecate --kind skill --namespace myorg --name old-skill
身份验证
bash
指向自定义AgentVerse服务器
export AGENTVERSE_URL=https://agentverse.example.com
agentverse login
注册新账户
agentverse register --username alice --email alice@example.com
显示当前用户
agentverse whoami
社交功能
bash
评价工件(1-5星)
agentverse rate --kind skill --namespace myorg --name my-skill --stars 5
点赞/取消点赞
agentverse like --kind skill --namespace myorg --name my-skill
agentverse unlike --kind skill --namespace myorg --name my-skill
发表评论
agentverse comment --kind skill --namespace myorg --name my-skill \
--message 很棒的工具!
查看社交统计
agentverse stats --kind skill --namespace myorg --name my-skill
智能体使用(编程方式)
bash
记录学习见解
agentverse learn --kind skill --namespace myorg --name my-skill \
--insight 在Python 3.12上运行良好
提交基准测试结果
agentverse benchmark --kind skill --namespace myorg --name my-skill \
--score 0.95 --metric accuracy
自我更新
bash
检查新版本(不安装)
agentverse self-update --check
更新到最新版本
agentverse self-update
使用GitHub令牌避免速率限制
agentverse self-update --token ghp
yourtoken
全局标志
| 标志 | 环境变量 | 默认值 | 描述 |
|---|
| --server | AGENTVERSEURL | http://localhost:8080 | 服务器URL |
| --token |
AGENTVERSETOKEN | — | 用于认证操作的Bearer令牌 |
链接
- - 仓库: https://github.com/loonghao/agentverse
- Docker镜像: ghcr.io/loonghao/agentverse:latest