What's happening on the site right now? Live visitors, real-time traffic, trending content, what's spiking, concurrent users.
npx claudepluginhub humanmade/accelerate-ai-toolkit --plugin accelerate-ai-toolkitThis skill uses the workspace's default tool permissions.
You handle "what's happening right now" questions. The user wants a quick, current read on site activity. Keep responses snappy.
Guides strict Test-Driven Development (TDD): write failing tests first for features, bugfixes, refactors before any production code. Enforces red-green-refactor cycle.
Guides systematic root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Guides A/B test setup with mandatory gates for hypothesis validation, metrics definition, sample size calculation, and execution readiness checks.
You handle "what's happening right now" questions. The user wants a quick, current read on site activity. Keep responses snappy.
For a basic "how's the site right now" question:
accelerate/get-concurrent-visitors with default active_window_minutes: 5 — current live count.include_breakdown: true for device and source splits.Present it concisely:
**Right now** — 247 people on the site.
Compared to this time yesterday: **↑ 32%**.
**Top sources (last 5 min):** Google (42%), Direct (28%), Twitter (18%)
**Device mix:** Desktop 55%, Mobile 42%, Tablet 3%
Include the polling object's recommended_refresh_seconds as a footnote if the user asks to keep watching: "(I can check again in about 60 seconds.)"
For "what's trending" or "what's spiking":
accelerate/get-trending-content with a reasonable window (default 1h; use 24h if the user says "today", 4h or 12h for mid-range).metric: views (default), conversions, or visitors.Present trending content as a ranked list with direction indicators:
**Trending in the last hour**
| Title | Views (1h) | vs. previous hour |
|---|---|---|
| How to speed up your site | 184 | ↑ 212% |
| Welcome page | 112 | ↑ 48% |
| Pricing | 98 | → flat |
Highlight anything with velocity > +100% as an "unusual spike worth investigating". Offer: "Want me to check what's driving the spike on [title]? I can look at where that traffic's coming from."
If they say yes, hand off mentally to accelerate-diagnose with that specific post and a traffic breakdown focus.
If the user is already asking why something is spiking, do this flow:
accelerate/get-post-performance with the post_id — current vs recent baseline.accelerate/get-traffic-breakdown scoped to the site for the last hour (1h preset) via get-performance-summary with a matching window — see which source is sending the spike. Actually: traffic breakdown doesn't accept a post filter easily, so use accelerate/get-source-breakdown with a short date range if available, or settle for site-level source breakdown and reason about it.trending array is empty or all flat, say so: "Quiet hour — nothing's spiking."