Source

patinaproject/skills

100 skills · 1.6K combined installs

Skills from this source

#
Skill
Source
8W Activity
Installs
1
email-triage Triage a Gmail inbox into five GTD-style buckets (Action / Record / FYI / Noise / Unsure), taking only sanctioned, re…
patinaproject/skills
2
2
fix-ci Find failing PR checks, inspect logs or external check links, and apply focused fixes
patinaproject/skills
2
3
fix-merge-conflicts Resolve merge conflicts non-interactively, validate build and tests, and finalize conflict resolution
patinaproject/skills
2
4
gather-evidence Gather direct evidence from the current target before responding to a human change request or QA finding. Use when hu…
patinaproject/skills
2
5
get-pr-comments Fetch and summarize review comments from the active pull request
patinaproject/skills
2
6
how Use for "how does X work", code walkthroughs before changing something, and placement / ownership / layering question…
patinaproject/skills
2
7
interrogate Use for "interrogate", "adversarial review", "multi-model review", "challenge this", "stress test this code", "find b…
patinaproject/skills
2
8
maintain-verification-skill Periodic pass that keeps a project's verification skill and feature map honest: parallel source readers per feature, …
patinaproject/skills
2
9
make-pr-easy-to-review Prepare PRs for review by cleaning noisy history, improving PR descriptions, and adding reviewer guidance without cha…
patinaproject/skills
2
10
no-comments Spawn the comment-sicko subagent, fix accepted findings, and offer encodings for claimed constraints.
patinaproject/skills
2
11
principle-boundary-discipline Apply when wiring validation, error handling, or framework adapters. Concentrate guards at system boundaries (CLI, co…
patinaproject/skills
2
12
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…
patinaproject/skills
2
13
principle-encode-lessons-in-structure Apply when you catch yourself writing the same instruction a second time, or notice a recurring correction. Encode th…
patinaproject/skills
2
14
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…
patinaproject/skills
2
15
principle-experience-first Apply when product, UX, or feature-scope tradeoffs come up. Choose user delight over implementation convenience; ship…
patinaproject/skills
2
16
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…
patinaproject/skills
2
17
principle-foundational-thinking Apply before writing logic: choosing core types and data structures, sequencing scaffold-vs-feature work, asking what…
patinaproject/skills
2
18
principle-guard-the-context-window Apply when context is filling up: large outputs, long files, repeated reads, fan-out planning. Route bulk to subagent…
patinaproject/skills
2
19
principle-laziness-protocol Apply when refactoring, evaluating diff size, or tempted to add abstractions, layers, or signal threading. Bias towar…
patinaproject/skills
2
20
principle-make-operations-idempotent Apply when designing commands, lifecycle steps, or processing loops that run amid crashes, restarts, and retries. Con…
patinaproject/skills
2
21
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…
patinaproject/skills
2
22
principle-minimize-reader-load Apply when reviewing or shaping code that's hard to trace. Count layers between question and answer, and hidden state…
patinaproject/skills
2
23
principle-model-the-domain Apply when writing stateful logic, or when code branches a lot or repeats a shape assumption across files. Encode the…
patinaproject/skills
2
24
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…
patinaproject/skills
2
25
principle-offensive-programming Apply before writing an error handler, null check, fallback, optional chain over uncertain data, retry, assertion, gu…
patinaproject/skills
2
26
principle-outcome-oriented-execution Apply during planned rewrites and migrations with explicit phase boundaries. Converge on the target architecture; don…
patinaproject/skills
2
27
principle-prove-it-works Apply after completing a task, before declaring done. Verify against the real artifact (run the feature, read the act…
patinaproject/skills
2
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…
patinaproject/skills
2
29
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;…
patinaproject/skills
2
30
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…
patinaproject/skills
2
31
principle-subtract-before-you-add Apply when sequencing an addition, refactor, or rewrite. Remove dead weight, redundant validators, and stub reference…
patinaproject/skills
2
32
principle-type-system-discipline Apply when designing types, reviewing a function signature, or writing code in any statically-typed language. Make il…
patinaproject/skills
2
33
recall Reconstruct your recent working context from your own chat history, live state, and the shared record (user reports, …
patinaproject/skills
2
34
reflect Spawn three parallel review subagents over the active transcript, surface learnings, and route each to a concrete edi…
patinaproject/skills
2
35
resolve-qa-feedback Resolves tester-reported QA feedback through exact reproduction, development, fixed-build retest, and inspected visua…
patinaproject/skills
2
36
review-system-design Present important design agreements from a diff or specification to a human reviewer in plain language and dependency…
patinaproject/skills
2
37
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,…
patinaproject/skills
2
38
swarm Fan out N parallel workers, drain them, and return one report. Use for /swarm, 'swarm this', or parallel coverage, ra…
patinaproject/skills
2
39
tdd Use only when the user explicitly asks for TDD, a failing test, or a regression test, OR when the bug has an obvious …
patinaproject/skills
2
40
teach Explain a body of work plainly so a person actually understands it. Runs the `how` and `why` skills and weaves what t…
patinaproject/skills
2
41
technical-writing Layered technical-writing standard: Diátaxis structure, Google developer style sentences, STE instruction rules, Glob…
patinaproject/skills
2
42
thermo-nuclear-code-quality-review Run an extremely strict maintainability review for abstraction quality, giant files, and spaghetti-condition growth. …
patinaproject/skills
2
43
typescript-best-practices TypeScript best practices. Use when reading or editing any .ts or .tsx file.
patinaproject/skills
2
44
unslop Cut AI tells from any writing. Must always apply.
patinaproject/skills
2
45
what-did-i-get-done Summarize authored commits over a user-specified time period into a concise update
patinaproject/skills
2
46
why Use for 'why does X work this way', 'why we picked Y', design rationale, regressions, postmortems, or data-backed thr…
patinaproject/skills
2
47
working-on-issues Align one issue-linked engineering session with its live tracker, canonical branch, and isolated worktree. Use before…
patinaproject/skills
2
48
polish-branch Ready a branch for human review with two ordered settle-phases — deepen its architecture, then review it to green. Us…
patinaproject/skills
1
49
setup-pstack Configure pstack's provider-qualified models, per-family requested effort, and parent-owned routes per role. Verifies…
patinaproject/skills
1
50
writing-for-pstack Write or tighten an operator prompt for a patina-mode run. Use when the operator asks to write, revise, or review a p…
patinaproject/skills
1
Page 2 · 100 total Previous