All authors
SeongwoongCho avatar

Claude Skills by SeongwoongCho

github.com/SeongwoongCho
30 skillsA× 29B× 11 installs5 views
Adversarial ReviewA

Complete the primary implementation, then switch roles: become an attacker whose goal is to break your own work. Write adversarial test cases, probe edge cases, attempt common exploit patterns, and challenge architectural decisions. Fix everything found. Repeat up to 3 attack-fix cycles. ---

code-qualitygo
0
8
Careful RefactorA

Improve code structure without changing observable behavior. Use the Mikado method: one atomic step at a time, with test verification after every step. ---

code-qualityrefactoringgit
0
8
Code ReviewB

Evaluate code changes across four dimensions: security, quality, performance, and maintainability. Produce findings with severity ratings and concrete fix suggestions. ---

code-qualityrustgo
0
8
Deep InterviewA

Clarify ambiguous tasks through structured interviews before executing. Never write code against an unclear spec. ---

businessgoperformance
0
8
Divide And ConquerA

Break the task into 2–5 independent sub-tasks, solve each in isolation with its own verification, then integrate the results and verify the system as a whole. Each sub-task boundary is an explicit contract — integration is a planned phase, not an afterthought. ---

development
0
8
Documentation WriterA

Produce accurate, complete, and well-styled documentation by reading source truth first. Never document from memory. ---

documentationgoapi
0
8
Engineering RetroA

Weekly engineering retrospective. Analyzes commit history, work patterns, and code quality metrics with persistent history and trend tracking. Team-aware: identifies the current user, then analyzes every contributor with per-person praise and growth areas. ---

toolsgogit
0
8
Migration SafeA

Execute migrations — schema changes, dependency upgrades, API version changes, large-scale restructuring — with complete audit trails and verified rollback plans. ---

devopsgorails
0
8
Parallel DispatchA

Decompose a task into 2–5 independent sub-tasks and emit a structured JSON so the orchestrator can fan them out in parallel worktrees. This harness only decomposes — it does NOT implement anything. Implementation is done by the fan-out agents in subsequent steps. **Key distinction from ensemble**: Ensemble runs the *same* task through *different* harnesses for comparison. Parallel-dispatch runs *different* sub-tasks (potentially through the *same* harness) to exploit genuine independence. ---

ai-agentsapi
0
8
Performance OptimizationA

Improve performance through measurement-driven cycles. Never optimize without a baseline. Never ship an optimization that breaks tests. ---

code-qualityperformance
0
8
Plan ReviewA

Thoroughly review an engineering plan before any code is written. Combines an engineering review (architecture, code quality, tests, performance) with mode selection for scope posture. Interactive: one issue per question, opinionated recommendations, required completion summary. ---

code-qualitygoapi
0
8
Pre Landing ReviewA

Analyze the current branch's diff against main for structural issues that tests don't catch. Two-pass review: Critical issues block merge; Informational issues are advisory. Read-only by default — only modifies files if user explicitly chooses to fix a critical issue. ---

code-qualityrustshell
0
8
Progressive RefinementA

Produce a working solution first, then iteratively improve the weakest quality dimension. Each pass is measured before and after to prevent regressions. Stop when all dimensions meet threshold or the budget is exhausted. ---

code-qualitysecurity
0
8
Qa TestingA

Systematically QA test an application like a real user. Click everything, fill every form, check every state. Produce a structured report with health score and evidence. Four modes: diff-aware (automatic on feature branches), full (systematic exploration), quick (30-second smoke test), and regression (compare against baseline). ---

testinggonextjs
0
8
Ralph LoopA

Persistent execution loop. Keep working on the task until all acceptance criteria pass, retrying with adapted strategies on each failure. ---

ai-agents
0
8
Ralplan ConsensusA

Create a structured implementation plan with self-review. Analyze the task, explore the codebase, propose an approach, identify risks, and challenge your own assumptions before handing the plan to downstream execution. ---

developmentgoapi
0
8
Rapid PrototypeA

Build the minimum viable implementation of a feature as fast as possible. Cut scope aggressively. Prove the concept works. Document everything deferred. ---

developmentbashapi
0
8
Research IterationA

Explore high-uncertainty problems through hypothesis-driven cycles. Measure everything. Document everything — including what failed. ---

researchapi
0
8
Security AuditA

Audit a codebase or change for security vulnerabilities. Produce a structured, actionable report. Never implement fixes — report and recommend only. ---

securityrustgo
0
8
Ship WorkflowA

Fully automated ship workflow: merge main, run tests, review diff, bump version, update changelog, commit bisectable chunks, push, and create PR. Non-interactive — runs straight through and outputs the PR URL at the end. ---

devopsrustgo
0
8
Simple ExecutorA

Execute trivial, well-defined tasks directly. No planning, no TDD overhead. Read, change, verify, done. ---

developmentrefactoring
0
8
Spike Then HardenA

Build a fast, disposable prototype to learn the problem space, extract its learnings, then implement a production-quality version from scratch informed by what the spike revealed. The spike is a learning tool — it is never shipped. ---

developmentrefactoringsecurity
0
8
SynthesizerA

Merge two or more independent codebases (from ensemble worktrees) into a single, coherent, working project in the main workspace. This is not a summary — you physically read, compare, and write files. ---

developmentpythongo
0
8
System DesignA

Design and implement multi-component systems from scratch. This harness handles greenfield projects that span multiple services, external integrations, and infrastructure — going beyond single-module TDD to produce deployable, production-ready systems. ---

developmenttypescriptgo
0
8
Systematic DebuggingA

Diagnose and fix bugs through four strict phases. Never guess — every hypothesis is tested with evidence before a fix is applied. ---

code-qualitybashdebugging
0
8
Tdd DrivenA

Execute changes using strict red-green-refactor cycles. Every behavior is specified by a failing test before any production code is written. ---

testinggodocker
0
8
Harness RegistryA

Manage the adaptive-harness pool: list, inspect, promote, demote harnesses. Use when user asks about harness status or wants to manage the pool.

toolsbashdebugging
0
8
MigrateA

Manually invoke the adaptive-harness migration to update a project's .adaptive-harness directory to the current plugin version. Adds missing harnesses, updates config schema, and reports what changed.

devopsbash
0
8
Task TaxonomyA

Reference for the 6-axis task taxonomy used by adaptive-harness routing. Use when user asks how tasks are classified.

researchgoreact
0
8
Using Adaptive HarnessA

Auto-mode bootstrap for adaptive-harness. Intercepts tasks, routes to optimal harness, evaluates results. Use on every task when adaptive-harness auto-mode is active.

ai-agentsgobash
0
8