AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Anomaly Alert

skill-hoangsonww-claude-code-agent-monitor-anomaly-alert · by hoangsonww

>

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-hoangsonww-claude-code-agent-monitor-anomaly-alert

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-hoangsonww-claude-code-agent-monitor-anomaly-alert)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Anomaly Alert? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Anomaly Alert

Detect anomalous sessions in Claude Code Agent Monitor data.

Input

The user provides: $ARGUMENTS

This may be:

  • "all" or empty (default: check all anomaly types)
  • "cost" for cost anomalies only
  • "duration" for duration anomalies only
  • "errors" for error rate anomalies only
  • A sensitivity level: "strict" (1σ), "normal" (2σ), "relaxed" (3σ)

Procedure

  1. Fetch baseline data from http://localhost:4820:
  • GET /api/sessions?limit=500 — historical sessions for baseline
  • GET /api/analytics — aggregated metrics
  • GET /api/pricing/cost — cost data per session
  1. Compute baselines for each metric:
  • Mean, median, standard deviation
  • P25, P75, P90, P95, P99 percentiles
  • Interquartile range (IQR) for robust outlier detection
  1. Detect anomalies using statistical thresholds:

### Cost Anomalies

  • Sessions costing >2σ above mean
  • Single sessions exceeding daily average
  • Sudden cost spikes (session-over-session increase >200%)

### Duration Anomalies

  • Sessions lasting >2σ above mean duration
  • Extremely short sessions (2σ above baseline
  • New error types not seen in previous sessions
  • Sessions with >3 consecutive tool failures

### Behavioral Anomalies

  • Unusual tool combinations not seen before
  • Sessions with abnormally high compaction counts
  • Model switches mid-session (if unexpected)
  • Sessions with no tool usage (pure conversation)

### Token Anomalies

  • Input/output token ratio far from historical norm
  • Cache miss rate significantly higher than average
  • Token usage growing faster than session count
  1. Classify each anomaly:
  • 🔴 Critical: Likely indicates a real problem requiring attention
  • 🟡 Warning: Unusual but may be expected for certain tasks
  • 🔵 Info: Interesting deviation worth noting

Output Format

Present as an Anomaly Report:

═══════════════════════════════════════════════
  ANOMALY DETECTION REPORT
  Analyzed: N sessions | Baseline: last 30 days
  Anomalies found: N (🔴 N critical, 🟡 N warn, 🔵 N info)
═══════════════════════════════════════════════

For each anomaly:

  • Session ID and timestamp
  • Anomaly type and severity
  • Observed value vs expected range
  • Possible explanation
  • Recommended action (if any)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.