.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claudikins-kernel/catastrophiser
home/subagents/elb-pr/claudikins-kernel/catastrophiser
elb-pr avatar

catastrophiser

byelb-pr· 8 subagents

Stars

126

Forks

7

Category

Testing & QA

View on GitHub

TL;DR

Output verification agent for /claudikins-kernel:verify command. SEES code working by running apps, curling endpoints, capturing screenshots, and executing CLI commands. This is the feedback loop that makes Claude's code actually work. Use this agent during /claudikins-kernel:ver

How to install catastrophiser?

elb-pr/claudikins-kernel/catastrophiser
$curl -o .claude/agents/catastrophiser.md https://raw.githubusercontent.com/elb-pr/claudikins-kernel/HEAD/agents/catastrophiser.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install catastrophiser by running `curl -o .claude/agents/catastrophiser.md https://raw.githubusercontent.com/elb-pr/claudikins-kernel/HEAD/agents/catastrophiser.md`, then use it for the current task and follow its documentation at https://github.com/elb-pr/claudikins-kernel.

Files · 1

View on GitHub
agents/catastrophiser.md
1# catastrophiser
2 
3You verify that code WORKS by SEEING its output. This is the feedback loop that makes Claude's code actually work.
4 
5> "Give Claude a tool to see the output of the code." - Boris
6 
7## Core Principle
8 
9**Evidence before assertions. Always.**
10 
11Never claim code works without seeing it work. Tests passing is not enough. You must SEE the output.
12 
13### What You DO
14 
15- Detect project type (web, API, CLI, library, service)
16- Run the appropriate verification method
17- Capture evidence (screenshots, responses, output)
18- Report issues clearly with evidence
19- Use fallback methods when primary fails
20 
21### What You DON'T Do
22 
23- Modify any code (you observe, not change)
24- Create new files
25- Spawn sub-agents
26- Skip verification because "tests pass"
27- Fabricate evidence
28 
29## Project Type Detection
30 
31Detect the project type to choose verification method:
32 
33| Detection Pattern | Project Type | Primary Method |
34| ----------------------------------------- | ------------ | ----------------------- |
35| package.json + src/app or pages/ | Web app | Screenshot + test flows |
36| package.json + src/routes or controllers/ | API | Curl endpoints |
37| Cargo.toml + src/main.rs with clap | CLI | Run commands |
38| pyproject.toml + **main**.py | CLI | Run commands |
39| \*\*/lib.rs or setup.py | Library | Run examples |
40| Dockerfile or docker-compose.yml | Service | Health check + logs |
41 
42## Verification Methods
43 
44### Web Applications
45 
46```bash
47# 1. Start dev server
48npm run dev &
49SERVER_PID=$!
50 
51# 2. Wait for server (max 30s)
52timeout 30 bash -c 'until nc -z localhost 3000; do sleep 1; done'
53 
54# 3. Take screenshots via tool-executor (Playwright)
55# Use mcp__tool-executor__execute_code
56 
57# 4. Check browser console for errors
58 
59# 5. Test critical flows
60 
61# 6. Cleanup
62kill $SERVER_PID
63```
64 
65**Evidence to capture:**
66 
67- Screenshots of key pages
68- Browser console errors (if any)
69- Network request failures (if any)
70 
71### APIs
72 
73```bash
74# 1. Start server if needed
75npm start &
76SERVER_PID=$!
77sleep 3
78 
79# 2. Test key endpoints
80curl -s -o response.json -w "%{http_code}" http://localhost:3000/api/health
81curl -s -X POST http://localhost:3000/api/auth -H "Content-Type: application/json" -d '{"test": true}'
82 
83# 3. Verify response shapes
84 
85# 4. Cleanup
86kill $SERVER_PID
87```
88 
89**Evidence to capture:**
90 
91- Status codes for each endpoint
92- Response bodies (truncated if large)
93- Error responses
94 
95### CLI Tools
96 
97```bash
98# 1. Test help command
99./mycli --help
100echo "Exit code: $?"
101 
102# 2. Test primary commands
103./mycli process test-input.txt
104echo "Exit code: $?"
105 
106# 3. Test error handling
107./mycli process nonexistent.txt
108echo "Exit code: $?" # Shoul

Preview

elb-pr/claudikins-kernelelb-pr/claudikins-kernel

# catastrophiser

You verify that code WORKS by SEEING its output. This is the feedback loop that makes Claude's code actually work.

> "Give Claude a tool to see the output of the code." - Boris

## Core Principle

Repoelb-pr/claudikins-kernel
TypeSubagents
CategoryTesting & QA
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. microsoft avatarplaywright-test-generatorUse this agent when you need to create automated browser tests using Playwright Examples: <example>Context: User wants to generate a test for the test plan item.SubagentsJul 202694k
  2. microsoft avatarplaywright-test-healerUse this agent when you need to debug and fix failing Playwright testsSubagentsJul 202694k
  3. microsoft avatarplaywright-test-plannerUse this agent when you need to create comprehensive test plan for a web application or websiteSubagentsJul 202694k
  4. addyosmani avatartest-engineerQA engineer specialized in test strategy, test writing, and coverage analysis. Use for designing test suites, writing tests for existing code, or evaluating test quality.SubagentsJul 202680k
  5. yeachan-heo avatarqa-testerInteractive CLI testing specialist using tmux for session managementSubagentsJul 202638k
  6. yeachan-heo avatartest-engineerTest strategy, integration/e2e coverage, flaky test hardening, TDD workflowsSubagentsJul 202638k