-
Notifications
You must be signed in to change notification settings - Fork 2
Command Status
Rick Hightower edited this page Feb 2, 2026
·
1 revision
name: agent-brain-status description: Show Agent Brain server status (port, documents, health) parameters:
- name: json description: Output in JSON format required: false default: false skills:
- using-agent-brain
Displays the current status of the Agent Brain server, including:
- Server health and connectivity
- Port and URL information
- Document count in the index
- Indexing status (idle, running, completed)
- Instance mode (project or shared)
Use this command to verify the server is running before performing searches.
/agent-brain-status [--json]
| Parameter | Required | Default | Description |
|---|---|---|---|
| json | No | false | Output in JSON format for scripting |
agent-brain statusagent-brain status --jsonAgent Brain Status
==================
Server: http://127.0.0.1:49321
Status: healthy
Mode: project
Project: my-project
Index:
Documents: 142
Status: idle
Last indexed: 2026-01-31 10:30:00
Health:
API: OK
Vector DB: OK
BM25 Index: OK
{
"server": {
"url": "http://127.0.0.1:49321",
"port": 49321,
"status": "healthy",
"mode": "project",
"project_id": "my-project"
},
"index": {
"document_count": 142,
"status": "idle",
"last_indexed": "2026-01-31T10:30:00Z"
},
"health": {
"api": "ok",
"vector_db": "ok",
"bm25_index": "ok"
}
}| Status | Meaning |
|---|---|
healthy |
Server running and responsive |
unhealthy |
Server running but issues detected |
not_running |
Server not started |
indexing |
Currently indexing documents |
idle |
Ready for queries |
Error: Agent Brain server is not running
To start the server:
agent-brain start --daemon
Resolution: Start the server:
agent-brain start --daemonError: Could not connect to server at http://127.0.0.1:8000
Connection refused
Resolution:
- Check if server is running:
ps aux | grep agent-brain - Start the server:
agent-brain start --daemon - Check if port is blocked by firewall
Warning: No runtime.json found
Using default URL: http://127.0.0.1:8000
Resolution: Initialize the project:
agent-brain init
agent-brain start --daemonStatus: unhealthy
Issues detected:
- Vector DB: connection failed
- BM25 Index: not initialized
Resolution:
- Check ChromaDB is accessible
- Re-index documents:
agent-brain index /path/to/docs - Restart server:
agent-brain stop && agent-brain start --daemon
Always check status before performing searches:
# Check server is ready
agent-brain status
# If healthy and documents indexed, proceed with search
agent-brain query "search term" --mode hybridUse JSON output for scripting and diagnostics:
# Check document count
agent-brain status --json | jq '.index.document_count'
# Check server port
agent-brain status --json | jq '.server.port'# Wait for server to be healthy
until agent-brain status --json | jq -e '.server.status == "healthy"'; do
sleep 1
done| Command | Description |
|---|---|
/agent-brain-start |
Start the server |
/agent-brain-stop |
Stop the server |
/agent-brain-list |
List all running instances |
- Design-Architecture-Overview
- Design-Query-Architecture
- Design-Storage-Architecture
- Design-Class-Diagrams
- GraphRAG-Guide
- Agent-Skill-Hybrid-Search-Guide
- Agent-Skill-Graph-Search-Guide
- Agent-Skill-Vector-Search-Guide
- Agent-Skill-BM25-Search-Guide
Search
Server
Setup
- Pluggable-Providers-Spec
- GraphRAG-Integration-Spec
- Agent-Brain-Plugin-Spec
- Multi-Instance-Architecture-Spec