bobbycode: Skill for Claude Code

.claude/skills/bobby-test/SKILL.md

test-ticket is a skill for Claude Code from ccevans/bobbycode. It costs 59 tokens per session (3,753 once invoked), scanned B, original, MIT.

A live-application testing skill that checks ticket changes through browser interactions and API calls. It tests the running product rather than running automated test suites or reading source code.

In plain words
What is it for?
Use it to test completed tickets, exercise user flows, check APIs, perform smoke testing, and report verified or blocked cases.
Why use it?
It finds bugs in the behavior users can actually observe and avoids treating unverified code or test output as proof that a feature works.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: reads .claude/ paths.

This is ccevans/bobbycode's own configuration. It tells Claude Code how to work on bobbycode 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 bobbycode configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ccevans/bobbycode. 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/ccevans/bobbycode/main/.claude/skills/bobby-test/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ccevans/bobbycode

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 test-ticket

README.md
[![agentmods](https://agentmods.dev/badge/skills/ccevans/bobbycode/bobby-test/github.svg)](https://agentmods.dev/skills/ccevans/bobbycode/bobby-test)
Your own site
<a href="https://agentmods.dev/skills/ccevans/bobbycode/bobby-test"><img src="https://agentmods.dev/badge/skills/ccevans/bobbycode/bobby-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 test-ticket

Your own site · 80×15
<a href="https://agentmods.dev/skills/ccevans/bobbycode/bobby-test"><img src="https://agentmods.dev/badge/skills/ccevans/bobbycode/bobby-test.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,753 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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.00059 $0.03753
Opus 5 $0.00030 $0.01877
Sonnet 5 $0.00012 $0.00751
Haiku 4.5 $0.00006 $0.00375

Measured 6d ago against content hash 1574aca16b78, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade B, and why

test-ticket scanned grade B with 2 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 6d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

- `curl -X POST -H "Content-Type: application/json" -d '{...}'` for write operations

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- `curl -s -o /dev/null -w "%{http_code}" <your dev server URL>` (app — configure `health_checks` in .bobbyrc.yml)
.claude/skills/bobby-test/SKILL.md · 308 lines

How it starts

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

Bobby Test Skill

Bug hunter, not spec runner. Finds bugs by exercising the running app — browser automation, API calls, direct runtime execution. NEVER runs the test suite (rspec/jest/npm test) — build and review already did that. Running specs here is a critical error.

Hard Rules

  • NEVER run any spec/test runner — no npm test, rspec, jest, pytest, dotnet test, go test, or any unit/integration test command. The build agent writes specs (TDD) and the review agent runs them independently. Running specs here is redundant and wastes the testing budget.
  • NEVER verify behavior by reading source code — you verify by observing the live app.
  • If a test case cannot be verified through the live app, mark it BLOCKED — do not fall back to running specs as a substitute.

Before Starting

  1. Check learnings — Read .claude/skills/bobby-test/learnings.md + .claude/skills/bobby-test/learnings.local.md
  2. Read the ticket's ticket.md and test-cases.md
  3. Read plan.md to understand what was implemented

Health Check

Verify the dev environment is running before testing:

  • curl -s -o /dev/null -w "%{http_code}" <your dev server URL> (app — configure health_checks in .bobbyrc.yml)

Required Services

The web server is not enough. Read plan.md to identify ALL services the feature depends on — background workers (Sidekiq, Celery, Bull), message queues, caches, etc. Verify each one is running:

  • Web server — health check above
  • Background workers — check if the worker process is running (e.g., docker compose ps, ps aux | grep sidekiq). If not running, start it: docker compose up -d sidekiq or the equivalent.
  • Databases / caches — verify connectivity if the feature depends on Redis, Elasticsearch, etc.

Service Recovery

If a service isn't running or a health check fails, attempt one restart per service:

  • Web: Run npm run dev in the background

  • Workers: docker compose up -d sidekiq or the project's equivalent

  • Wait up to 15 seconds, then re-check

  • If it doesn't come back after one attempt, mark affected tests as BLOCKED

Read the full file on GitHub · 308 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 308 lines · 59 tokens per session scan B 1574aca16b78

Subscribe to this mod's changes

test-ticket is a skill published in the GitHub repository ccevans/bobbycode (6 stars, last pushed 3d ago), licensed MIT. It adds 59 tokens to every session and 3,753 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

webapp-testing

Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.

AvinashP/AgentsAtlas · 35 tokens

agent-browser

Use the host-side agent-browser CLI for local browser smoke tests, screenshots, snapshots, and simple UI validation against forwarded localhost URLs.

superagent-ai/grok-cli · 31 tokens

e2e

Generate and run Playwright E2E tests traced to spec.md acceptance criteria, with an optional accessibility audit. Use when saying "e2e tests" or "a11y audit".

anton-abyzov/specweave · 38 tokens

hatch3r-browser-verify

Opt-in browser verification skill — spec-run-first Playwright verification (assertions execute in the runner, agent reads only failures), axe-core a11y audits, toHaveScreenshot() regression diffs, E2E test scaffolds, and snapshot-mode exploratory driving. Default ON for UI-affecting agent invocations; disable globally…

hatch3r/hatch3r · 83 tokens

tauri-pilot

Inspect, interact with, and test a running Tauri v2 app via CLI. Communicates over Unix socket using JSON-RPC 2.0. Use when testing UI, automating interactions, or debugging a Tauri app.

mpiton/tauri-pilot · 52 tokens

sc:webapp-testing

Test a web app end-to-end with Playwright: drive real flows, assert on visible state, catch console/network errors, and do visual + RTL/Hebrew checks. Covers writing resilient selectors (roles/text over CSS), waiting on conditions (never sleeps), screenshot diffing, and a quick smoke pass before shipping. Activate…

squadcodercom/squadcoder · 115 tokens