claudegoodies
Command

status

From ruvnet

Show detailed status of an agent

Install

/status

Facts

Repository
ruvnet/ruflo
Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this command runs.

# Agent Status Command

Display comprehensive status information for a specific agent including metrics, configuration, and activity.

## Usage

```bash
npx claude-flow agent status <agent-id>
npx claude-flow agent status --id <agent-id>
```

## Options

| Option | Description | Default |
|--------|-------------|---------|
| `--id` | Agent ID (alternative to positional arg) | Required |
| `--format` | Output format (table, json) | table |

## Examples

```bash
# Get status by ID
npx claude-flow agent status coder-lx7m9k2

# Using --id flag
npx claude-flow agent status --id researcher-abc123

# JSON output
npx claude-flow agent status coder-lx7m9k2 --format json
```

## Output

```
+--------------------------------------------------+
|              Agent: coder-lx7m9k2                |
+--------------------------------------------------+
| Type: coder                                      |
| Status: active                                   |
| Created: 1/8/2026, 10:30:15 AM                   |
| Last Activity: 1/8/2026, 10:45:23 AM             |
+--------------------------------------------------+

Metrics
+-------------------------+----------+
| Metric                  |    Value |
+-------------------------+----------+
| Tasks Completed         |       12 |
| Tasks In Progress       |        1 |
| Tasks Failed            |        0 |
| Avg Execution Time      |  245.5ms |
| Up
View full source on GitHub →

Other slash commands