agentverse-managelisted
Install: claude install-skill fetchai/agentverse-skills
# Agentverse Manage
## Overview
Manage your hosted agents on Agentverse. List all agents, start/stop them, read their logs, and delete agents you no longer need.
## When to Use
- User asks "list my agents" or "what agents do I have"
- User asks to "start/stop/restart" an agent
- User asks to "show agent logs" or "what is my agent doing"
- User asks to "delete" or "remove" an agent
- You need to check agent status after deploying
## Prerequisites
- `AGENTVERSE_API_KEY` environment variable set
- Python 3.8+ with `requests`
## Quick Steps
### List all agents
```bash
python3 scripts/manage_agents.py list
```
### Start an agent
```bash
python3 scripts/manage_agents.py start --agent agent1q...
```
### Stop an agent
```bash
python3 scripts/manage_agents.py stop --agent agent1q...
```
### View logs
```bash
python3 scripts/manage_agents.py logs --agent agent1q...
```
### Delete an agent
```bash
python3 scripts/manage_agents.py delete --agent agent1q...
```
## Output Examples
### List
```json
{
"status": "success",
"total": 3,
"agents": [
{
"name": "my-image-relay",
"address": "agent1q...",
"running": true,
"compiled": true,
"domain": "",
"wallet_address": "fetch1...",
"created": "2026-04-20T10:00:00Z",
"updated": "2026-04-20T15:30:00Z"
}
]
}
```
### Logs
```json
{
"status": "success",
"agent": "agent1q...",
"total_entries": 15,
"showing": 3,
"logs": [
{"timestamp": "2026-04-20T15:30:00Z", "me