Use when running tests, writing test cases, checking coverage, or doing type-checks. Triggers on test, unit test, vitest, Playwright, E2E test, pytest, type-check, tsc --noEmit, test coverage, regression test, test suite, pnpm test, npx vitest, npx playwright test, test file, .test.ts, .spec.ts, describe, it, expect, mock.
From george-setupnpx claudepluginhub george11642/george-plugins --plugin george-setupThis skill uses the workspace's default tool permissions.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
| Task | Command |
|---|---|
| All unit tests | npm test / pnpm test |
| Single test file | npx vitest path/to/test |
| E2E tests | npx playwright test |
| Type check | npx tsc --noEmit or npm run type-check |
| Python tests | pytest |
| Coverage | npx vitest --coverage |
*.test.ts co-located with sourcee2e/*.spec.ts (check project CLAUDE.md for exact path)npx convex dev --once// Vitest
import { describe, it, expect } from 'vitest';
describe('feature', () => {
it('should work', () => { expect(true).toBe(true); });
});