kickoff-pest-testing

kickoff-pest-testing is a skill for Claude Code from nasrulhazim/claude. It costs 269 tokens per session (6,208 once invoked), scanned A, original, MIT.

A testing helper for Laravel, a PHP web framework, that creates Pest test files for models, controllers, services, and Livewire components. It also covers feature, unit, API, and architecture tests.

In plain words
What is it for?
Use it to generate tests for application components, check existing tests for missing coverage, and create test stubs for those gaps.
Why use it?
It removes the need to write the initial test structure and common database, login, HTTP, and assertion code by hand. It is intended for projects using the Kickoff baseline, where Pest and architecture testing are already set up.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths.

Part of the claude-toolkit plugin — 36 skills, 12 commands, 20 agents shipped together

Good fit Use it to generate tests for application components, check existing tests for missing coverage, and create test stubs for those gaps.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nasrulhazim/claude/kickoff-pest-testing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add nasrulhazim/claude --skill kickoff-pest-testing
Clone the repo
git clone --depth 1 https://github.com/nasrulhazim/claude

Made for: Claude Code.

Or install claude-toolkit, the plugin that ships this one along with the rest of its 36 skills, 12 commands, 20 agents.

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 kickoff-pest-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/nasrulhazim/claude/kickoff-pest-testing/github.svg)](https://agentmods.dev/skills/nasrulhazim/claude/kickoff-pest-testing)
Your own site
<a href="https://agentmods.dev/skills/nasrulhazim/claude/kickoff-pest-testing"><img src="https://agentmods.dev/badge/skills/nasrulhazim/claude/kickoff-pest-testing/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 kickoff-pest-testing

Your own site · 80×15
<a href="https://agentmods.dev/skills/nasrulhazim/claude/kickoff-pest-testing"><img src="https://agentmods.dev/badge/skills/nasrulhazim/claude/kickoff-pest-testing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 269 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,208 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00269 $0.06208
Opus 5 $0.00134 $0.03104
Sonnet 5 $0.00054 $0.01242
Haiku 4.5 $0.00027 $0.00621

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

Security

Grade A, and why

kickoff-pest-testing 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 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.

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.

skills/kickoff-pest-testing/SKILL.md · 689 lines

How it starts

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

Pest Testing Skill (Kickoff baseline)

Auto-detect Laravel application components and scaffold production-quality Pest test files — feature tests, unit tests, Livewire component tests, API tests, and architecture rules. Designed for projects using the Kickoff baseline where Pest and arch testing are pre-configured.

Naming: this skill is kickoff-pest-testing, not pest-testing, because Laravel Boost's boost:install --skills writes its own pest-testing skill into .claude/skills/ and would silently overwrite this one. Boost's covers Pest 4 syntax generically; this one covers scaffolding, the Kickoff arch-test baseline and suite performance. They are complementary — load both.

Command Reference

Command Description
/test generate Auto-detect target (model/controller/service/component) and scaffold matching Pest tests
/test feature Generate feature tests with HTTP assertions, authentication, and database checks
/test unit Generate unit tests for isolated logic (services, actions, value objects)
/test coverage-check Analyse existing tests and report coverage gaps with suggested test stubs

1. /test generate — Auto-Detect & Scaffold

Step 1: Identify the Target

Scan the file or class the user references and classify it:

Signal Classification Test Location
extends Model Eloquent Model tests/Feature/Models/
extends Controller or route handler Controller tests/Feature/Http/Controllers/
Class in app/Services/ Service tests/Unit/Services/
Class in app/Actions/ Action tests/Unit/Actions/
extends Component (Livewire) Livewire Component tests/Feature/Livewire/
Route with api prefix or api.php API Endpoint tests/Feature/Api/
Class in app/Policies/ Policy tests/Feature/Policies/
Blade view only View tests/Feature/Views/
extends Mailable Mail tests/Feature/Mail/
extends Notification Notification tests/Feature/Notifications/
extends Job or implements ShouldQueue Job tests/Feature/Jobs/

Read the full file on GitHub · 689 lines

Files

What ships with it

3 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 Changed · +41 lines d1ddd36a246a
  2. 10d ago First seen · 648 lines · 269 tokens per session scan A c268dcde322a

Subscribe to this mod's changes

kickoff-pest-testing is a skill published in the GitHub repository nasrulhazim/claude (22 stars, last pushed 7d ago), licensed MIT. It adds 269 tokens to every session and 6,208 once invoked, about $0.0013 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.