Source

backnotprop/pstack

47 skills · 3.7K combined installs

Skills from this source

#
Skill
Source
8W Activity
Installs
1
unslop Cut AI tells from any writing. Must always apply.
backnotprop/pstack
421
2
why Use for 'why does X work this way', 'why we picked Y', design rationale, regressions, postmortems, or data-backed thr…
backnotprop/pstack
116
3
how Use for "how does X work", code walkthroughs before changing something, and placement / ownership / layering question…
backnotprop/pstack
108
4
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…
backnotprop/pstack
106
5
typescript-best-practices TypeScript best practices. Use when reading or editing any .ts or .tsx file.
backnotprop/pstack
100
6
technical-writing Layered technical-writing standard: Diátaxis structure, Google developer style sentences, STE instruction rules, Glob…
backnotprop/pstack
96
7
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,…
backnotprop/pstack
93
8
architect Sketch types, signatures, and module structure before code, then stay in the loop while implementation fills in. Use …
backnotprop/pstack
89
9
interrogate Use for "interrogate", "adversarial review", "multi-model review", "challenge this", "stress test this code", "find b…
backnotprop/pstack
86
10
principle-prove-it-works Apply after completing a task, before declaring done. Verify against the real artifact (run the feature, read the act…
backnotprop/pstack
86
11
arena Spawn N parallel candidates at the same task, pick a base, graft the strongest parts of the losers into it. Use for /…
backnotprop/pstack
81
12
figure-it-out Design an auditable playbook when no narrower one fits: a large migration, an ambitious multi-part change, or work a …
backnotprop/pstack
81
13
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…
backnotprop/pstack
81
14
Poteto Mode poteto's agent style for concise, detailed responses, deliberate subagents, unslopped prose, simple code, and verifie…
backnotprop/pstack
80
15
bro Restate the last message in plain human language, with no jargon.
backnotprop/pstack
79
16
principle-laziness-protocol Apply when refactoring, evaluating diff size, or tempted to add abstractions, layers, or signal threading. Bias towar…
backnotprop/pstack
79
17
setup-pstack Configure which models pstack uses per role. Detects your available models and writes an always-applied rule that ove…
backnotprop/pstack
77
18
automate-me Use for "automate me", "create/update/refresh my -mode skill", "turn/capture my preferences or working style into a s…
backnotprop/pstack
76
19
principle-encode-lessons-in-structure Apply when you catch yourself writing the same instruction a second time, or notice a recurring correction. Encode th…
backnotprop/pstack
74
20
principle-boundary-discipline Apply when wiring validation, error handling, or framework adapters. Concentrate guards at system boundaries (CLI, co…
backnotprop/pstack
73
21
principle-experience-first Apply when product, UX, or feature-scope tradeoffs come up. Choose user delight over implementation convenience; ship…
backnotprop/pstack
73
22
principle-subtract-before-you-add Apply when sequencing an addition, refactor, or rewrite. Remove dead weight, redundant validators, and stub reference…
backnotprop/pstack
73
23
principle-type-system-discipline Apply when designing types, reviewing a function signature, or writing code in any statically-typed language. Make il…
backnotprop/pstack
73
24
reflect Spawn three parallel review subagents over the active transcript, surface learnings, and route each to a concrete edi…
backnotprop/pstack
73
25
principle-guard-the-context-window Apply when context is filling up: large outputs, long files, repeated reads, fan-out planning. Route bulk to subagent…
backnotprop/pstack
72
26
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…
backnotprop/pstack
71
27
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…
backnotprop/pstack
71
28
principle-redesign-from-first-principles Apply when integrating a new requirement into an existing design. Redesign as if the requirement had been a foundatio…
backnotprop/pstack
71
29
principle-foundational-thinking Apply before writing logic: choosing core types and data structures, sequencing scaffold-vs-feature work, asking what…
backnotprop/pstack
70
30
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…
backnotprop/pstack
70
31
recall Reconstruct your recent working context from your own chat history, live state, and the shared record (user reports, …
backnotprop/pstack
70
32
principle-outcome-oriented-execution Apply during planned rewrites and migrations with explicit phase boundaries. Converge on the target architecture; don…
backnotprop/pstack
69
33
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;…
backnotprop/pstack
69
34
create-verification-skill Generate a project-local verification skill that drives your app the way a user does — any language, framework, or pl…
backnotprop/pstack
68
35
principle-make-operations-idempotent Apply when designing commands, lifecycle steps, or processing loops that run amid crashes, restarts, and retries. Con…
backnotprop/pstack
68
36
principle-minimize-reader-load Apply when reviewing or shaping code that's hard to trace. Count layers between question and answer, and hidden state…
backnotprop/pstack
68
37
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…
backnotprop/pstack
68
38
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…
backnotprop/pstack
68
39
principle-model-the-domain Apply when writing stateful logic, or when code branches a lot or repeats a shape assumption across files. Encode the…
backnotprop/pstack
67
40
swarm Fan out N parallel workers, drain them, and return one report. Use for /swarm, 'swarm this', or parallel coverage, ra…
backnotprop/pstack
67
41
tdd Use only when the user explicitly asks for TDD, a failing test, or a regression test, OR when the bug has an obvious …
backnotprop/pstack
67
42
teach Explain a body of work plainly so a person actually understands it. Runs the `how` and `why` skills and weaves what t…
backnotprop/pstack
65
43
no-comments Spawn Comment Sicko, fix accepted findings, and offer encodings for claimed constraints.
backnotprop/pstack
64
44
maintain-verification-skill Periodic pass that keeps a project's verification skill and feature map honest: parallel source readers per feature, …
backnotprop/pstack
62
45
reproduce-and-fix-issues Reproduce triaged Slack bugs through a configured app-control adapter, verify existing fixes, and open a bounded draf…
backnotprop/pstack
3
46
setup-benny Configure Benny and prepare its triage and repro automations. Use when installing Benny or changing its Slack, tracke…
backnotprop/pstack
3
47
triage-issue-reports Triage Slack issue reports with one thread-only verdict, evidence review, cause-aware routing, tracker dedupe, and fa…
backnotprop/pstack
3