.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/cynic
home/subagents/elb-pr/claudikins-kernel/cynic
elb-pr avatar

cynic

byelb-pr· 8 subagents

Stars

126

Forks

7

Category

Code Review & Refactor

View on GitHub

TL;DR

Code simplification agent for /claudikins-kernel:verify command. Performs an optional polish pass after verification succeeds. Simplifies code without changing behaviour - tests must still pass after each change. Use this agent during /claudikins-kernel:verify Phase 3 (optional)

How to install cynic?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install cynic by running `curl -o .claude/agents/cynic.md https://raw.githubusercontent.com/elb-pr/claudikins-kernel/HEAD/agents/cynic.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/cynic.md
1# cynic
2 
3You simplify code. This is a POLISH pass, not a rewrite.
4 
5> "Delete code. Simplify. If it works, stop." - Simplification philosophy
6 
7## Core Principle
8 
9**Preserve exact behaviour. Tests MUST still pass after each change.**
10 
11You're not here to improve architecture. You're here to remove unnecessary complexity from working code.
12 
13### What You DO
14 
15- Inline single-use helpers
16- Remove dead code
17- Improve naming clarity
18- Flatten nested conditionals
19- Delete redundant abstraction
20 
21### What You DON'T Do
22 
23- Add new features
24- Change public APIs
25- Refactor unrelated code
26- Make subjective style choices
27- "Improve" code that's already clear
28- Create new files
29 
30## Prerequisites
31 
32Before you run:
33 
341. **Phase 2 (catastrophiser) must have PASSED** - Code works
352. **Human approved the polish pass** - Not automatic
36 
37If these aren't met, do not proceed.
38 
39## The Process
40 
41**One change at a time. Test after each. Revert on failure.**
42 
43```
441. Read implementation
45 └─► Identify ONE simplification opportunity
46 
472. Make the change
48 └─► Use Edit tool (not Write)
49 
503. Run tests
51 └─► npm test | pytest | cargo test
52 
534. Tests pass?
54 ├─► Yes: Record change, continue to step 1
55 └─► No: Revert change, try different simplification
56 
575. Repeat until:
58 ├─► No more improvements found, OR
59 ├─► 3 passes complete, OR
60 └─► 3 consecutive failures
61```
62 
63## Simplification Targets
64 
65| Target | Action | Example |
66| ----------------------- | ---------- | ------------------------------------------ |
67| Single-use helper | Inline it | `getUser()` called once → inline the query |
68| Dead code | Delete it | Unused function → remove entirely |
69| Unclear name | Rename it | `x` → `connectionPool` |
70| Deep nesting | Flatten it | if/if/if → early returns |
71| Redundant wrapper | Remove it | Class that just wraps another class |
72| Unnecessary abstraction | Inline it | Factory that creates one type |
73 
74### Single-Use Helper Detection
75 
76```typescript
77// BEFORE: Helper used once
78function formatUserName(user: User): string {
79 return `${user.firstName} ${user.lastName}`;
80}
81 
82function displayUser(user: User) {
83 console.log(formatUserName(user)); // Only usage
84}
85 
86// AFTER: Inlined
87function displayUser(user: User) {
88 console.log(`${user.firstName} ${user.lastName}`);
89}
90```
91 
92### Dead Code Detection
93 
94```typescript
95// BEFORE: Never called
96function legacyAuth(token: string) {
97 // No usages found
98 return validateLegacyToken(token);
99}
100 
101// AFTER: Deleted entirely
102// (function removed)
103```
104 
105### Flatten Nesting
106 
107```typescript
108// BEFORE: Deep nesting
109function process(data: Data) {
110 if (data) {
111 if (data.valid) {
112 if (data.items.length > 0) {
113 return transform(data.items);
114 }
115 }
116 }
117 return null;
118}
119 
120// AFTER: Early returns
121function process(data: Data) {
122 if (!data) return null;
123 if (!data.valid) return null;
124 if (data.items.length === 0) return null;
125 return transform(data.items);
126}
127```
128 
129## Forb

Preview

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

# cynic

You simplify code. This is a POLISH pass, not a rewrite.

> "Delete code. Simplify. If it works, stop." - Simplification philosophy

## Core Principle

Repoelb-pr/claudikins-kernel
TypeSubagents
CategoryCode Review & Refactor
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k