observe-metrics
Installation
SKILL.md
Observe Metrics
Aggregate counters, gauges, and histograms from the observability namespace and flag anomalies.
When to use
When you need a snapshot of system health -- task completion rates, error rates, active agent counts, memory usage, and token consumption. Useful for monitoring swarm performance and detecting degradation.
Steps
- Retrieve metrics -- call
mcp__claude-flow__memory_search --namespace observability(ormemory_list) to fetch metric records for the specified period (default: 1 hour). Thememory_*tool family routes by namespace;agentdb_hierarchical-*does NOT, so usememory_*here. - Aggregate -- compute:
- Counters: sum totals (tasks_completed, errors, token_usage)
- Gauges: current values (active_agents, memory_usage_bytes)
- Histograms: p50, p95, p99 (task_duration_ms, span_duration_ms)
- Compute baselines -- call
mcp__claude-flow__agentdb_pattern-search(ReasoningBank-routed; don't pass anamespaceargument — pattern-* tools ignore it) to establish baseline values for each metric. - Flag anomalies -- mark metrics deviating >2 standard deviations from baseline with direction (above/below) and severity
- Store patterns -- two paths (per ruflo-cost-tracker ADR-0001 dual-path pattern):
- Pattern store (typed, recommended):
mcp__claude-flow__agentdb_pattern-storewithtype: 'metric-snapshot'. No namespace arg. - Plain store (namespace-routable):
mcp__claude-flow__memory_store --namespace observabilityfor the snapshot tied to a timestamp.
- Pattern store (typed, recommended):
- Report -- display: metric name, current value, baseline, deviation, trend (up/down/stable), anomaly flag; overall health score (green/yellow/red)
CLI alternative
npx @claude-flow/cli@latest memory search --query "system metrics for last hour" --namespace observability
Related skills
More from ruvnet/ruflo
agent-swarm
Agent skill for swarm - invoke with $agent-swarm
340agent-workflow
Agent skill for workflow - invoke with $agent-workflow
321agent-arch-system-design
Agent skill for arch-system-design - invoke with $agent-arch-system-design
317workflow-automation
>
312security-audit
>
307agent-architecture
Agent skill for architecture - invoke with $agent-architecture
295