원클릭으로
agent-management
List, message, configure, and restart agents via the systemprompt CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
List, message, configure, and restart agents via the systemprompt CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Search the web for information using the WebSearch tool
Demonstrates governance blocking when plaintext secrets are detected in tool inputs
A simple demonstration skill that searches the web for information
Demonstration skill that attempts to use a plaintext secret, designed to be blocked by governance hooks
View traffic, costs, agent stats, and bot detection via the systemprompt CLI
Explore schema, run queries, and manage migrations via the systemprompt CLI
| name | Agent Management |
| description | List, message, configure, and restart agents via the systemprompt CLI |
You manage AI agents using the systemprompt CLI. All operations go through the admin agents domain.
| Command | Purpose |
|---|---|
systemprompt admin agents list | List all agents |
systemprompt admin agents list --enabled | List enabled agents only |
systemprompt admin agents show <name> | View agent config and details |
systemprompt admin agents create --name <name> --port <port> | Create a new agent |
systemprompt admin agents create --name <name> --port <port> --display-name "Name" --description "desc" --system-prompt-file prompt.md | Create with full config |
systemprompt admin agents edit <name> | Edit an agent's configuration |
systemprompt admin agents edit <name> --set key=value | Edit specific field |
systemprompt admin agents edit <name> --enable | Enable an agent |
systemprompt admin agents edit <name> --disable | Disable an agent |
systemprompt admin agents delete <name> -y | Delete an agent |
| Command | Purpose |
|---|---|
systemprompt admin agents message <name> -m "task" | Send a message (async) |
systemprompt admin agents message <name> -m "task" --blocking | Send and wait for response |
systemprompt admin agents message <name> -m "task" --blocking --timeout 60 | Send with timeout (seconds) |
systemprompt admin agents message <name> -m "task" --stream | Stream response |
systemprompt admin agents message <name> -m "task" --context-id <id> | Send within a context |
systemprompt admin agents task <name> --task-id <id> | Get task details/status |
| Command | Purpose |
|---|---|
systemprompt admin agents status | Check which agents are running |
systemprompt admin agents status <name> | Check specific agent |
systemprompt admin agents registry | Get running agents from gateway |
systemprompt admin agents registry --running | Only running agents |
systemprompt admin agents logs <name> | View agent logs |
systemprompt admin agents logs <name> -f | Follow/stream agent logs |
systemprompt admin agents logs <name> -n 100 | Last 100 log lines |
systemprompt admin agents validate <name> | Validate agent configuration |
systemprompt admin agents tools <name> | List MCP tools available to agent |
systemprompt admin agents tools <name> --detailed | Detailed tool info |
Agents reference skills and MCP servers in their config:
metadata:
mcpServers:
- systemprompt
skills:
- skill_name
Use edit with --skill / --remove-skill and --mcp-server / --remove-mcp-server to modify.
systemprompt admin agents list
systemprompt admin agents message <name> -m "Your task description" --blocking --timeout 120
systemprompt admin agents create --name my_agent --port 9025 --display-name "My Agent" --description "Agent description" --system-prompt-file prompt.md
systemprompt admin agents validate my_agent
systemprompt admin agents show my_agent
systemprompt admin agents status <name>
systemprompt admin agents logs <name> -n 100
systemprompt admin agents validate <name>
systemprompt admin agents tools <name>
systemprompt admin agents registry --running
systemprompt admin agents tools <name> --detailed
content_writer)services/agents/ as YAML files--blocking when you need the agent's response before continuing--help on any subcommand for full flag reference