Source

michael-denyer/pstack-claude

54 skills · 5.6K combined installs

Skills from this source

#
Skill
Source
8W Activity
Installs
1
unslop Cut AI tells from any writing. Must always apply.
michael-denyer/pstack-claude
175
2
blast-radius Find what a change could break somewhere else before it ships, beyond the diff, and prove the one fact it's safe beca…
michael-denyer/pstack-claude
128
3
deslop Remove AI-generated code slop and clean up code style
michael-denyer/pstack-claude
126
4
typescript-best-practices TypeScript best practices. Use when reading or editing any .ts or .tsx file.
michael-denyer/pstack-claude
114
5
how Use for "how does X work", code walkthroughs before changing something, and placement / ownership / layering question…
michael-denyer/pstack-claude
112
6
principle-type-system-discipline Apply when designing types, reviewing a function signature, or writing code in any statically-typed language. Make il…
michael-denyer/pstack-claude
112
7
why Use for 'why does X work this way', 'why we picked Y', design rationale, regressions, postmortems, or data-backed thr…
michael-denyer/pstack-claude
112
8
show-me-your-work Keep a reviewable decision trail for long-running or unattended work: a TSV log with one row per decision (what, why,…
michael-denyer/pstack-claude
111
9
make-pr-easy-to-review Prepare PRs for review by cleaning noisy history, improving PR descriptions, and adding reviewer guidance without cha…
michael-denyer/pstack-claude
110
10
principle-prove-it-works Apply after completing a task, before declaring done. Verify against the real artifact (run the feature, read the act…
michael-denyer/pstack-claude
110
11
poteto-mode poteto's agent style for concise, detailed responses, deliberate subagents, unslopped prose, simple code, and verifie…
michael-denyer/pstack-claude
109
12
interrogate Use for "interrogate", "adversarial review", "multi-model review", "challenge this", "stress test this code", "find b…
michael-denyer/pstack-claude
108
13
recall Reconstruct your recent working context from your own chat history, live state, and the shared record (user reports, …
michael-denyer/pstack-claude
108
14
arena Spawn N parallel candidates at the same task, pick a base, graft the strongest parts of the losers into it. Use for /…
michael-denyer/pstack-claude
107
15
principle-make-operations-idempotent Apply when designing commands, lifecycle steps, or processing loops that run amid crashes, restarts, and retries. Con…
michael-denyer/pstack-claude
107
16
principle-encode-lessons-in-structure Apply when you catch yourself writing the same instruction a second time, or notice a recurring correction. Encode th…
michael-denyer/pstack-claude
106
17
reflect Spawn three parallel review subagents over the active transcript, surface learnings, and route each to a concrete edi…
michael-denyer/pstack-claude
106
18
teach Explain a body of work plainly so a person actually understands it. Runs the `how` and `why` skills and weaves what t…
michael-denyer/pstack-claude
106
19
architect Sketch types, signatures, and module structure before code, then stay in the loop while implementation fills in. Use …
michael-denyer/pstack-claude
105
20
bro Restate the last message in plain human language, with no jargon. Use for /bro or when asked to say it plainly.
michael-denyer/pstack-claude
105
21
create-verification-skill Generate a project-local verification skill that drives your app the way a user does — any language, framework, or pl…
michael-denyer/pstack-claude
105
22
principle-boundary-discipline Apply when wiring validation, error handling, or framework adapters. Concentrate guards at system boundaries (CLI, co…
michael-denyer/pstack-claude
105
23
principle-build-the-lever Apply to any non-trivial work, not just bulk work: edits, migrations, analyses, checks. Build the tool that does it o…
michael-denyer/pstack-claude
105
24
principle-fix-root-causes Apply when debugging. Trace each symptom to its root cause and fix it there; reproduce first, ask why until you reach…
michael-denyer/pstack-claude
105
25
principle-laziness-protocol Apply when refactoring, evaluating diff size, or tempted to add abstractions, layers, or signal threading. Bias towar…
michael-denyer/pstack-claude
105
26
principle-migrate-callers-then-delete-legacy-apis Apply when introducing a new internal API while old callers still exist. Migrate callers and delete the old API in th…
michael-denyer/pstack-claude
105
27
principle-redesign-from-first-principles Apply when integrating a new requirement into an existing design. Redesign as if the requirement had been a foundatio…
michael-denyer/pstack-claude
105
28
principle-separate-before-serializing-shared-state Apply when concurrent actors might write to the same file, branch, key, or state object. Eliminate the sharing first;…
michael-denyer/pstack-claude
105
29
principle-subtract-before-you-add Apply when sequencing an addition, refactor, or rewrite. Remove dead weight, redundant validators, and stub reference…
michael-denyer/pstack-claude
105
30
setup-pstack Configure which models pstack uses per role. Detects your available Claude models and writes a per-role override file…
michael-denyer/pstack-claude
105
31
what-did-i-get-done Summarize authored commits over a user-specified time period into a concise update
michael-denyer/pstack-claude
105
32
automate-me Use for "automate me", "create/update/refresh my -mode skill", "turn/capture my preferences or working style into a s…
michael-denyer/pstack-claude
104
33
babysit Watch an open PR — fix failing CI, handle the straightforward review comments, and drive it to a mergeable state. Cla…
michael-denyer/pstack-claude
104
34
figure-it-out Design an auditable playbook when no narrower one fits: a large migration, an ambitious multi-part change, or work a …
michael-denyer/pstack-claude
104
35
principle-exhaust-the-design-space Apply when facing a novel UI interaction or architectural decision with no precedent in the codebase. Build 2-3 compe…
michael-denyer/pstack-claude
104
36
principle-experience-first Apply when product, UX, or feature-scope tradeoffs come up. Choose user delight over implementation convenience; ship…
michael-denyer/pstack-claude
104
37
principle-foundational-thinking Apply before writing logic: choosing core types and data structures, sequencing scaffold-vs-feature work, asking what…
michael-denyer/pstack-claude
104
38
principle-guard-the-context-window Apply when context is filling up: large outputs, long files, repeated reads, fan-out planning. Route bulk to subagent…
michael-denyer/pstack-claude
104
39
principle-minimize-reader-load Apply when reviewing or shaping code that's hard to trace. Count layers between question and answer, and hidden state…
michael-denyer/pstack-claude
104
40
principle-never-block-on-the-human Apply when tempted to ask 'should I do X?' on reversible work. Proceed, present the result, let the human course-corr…
michael-denyer/pstack-claude
104
41
principle-sequence-verifiable-units Apply to multi-step work (sweeps, migrations, runs of similar edits) and to how you stack commits and PRs. Break work…
michael-denyer/pstack-claude
104
42
technical-writing Layered technical-writing standard: Diátaxis structure, Google developer style sentences, STE instruction rules, Glob…
michael-denyer/pstack-claude
104
43
maintain-verification-skill Periodic pass that keeps a project's verification skill and feature map honest: parallel source readers per feature, …
michael-denyer/pstack-claude
103
44
principle-model-the-domain Apply when writing stateful logic, or when code branches a lot or repeats a shape assumption across files. Encode the…
michael-denyer/pstack-claude
103
45
principle-outcome-oriented-execution Apply during planned rewrites and migrations with explicit phase boundaries. Converge on the target architecture; don…
michael-denyer/pstack-claude
103
46
fix-ci Find failing PR checks, inspect logs or external check links, and apply focused fixes
michael-denyer/pstack-claude
102
47
get-pr-comments Fetch and summarize review comments from the active pull request
michael-denyer/pstack-claude
102
48
swarm Fan out N parallel workers, drain them, and return one report. Use for /swarm, 'swarm this', or parallel coverage, ra…
michael-denyer/pstack-claude
102
49
tdd Use only when the user explicitly asks for TDD, a failing test, or a regression test, OR when the bug has an obvious …
michael-denyer/pstack-claude
102
50
thermo-nuclear-code-quality-review Run an extremely strict maintainability review for abstraction quality, giant files, and spaghetti-condition growth. …
michael-denyer/pstack-claude
102
Page 1 · 54 total Next