analytics-mcp: Skill for Claude Code

.claude/skills/speckit-bug-test/SKILL.md

speckit-bug-test is a skill for Claude Code from karenrebecag/analytics-mcp. It costs 20 tokens per session (1,399 once invoked), scanned A, a copy of speckit-bug-test, MIT.

A bug-fix verification workflow that checks whether a previously recorded fix resolves the original problem and writes a test report.

In plain words
What is it for?
Testing a bug fix identified by its bug folder or slug and recording the verification in test.md.
Why use it?
It preserves evidence that the reported bug was actually addressed, rather than assuming a code change worked.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

This is karenrebecag/analytics-mcp's own configuration. It tells Claude Code how to work on analytics-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything analytics-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to karenrebecag/analytics-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/karenrebecag/analytics-mcp/main/.claude/skills/speckit-bug-test/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/karenrebecag/analytics-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for speckit-bug-test

README.md
[![agentmods](https://agentmods.dev/badge/skills/karenrebecag/analytics-mcp/speckit-bug-test/github.svg)](https://agentmods.dev/skills/karenrebecag/analytics-mcp/speckit-bug-test)
Your own site
<a href="https://agentmods.dev/skills/karenrebecag/analytics-mcp/speckit-bug-test"><img src="https://agentmods.dev/badge/skills/karenrebecag/analytics-mcp/speckit-bug-test/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for speckit-bug-test

Your own site · 80×15
<a href="https://agentmods.dev/skills/karenrebecag/analytics-mcp/speckit-bug-test"><img src="https://agentmods.dev/badge/skills/karenrebecag/analytics-mcp/speckit-bug-test.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,399 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00020 $0.01399
Opus 5 $0.00010 $0.00700
Sonnet 5 $0.00004 $0.00280
Haiku 4.5 $0.00002 $0.00140

Measured 9d ago against content hash 2745c98526a0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

speckit-bug-test scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

88% identical to speckit-bug-test — 19 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/speckit-bug-test/SKILL.md · 122 lines

How it starts

The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Test Bug Fix

Validate that the fix recorded by /speckit-bug-fix actually resolves the bug described by /speckit-bug-assess. The output is a verification report at .specify/bugs/<slug>/test.md.

User Input

$ARGUMENTS

The user input should identify the bug to validate. Accept any of:

  • slug=<bug-slug> or --slug <bug-slug> or a bare slug-like token.
  • A path that contains the slug (e.g. .specify/bugs/login-timeout/).
  • Nothing — fall back to context (see below).

Slug Resolution

Resolve BUG_SLUG in this order, stopping at the first match:

  1. Explicit user input — a slug passed in $ARGUMENTS (any of the forms above).
  2. Conversation context — if the current session has just run /speckit-bug-assess or /speckit-bug-fix, the slug it reported is the working slug. Reuse it without re-prompting. Confirm it by checking that .specify/bugs/<slug>/fix.md exists; if it does not, fall through.
  3. Single candidate on disk — list .specify/bugs/*/fix.md. If exactly one bug has a fix.md, use it.
  4. Disambiguate:
    • Interactive mode: ask the user which bug to validate and list the candidates.
    • Automated mode: stop with an error listing the candidates. Do not guess.

Once resolved, set BUG_SLUG and BUG_DIR = .specify/bugs/<BUG_SLUG>, and briefly state in your reply which resolution path was used (explicit / from context / single candidate / asked).

Prerequisites

  • BUG_DIR/assessment.md MUST exist.
  • BUG_DIR/fix.md MUST exist. If not, stop and instruct the user to run /speckit-bug-fix first.
  • If BUG_DIR/test.md already exists, ask the user whether to overwrite it (interactive mode) or refuse (automated mode).
  • Read both assessment.md and fix.md in full so you know:
    • The original symptom and reproduction steps (from assessment.md).
    • The actual code changes and tests added (from fix.md).

Execution

  1. Plan the validation
    • Decide which checks prove the bug is gone:
      • Re-run the reproduction steps from the assessment (or their automated equivalent).
      • Run the tests added or updated in the fix.
      • Run any broader regression suite that touches the changed files.
    • Decide which checks prove nothing was broken:
      • Existing test suites for the changed modules.
      • Lint / type-check if the project uses them.

Read the full file on GitHub · 122 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 122 lines · 20 tokens per session scan A 2745c98526a0

Subscribe to this mod's changes

speckit-bug-test is a skill published in the GitHub repository karenrebecag/analytics-mcp (1 stars, last pushed today), licensed MIT. It adds 20 tokens to every session and 1,399 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to speckit-bug-test, differing in 19 lines, and is treated as a copy.

Related

Other skills, from other repositories

ulw-qa

This is a Hermes-native ultraqa workflow skill.

rlaope/oh-my-hermes · 57 tokens

traffic-diagnosis

Systematically diagnose why traffic changed — spike, drop, or shift in mix. Follow these steps in order. Each step narrows the hypothesis.

surendranb/google-analytics-mcp · 34 tokens

test-iterate-loop

Autonomously diagnose a codebase, apply minimal fixes, and rerun tests until they pass or a real blocker is reached. Use when the user explicitly requests an iterative fix-until-green loop across Python, R, Julia, or HPC workflows.

flonat/flonat-research · 55 tokens

refactor-ops

Safe refactoring patterns - extract, rename, restructure with test-driven methodology and dead code detection. Use for: refactor, refactoring, extract function, extract component, rename, move file, restructure, dead code, unused imports, code smell, duplicate code, long function, god object, feature envy, DRY…

0xDarkMatter/claude-mods · 95 tokens

megalinter-check

Collect MegaLinter lint errors for the current repository. Use when the user wants to know if the code passes linting, why the MegaLinter CI job fails, or before/after fixing lint errors. Two modes - watch a CI job (GitHub Actions, GitLab CI, Azure Pipelines, Bitbucket Pipelines) and parse its logs, or run MegaLinter…

ulises-jeremias/agent-toolkit · 96 tokens

ia-verification-before-completion

Enforces fresh verification evidence before any completion claim. Use when about to claim "tests pass", "bug fixed", "done", "ready to merge", handing off work, or before editing when a request has ambiguous scope.

iliaal/whetstone · 52 tokens