📦 deps(skills): sync thirdparty skills

This commit is contained in:
ci[bot] 2026-06-21 09:15:28 +00:00
parent cfd0d2136a
commit a21149872f
6 changed files with 11 additions and 16 deletions

View File

@ -5,8 +5,7 @@ description: >
flags structural decay across a codebase, drawing on twelve classic engineering books. flags structural decay across a codebase, drawing on twelve classic engineering books.
Triggers when: user asks to audit architecture, review folder/module structure, Triggers when: user asks to audit architecture, review folder/module structure,
check for circular imports, understand how the codebase is organized, or asks check for circular imports, understand how the codebase is organized, or asks
"does this follow clean architecture?", "why does everything depend on everything?", "does this follow clean architecture?" or "why does everything depend on everything?".
"are our layers correct?", "where should this code live?".
Also triggers for onboarding requests: "explain this codebase to a new developer" Also triggers for onboarding requests: "explain this codebase to a new developer"
or "give me a codebase tour" (use onboarding mode). or "give me a codebase tour" (use onboarding mode).
Do NOT trigger for: PR-level code review (use brooks-review) or line-level refactoring Do NOT trigger for: PR-level code review (use brooks-review) or line-level refactoring

View File

@ -5,9 +5,8 @@ description: >
problems — helping teams build a refactoring roadmap — drawing on twelve classic problems — helping teams build a refactoring roadmap — drawing on twelve classic
engineering books. engineering books.
Triggers when: user asks about tech debt, refactoring priorities, what to clean up Triggers when: user asks about tech debt, refactoring priorities, what to clean up
first, or asks "why is this so hard to change?", "where's the most painful part?", first, or asks "why is this so hard to change?", "what should we fix first?", or
"what should we fix first?", "how do I justify refactoring to management?", "how do I justify refactoring to management?".
"why is our velocity dropping?".
Do NOT trigger for: server health checks, HTTP /health endpoints, Kubernetes probes, Do NOT trigger for: server health checks, HTTP /health endpoints, Kubernetes probes,
database health, or application uptime — "health" in those contexts is infrastructure, database health, or application uptime — "health" in those contexts is infrastructure,
not code quality. Also not for single-function refactoring questions. not code quality. Also not for single-function refactoring questions.

View File

@ -5,9 +5,8 @@ description: >
dimensions — PR quality, architecture, tech debt, and test quality — in a single dimensions — PR quality, architecture, tech debt, and test quality — in a single
pass, drawing on twelve classic engineering books. pass, drawing on twelve classic engineering books.
Triggers when: user wants an overall quality assessment, asks "how healthy is this Triggers when: user wants an overall quality assessment, asks "how healthy is this
codebase?", "run all the checks", "give me a big-picture quality report", "I need a codebase?", "run all the checks", "I need a health score before the release", or
health score before the release", "what's the overall state of our code?", or wants wants to onboard a new team with a quality overview.
to onboard a new team with a quality overview.
Do NOT trigger for: server health checks, HTTP health endpoints, Kubernetes Do NOT trigger for: server health checks, HTTP health endpoints, Kubernetes
liveness/readiness probes, database health, or application uptime. Also do not liveness/readiness probes, database health, or application uptime. Also do not
trigger when the user specifically requests only one dimension — use the trigger when the user specifically requests only one dimension — use the

View File

@ -8,9 +8,8 @@ description: >
code asking "does this look right?" / "any issues here?" / "ready to merge?", code asking "does this look right?" / "any issues here?" / "ready to merge?",
or asks for feedback on a function, class, or file. or asks for feedback on a function, class, or file.
Also triggers when user mentions: code smells / refactoring / clean architecture / Also triggers when user mentions: code smells / refactoring / clean architecture /
DDD / domain-driven design / SOLID principles / Hyrum's Law / deep modules / DDD / SOLID principles / Hyrum's Law / deep modules / tactical programming /
tactical programming / conceptual integrity / Brooks's Law / Mythical Man-Month / conceptual integrity / Brooks's Law / Mythical Man-Month / second system effect.
second system effect.
Do NOT trigger for: questions about how to write code from scratch, language syntax Do NOT trigger for: questions about how to write code from scratch, language syntax
questions, or framework/tool questions where no existing code is shared. questions, or framework/tool questions where no existing code is shared.
--- ---

View File

@ -6,12 +6,12 @@ description: >
codebase. Safe changes are auto-applied; risky changes are confirmed before codebase. Safe changes are auto-applied; risky changes are confirmed before
execution. Drawing on twelve classic engineering books. execution. Drawing on twelve classic engineering books.
Triggers when: user wants to "fix everything", "sweep the codebase", "auto-fix all Triggers when: user wants to "fix everything", "sweep the codebase", "auto-fix all
issues", "run all checks and fix them", "clean up the whole project", or asks for issues", "clean up the whole project", or asks for a single command that both
a single command that both diagnoses and remediates quality problems. diagnoses and remediates quality problems.
Do NOT trigger for: read-only audits or health reports where the user only wants Do NOT trigger for: read-only audits or health reports where the user only wants
findings without code changes; single-dimension reviews (use the focused skill findings without code changes; single-dimension reviews (use the focused skill
instead: brooks-review / brooks-audit / brooks-debt / brooks-test); server health instead: brooks-review / brooks-audit / brooks-debt / brooks-test); server health
checks, HTTP /health endpoints, Kubernetes probes, or application uptime. checks, HTTP /health endpoints, Kubernetes probes, database health, or application uptime.
--- ---
# Brooks-Lint — Full Sweep & Auto-Fix # Brooks-Lint — Full Sweep & Auto-Fix

View File

@ -8,8 +8,7 @@ description: >
poor readability. poor readability.
Triggers when: user asks about test quality, shares test files for review, or Triggers when: user asks about test quality, shares test files for review, or
expresses frustration: "tests keep breaking whenever I change anything", "our tests expresses frustration: "tests keep breaking whenever I change anything", "our tests
take forever", "I can't understand what this test is doing", "tests pass but bugs take forever", "tests pass but bugs still reach production", or "we have too many mocks".
still reach production", "we have too many mocks".
Do NOT trigger for: writing new tests from scratch (use the regular test-writing Do NOT trigger for: writing new tests from scratch (use the regular test-writing
workflow) or testing framework/syntax questions — this skill reviews an existing workflow) or testing framework/syntax questions — this skill reviews an existing
suite for structural quality problems, not individual test authoring. suite for structural quality problems, not individual test authoring.