/aqe-fleet-status
Display comprehensive fleet health, agent status, and coordination metrics
> /plugin marketplace add proffesor-for-testing/agentic-qe > /plugin install agentic-qe-fleet@agentic-qe
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/aqe-fleet-status
Context preview
What this command does when you run it.
Display comprehensive fleet health, agent status, and coordination metrics
Command definition
aqe-fleet-status.mdname: aqe-fleet-status
description: Display comprehensive fleet health, agent status, and coordination metrics
AQE Fleet Status
Display comprehensive fleet health, agent status, and coordination metrics.
Usage
aqe status [options]
# or
/aqe-fleet-status [options]
Options
| Option | Type | Default | Description | |--------|------|---------|-------------| | `--detailed` | boolean | `false` | Show detailed agent metrics | | `--json` | boolean | `false` | Output as JSON | | `--watch` | boolean | `false` | Continuous monitoring mode | | `--refresh` | number | `5` | Refresh interval in seconds (watch mode) |
Examples
Basic Status Check
aqe status
Displays basic fleet health and agent status.
Detailed Metrics
aqe status --detailed
Shows comprehensive metrics for all agents and coordination.
JSON Output for Automation
aqe status --json
Outputs status in JSON format for CI/CD integration.
Continuous Monitoring
aqe status --watch --refresh 3
Monitors fleet status continuously with 3-second refresh.
Integration with Claude Code
Fleet Status Check
// Use Claude Code's Task tool for status monitoring
Task("Monitor fleet health", `
Check AQE fleet status and health:
- Verify all agents are active
- Check recent activity
- Validate coordination status
- Report any issues or degradation
If issues found, coordinate with fleet manager for recovery.
`, "qe-quality-gate")Automated Health Check Workflow
// Periodic fleet health validation
[Single Message]:
Task("Check fleet status", "Verify all agents healthy", "qe-quality-gate")
Task("Validate coordination", "Ensure agents communicating properly", "qe-quality-gate")
TodoWrite({ todos: [
{content: "Check agent health", status: "in_progress", activeForm: "Checking health"},
{content: "Verify coordination", status: "in_progress", activeForm: "Verifying coordination"},
{content: "Generate health report", status: "pending", activeForm: "Generating report"}
]})Agent Coordination
Primary Agent
- **qe-quality-gate**: Monitors fleet health and coordination
Fleet Components
- **qe-test-generator**: Test generation agent
- **qe-test-executor**: Test execution agent
- **qe-coverage-analyzer**: Coverage analysis agent
- **qe-quality-gate**: Quality validation agent
- **qe-performance-tester**: Performance testing agent
- **qe-security-scanner**: Security scanning agent
Memory Operations
Input Memory Keys
# Retrieve fleet ID
npx claude-flow@alpha memory retrieve --key "aqe/fleet/id"
# Retrieve fleet status
npx claude-flow@alpha memory retrieve --key "aqe/fleet/status"
# Retrieve agent metrics
npx claude-flow@alpha memory retrieve --key "aqe/agents/*/metrics"
# Retrieve recent activity
npx claude-flow@alpha memory retrieve --key "aqe/activity/recent"
Expected Outputs
Basic Status Output
๐ค AQE Fleet Status
===================
Fleet ID: aqe-fleet-1727683200
Status: โ
Active
Uptime: 3 days, 4 hours
Agents:
โ qe-test-generator Active
โ qe-test-executor Active
โ qe-coverage-analyzer Active
โ qe-quality-gate Active
โ qe-performance-tester Active
โ qe-security-scanner Active
Recent Activity:
- 10:20:00: Report generated (qe-quality-gate)
- 10:15:00: Suite optimized (qe-coverage-analyzer)
- 10:10:00: Coverage analyzed (qe-coverage-analyzer)
- 10:05:00: Tests executed (qe-test-executor)
- 10:00:00: Tests generated (qe-test-generator)
Use 'aqe status --detailed' for more information
Detailed Status Output
๐ค AQE Fleet Status (Detailed)
===============================
Fleet Information:
ID: aqe-fleet-1727683200
Status: โ
Active
Uptime: 3 days, 4 hours
Topology: mesh
Coordination: Claude Flow
Agent Status:
๐ qe-test-generator
Status: Active
Tasks Completed: 45
Success Rate: 97.8%
Avg Response Time: 8.3s
Last Activity: 10:00:00 (20m ago)
Memory Usage: 256MB
๐งช qe-test-executor
Status: Active
Tests Executed: 1,840
Pass Rate: 98.3%
Avg Execution Time: 12.3s
Last Activity: 10:05:00 (15m ago)
Memory Usage: 512MB
๐ qe-coverage-analyzer
Status: Active
Analyses Completed: 32
Avg Coverage: 93.5%
Avg Analysis Time: 3.2s
Last Activity: 10:10:00 (10m ago)
Memory Usage: 256MB
๐ฏ qe-quality-gate
Status: Active
Quality Checks: 28
Pass Rate: 100%
Reports Generated: 15
Last Activity: 10:20:00 (now)
Memory Usage: 128MB
โก qe-performance-tester
Status: Idle
Benchmarks Run: 8
Avg P95 Latency: 45ms
Last Activity: 09:30:00 (50m ago)
Memory Usage: 64MB
๐ qe-security-scanner
Status: Idle
Scans Completed: 5
Vulnerabilities Found: 0
Last Activity: 08:00:00 (2h ago)
Memory Usage: 64MB
Coordination Metrics:
Active Tasks: 0
Queued Tasks: 0
Total Messages: 1,247
Avg Message Latency: 12ms
Memory Sync: โ
Healthy
Performance Metrics:
CPU Usage: 23%
Memory Usage: 1.2GB / 16GB (7.5%)
Disk I/O: Low
Network: Healthy
Health: โ
All systems operational
JSON Status Output
{
"fleet": {
"id": "aqe-fleet-1727683200",
"status": "active",
"uptime": 270000,
"topology": "mesh",
"coordination": "claude-flow"
},
"agents": [
{
"name": "qe-test-generator",
"status": "active",
"metrics": {
"tasksCompleted": 45,
"successRate": 97.8,
"avgResponseTime": 8.3,
"lastActivity": "2025-09-30T10:00:00Z",
"memoryUsage": 268435456
}
},
{
"name": "qe-test-executor",
"status": "active",
"metrics": {
"testsExecuted": 1840,
"passRate": 98.3,
"avgExecutionTime": 12.3,
"lastActivity": "2025-09-30T10:05:00Z",
"memoryUsage": 536870912
}
},
{
"name": "qe-coverage-analyzer",
"status": "active",
"mRead more
name: aqe-fleet-status description: Display comprehensive fleet health, agent status, and coordination metrics
AQE Fleet Status
Display comprehensive fleet health, agent status, and coordination metrics.
Usage
aqe status [options] # or /aqe-fleet-status [options]
Options
| Option | Type | Default | Description | |--------|------|---------|-------------| | `--detailed` | boolean | `false` | Show detailed agent metrics | | `--json` | boolean | `false` | Output as JSON | | `--watch` | boolean | `false` | Continuous monitoring mode | | `--refresh` | number | `5` | Refresh interval in seconds (watch mode) |
Examples
Basic Status Check
aqe status
Displays basic fleet health and agent status.
Detailed Metrics
aqe status --detailed
Shows comprehensive metrics for all agents and coordination.
JSON Output for Automation
aqe status --json
Outputs status in JSON format for CI/CD integration.
Continuous Monitoring
aqe status --watch --refresh 3
Monitors fleet status continuously with 3-second refresh.
Integration with Claude Code
Fleet Status Check
// Use Claude Code's Task tool for status monitoring
Task("Monitor fleet health", `
Check AQE fleet status and health:
- Verify all agents are active
- Check recent activity
- Validate coordination status
- Report any issues or degradation
If issues found, coordinate with fleet manager for recovery.
`, "qe-quality-gate")Automated Health Check Workflow
// Periodic fleet health validation
[Single Message]:
Task("Check fleet status", "Verify all agents healthy", "qe-quality-gate")
Task("Validate coordination", "Ensure agents communicating properly", "qe-quality-gate")
TodoWrite({ todos: [
{content: "Check agent health", status: "in_progress", activeForm: "Checking health"},
{content: "Verify coordination", status: "in_progress", activeForm: "Verifying coordination"},
{content: "Generate health report", status: "pending", activeForm: "Generating report"}
]})Agent Coordination
Primary Agent
- **qe-quality-gate**: Monitors fleet health and coordination
Fleet Components
- **qe-test-generator**: Test generation agent
- **qe-test-executor**: Test execution agent
- **qe-coverage-analyzer**: Coverage analysis agent
- **qe-quality-gate**: Quality validation agent
- **qe-performance-tester**: Performance testing agent
- **qe-security-scanner**: Security scanning agent
Memory Operations
Input Memory Keys
# Retrieve fleet ID npx claude-flow@alpha memory retrieve --key "aqe/fleet/id" # Retrieve fleet status npx claude-flow@alpha memory retrieve --key "aqe/fleet/status" # Retrieve agent metrics npx claude-flow@alpha memory retrieve --key "aqe/agents/*/metrics" # Retrieve recent activity npx claude-flow@alpha memory retrieve --key "aqe/activity/recent"
Expected Outputs
Basic Status Output
๐ค AQE Fleet Status =================== Fleet ID: aqe-fleet-1727683200 Status: โ Active Uptime: 3 days, 4 hours Agents: โ qe-test-generator Active โ qe-test-executor Active โ qe-coverage-analyzer Active โ qe-quality-gate Active โ qe-performance-tester Active โ qe-security-scanner Active Recent Activity: - 10:20:00: Report generated (qe-quality-gate) - 10:15:00: Suite optimized (qe-coverage-analyzer) - 10:10:00: Coverage analyzed (qe-coverage-analyzer) - 10:05:00: Tests executed (qe-test-executor) - 10:00:00: Tests generated (qe-test-generator) Use 'aqe status --detailed' for more information
Detailed Status Output
๐ค AQE Fleet Status (Detailed) =============================== Fleet Information: ID: aqe-fleet-1727683200 Status: โ Active Uptime: 3 days, 4 hours Topology: mesh Coordination: Claude Flow Agent Status: ๐ qe-test-generator Status: Active Tasks Completed: 45 Success Rate: 97.8% Avg Response Time: 8.3s Last Activity: 10:00:00 (20m ago) Memory Usage: 256MB ๐งช qe-test-executor Status: Active Tests Executed: 1,840 Pass Rate: 98.3% Avg Execution Time: 12.3s Last Activity: 10:05:00 (15m ago) Memory Usage: 512MB ๐ qe-coverage-analyzer Status: Active Analyses Completed: 32 Avg Coverage: 93.5% Avg Analysis Time: 3.2s Last Activity: 10:10:00 (10m ago) Memory Usage: 256MB ๐ฏ qe-quality-gate Status: Active Quality Checks: 28 Pass Rate: 100% Reports Generated: 15 Last Activity: 10:20:00 (now) Memory Usage: 128MB โก qe-performance-tester Status: Idle Benchmarks Run: 8 Avg P95 Latency: 45ms Last Activity: 09:30:00 (50m ago) Memory Usage: 64MB ๐ qe-security-scanner Status: Idle Scans Completed: 5 Vulnerabilities Found: 0 Last Activity: 08:00:00 (2h ago) Memory Usage: 64MB Coordination Metrics: Active Tasks: 0 Queued Tasks: 0 Total Messages: 1,247 Avg Message Latency: 12ms Memory Sync: โ Healthy Performance Metrics: CPU Usage: 23% Memory Usage: 1.2GB / 16GB (7.5%) Disk I/O: Low Network: Healthy Health: โ All systems operational
JSON Status Output
{
"fleet": {
"id": "aqe-fleet-1727683200",
"status": "active",
"uptime": 270000,
"topology": "mesh",
"coordination": "claude-flow"
},
"agents": [
{
"name": "qe-test-generator",
"status": "active",
"metrics": {
"tasksCompleted": 45,
"successRate": 97.8,
"avgResponseTime": 8.3,
"lastActivity": "2025-09-30T10:00:00Z",
"memoryUsage": 268435456
}
},
{
"name": "qe-test-executor",
"status": "active",
"metrics": {
"testsExecuted": 1840,
"passRate": 98.3,
"avgExecutionTime": 12.3,
"lastActivity": "2025-09-30T10:05:00Z",
"memoryUsage": 536870912
}
},
{
"name": "qe-coverage-analyzer",
"status": "active",
"mAI-powered quality engineering agents that generate tests, find coverage gaps, detect flaky tests, and learn your codebase patterns โ across 11 coding agent platforms.
Repo: proffesor-for-testing/agentic-qe
Other commands on agentic-qe.
- /agent-capabilities
Capability matrix for all agent types
Open command - /agent-coordination
Coordination patterns for multi-agent collaboration.
Open command - /agent-spawning
Guide to spawning agents with Claude Code's Task tool.
Open command - /agent-types
Complete guide to all 87 available agent types in Claude Flow V3
Open command - /health
Show agent health and metrics
Open command - /list
List all active agents
Open command

