agentbrew 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +39 -15
- package/dist/agents.yaml +173 -0
- package/dist/catalog.yaml +561 -0
- package/dist/cli.js +13598 -0
- package/dist/sources.yaml +131 -0
- package/package.json +3 -2
package/dist/catalog.yaml
CHANGED
|
@@ -0,0 +1,561 @@
|
|
|
1
|
+
# Catalog: best-in-class agent skills, MCP servers, rules, and sources
|
|
2
|
+
# Based on research in docs/catalog-research.md (March 2026)
|
|
3
|
+
# recommended: true = Tier 1 (every developer benefits)
|
|
4
|
+
# recommended: false = Tier 2/3 (strong or specialized)
|
|
5
|
+
|
|
6
|
+
skills:
|
|
7
|
+
# ── Tier 1: Always Recommend ──────────────────────────────────
|
|
8
|
+
|
|
9
|
+
- name: find-skills
|
|
10
|
+
description: "#1 on skills.sh — discover and install skills from the community"
|
|
11
|
+
source: vercel-labs/skills
|
|
12
|
+
category: meta
|
|
13
|
+
recommended: true
|
|
14
|
+
|
|
15
|
+
- name: debug
|
|
16
|
+
description: "Structured debugging — reproduce → isolate → hypothesize → fix → verify. Includes test failure grouping strategy."
|
|
17
|
+
source: built-in
|
|
18
|
+
category: development
|
|
19
|
+
recommended: true
|
|
20
|
+
|
|
21
|
+
- name: plan
|
|
22
|
+
description: "Feature decomposition into specs, tasks, and incremental chunks. JIRA integration, chunk templates, TASKS.md guidance."
|
|
23
|
+
source: built-in
|
|
24
|
+
category: planning
|
|
25
|
+
recommended: true
|
|
26
|
+
|
|
27
|
+
- name: commit
|
|
28
|
+
description: "Conventional commits with full pre-commit pipeline (tests, tsc, prettier, eslint). Multi-agent safety, 72-char headers."
|
|
29
|
+
source: built-in
|
|
30
|
+
category: git
|
|
31
|
+
recommended: true
|
|
32
|
+
|
|
33
|
+
- name: review
|
|
34
|
+
description: "Code review checklist — correctness, domain logic, quality, testing, performance, security. Structured feedback with concrete fixes."
|
|
35
|
+
source: built-in
|
|
36
|
+
category: git
|
|
37
|
+
recommended: true
|
|
38
|
+
|
|
39
|
+
- name: taste
|
|
40
|
+
description: "Premium UI design — 10 sections, 244 rules. Overrides LLM visual biases, enforces metric-based design, bans 100 AI tells."
|
|
41
|
+
source: built-in
|
|
42
|
+
category: design
|
|
43
|
+
recommended: true
|
|
44
|
+
|
|
45
|
+
- name: react-best-practices
|
|
46
|
+
description: "40+ rules across 8 categories from Vercel Engineering, impact-prioritized"
|
|
47
|
+
source: vercel-labs/agent-skills
|
|
48
|
+
category: development
|
|
49
|
+
recommended: true
|
|
50
|
+
|
|
51
|
+
- name: web-design-guidelines
|
|
52
|
+
description: "100+ UI/UX rules — accessibility, responsive design, performance, visual consistency"
|
|
53
|
+
source: vercel-labs/agent-skills
|
|
54
|
+
category: design
|
|
55
|
+
recommended: true
|
|
56
|
+
|
|
57
|
+
- name: frontend-design
|
|
58
|
+
description: "Anthropic's official design guidance — Chrome DevRel-quality"
|
|
59
|
+
source: anthropics/skills
|
|
60
|
+
category: design
|
|
61
|
+
recommended: true
|
|
62
|
+
|
|
63
|
+
- name: mcp-builder
|
|
64
|
+
description: "Guide for building MCP servers in Python and TypeScript"
|
|
65
|
+
source: anthropics/skills
|
|
66
|
+
category: development
|
|
67
|
+
recommended: true
|
|
68
|
+
|
|
69
|
+
- name: skill-creator
|
|
70
|
+
description: "Creates new agent skills following the agentskills.io specification"
|
|
71
|
+
source: built-in
|
|
72
|
+
category: meta
|
|
73
|
+
recommended: true
|
|
74
|
+
|
|
75
|
+
- name: next-task
|
|
76
|
+
description: "Pick and work on the next task from TASKS.md — autonomous coding loop with claim/complete lifecycle."
|
|
77
|
+
source: tasksmd/tasks.md
|
|
78
|
+
category: task-management
|
|
79
|
+
recommended: true
|
|
80
|
+
|
|
81
|
+
- name: agent-browser
|
|
82
|
+
description: "Browser automation CLI — navigate, snapshot, interact, screenshot, diff, auth. Replaces Playwright MCP."
|
|
83
|
+
source: vercel-labs/agent-browser
|
|
84
|
+
category: browser
|
|
85
|
+
recommended: true
|
|
86
|
+
|
|
87
|
+
- name: project-audit
|
|
88
|
+
description: "Deep audit across four lenses: no-brainer fixes, stability gaps, dependency modernization, documentation drift."
|
|
89
|
+
source: built-in
|
|
90
|
+
category: quality
|
|
91
|
+
recommended: true
|
|
92
|
+
|
|
93
|
+
- name: refactor
|
|
94
|
+
description: "Safe refactoring workflow: tests first, small incremental steps, verify after each change. Restructures without behavior change."
|
|
95
|
+
source: built-in
|
|
96
|
+
category: development
|
|
97
|
+
recommended: true
|
|
98
|
+
|
|
99
|
+
# ── Tier 2: Strong Recommendation ─────────────────────────────
|
|
100
|
+
|
|
101
|
+
- name: pr
|
|
102
|
+
description: "Creates draft PRs with conventional commit titles, JIRA links. Includes 'pr iterate' — rebase, lint, test, push workflow."
|
|
103
|
+
source: built-in
|
|
104
|
+
category: git
|
|
105
|
+
recommended: false
|
|
106
|
+
|
|
107
|
+
- name: pr-fix
|
|
108
|
+
description: "Reviews and fixes a PR branch in multiple passes: critique, cross-file consistency, verify, lint, push."
|
|
109
|
+
source: built-in
|
|
110
|
+
category: git
|
|
111
|
+
recommended: false
|
|
112
|
+
|
|
113
|
+
- name: pr-comments
|
|
114
|
+
description: "Resolves PR review comments — fetches, parses, groups by file, fixes, and verifies."
|
|
115
|
+
source: built-in
|
|
116
|
+
category: git
|
|
117
|
+
recommended: false
|
|
118
|
+
|
|
119
|
+
- name: composition-patterns
|
|
120
|
+
description: "React compound components, state lifting, dependency injection patterns"
|
|
121
|
+
source: built-in
|
|
122
|
+
category: development
|
|
123
|
+
recommended: false
|
|
124
|
+
|
|
125
|
+
- name: fix-styles
|
|
126
|
+
description: "Fixes visual styles by iterating with Storybook screenshots and Playwright snapshots. CSS, styled-components, layout."
|
|
127
|
+
source: built-in
|
|
128
|
+
category: design
|
|
129
|
+
recommended: false
|
|
130
|
+
|
|
131
|
+
- name: screenshot
|
|
132
|
+
description: "Takes screenshots via Playwright MCP or storybook-screenshot CLI. Auto-detects Storybook, dev servers, route definitions."
|
|
133
|
+
source: built-in
|
|
134
|
+
category: browser
|
|
135
|
+
recommended: false
|
|
136
|
+
|
|
137
|
+
- name: actionbook
|
|
138
|
+
description: "Pre-verified browser action manuals with DOM selectors — 10x faster site automation. Complements agent-browser with per-site knowledge."
|
|
139
|
+
source: actionbook/actionbook
|
|
140
|
+
category: browser
|
|
141
|
+
recommended: false
|
|
142
|
+
|
|
143
|
+
- name: doc-check
|
|
144
|
+
description: "Reviews documents (RFCs, READMEs, design docs) for structure, terminology, code-prose alignment, and contradictions."
|
|
145
|
+
source: built-in
|
|
146
|
+
category: writing
|
|
147
|
+
recommended: false
|
|
148
|
+
|
|
149
|
+
- name: rfc
|
|
150
|
+
description: "Writes RFC documents following 9-section structure with POC branch workflow. Google Docs compatible."
|
|
151
|
+
source: built-in
|
|
152
|
+
category: writing
|
|
153
|
+
recommended: false
|
|
154
|
+
|
|
155
|
+
- name: rfc-iterate
|
|
156
|
+
description: "Iterates on existing RFC + POC branch: syncs doc with code, critically reviews, tightens writing, verifies builds."
|
|
157
|
+
source: built-in
|
|
158
|
+
category: writing
|
|
159
|
+
recommended: false
|
|
160
|
+
|
|
161
|
+
- name: rfc-review
|
|
162
|
+
description: "Processes RFC feedback from Google Docs comments — summarizes by theme, proposes edits, applies after confirmation."
|
|
163
|
+
source: built-in
|
|
164
|
+
category: writing
|
|
165
|
+
recommended: false
|
|
166
|
+
|
|
167
|
+
- name: jira
|
|
168
|
+
description: "Creates Jira issues from PRDs/requirements. Story/Task types, priority mapping, epic linking, batch creation."
|
|
169
|
+
source: built-in
|
|
170
|
+
category: planning
|
|
171
|
+
recommended: false
|
|
172
|
+
|
|
173
|
+
- name: jira-task
|
|
174
|
+
description: "End-to-end Jira ticket lifecycle: research → branch → plan → implement (TDD) → validate → commit → PR."
|
|
175
|
+
source: built-in
|
|
176
|
+
category: planning
|
|
177
|
+
recommended: false
|
|
178
|
+
|
|
179
|
+
- name: github-actions-debugging
|
|
180
|
+
description: "Debugs failing GitHub Actions — identifies failure patterns, reproduces locally, applies minimal fixes."
|
|
181
|
+
source: built-in
|
|
182
|
+
category: development
|
|
183
|
+
recommended: false
|
|
184
|
+
|
|
185
|
+
- name: cursor-bg
|
|
186
|
+
description: "Delegates long-running tasks to Cursor background agent (tmux + cursor agent). Runs autonomously."
|
|
187
|
+
source: built-in
|
|
188
|
+
category: meta
|
|
189
|
+
recommended: false
|
|
190
|
+
|
|
191
|
+
- name: research-url
|
|
192
|
+
description: "Deep-researches a product URL and updates competitive docs, memory, task queue, and agent config."
|
|
193
|
+
source: built-in
|
|
194
|
+
category: meta
|
|
195
|
+
recommended: false
|
|
196
|
+
|
|
197
|
+
- name: markdown-for-gdoc
|
|
198
|
+
description: "Rules for writing markdown that renders correctly in Google Docs. Tables, code blocks, headings, diagrams."
|
|
199
|
+
source: built-in
|
|
200
|
+
category: writing
|
|
201
|
+
recommended: false
|
|
202
|
+
|
|
203
|
+
- name: webapp-testing
|
|
204
|
+
description: "Playwright-based testing toolkit from Anthropic"
|
|
205
|
+
source: anthropics/skills
|
|
206
|
+
category: testing
|
|
207
|
+
recommended: false
|
|
208
|
+
|
|
209
|
+
- name: shadcn
|
|
210
|
+
description: "Official shadcn/ui skill for component usage and patterns"
|
|
211
|
+
source: shadcn/ui
|
|
212
|
+
category: design
|
|
213
|
+
recommended: false
|
|
214
|
+
|
|
215
|
+
- name: next-best-practices
|
|
216
|
+
description: "Next.js best practices from Vercel"
|
|
217
|
+
source: vercel-labs/next-skills
|
|
218
|
+
category: development
|
|
219
|
+
recommended: false
|
|
220
|
+
|
|
221
|
+
# ── Tier 3: Specialized ────────────────────────────────────────
|
|
222
|
+
|
|
223
|
+
- name: postgres-best-practices
|
|
224
|
+
description: "8 categories of Postgres optimization from Supabase"
|
|
225
|
+
source: supabase/agent-skills
|
|
226
|
+
category: database
|
|
227
|
+
recommended: false
|
|
228
|
+
|
|
229
|
+
- name: playwright-best-practices
|
|
230
|
+
description: "Advanced Playwright patterns for heavy test suites"
|
|
231
|
+
source: currents-dev/playwright-best-practices-skill
|
|
232
|
+
category: testing
|
|
233
|
+
recommended: false
|
|
234
|
+
|
|
235
|
+
- name: react-native-guidelines
|
|
236
|
+
description: "16 rules across 7 sections for React Native projects"
|
|
237
|
+
source: vercel-labs/agent-skills
|
|
238
|
+
category: mobile
|
|
239
|
+
recommended: false
|
|
240
|
+
|
|
241
|
+
- name: sync-agent-config
|
|
242
|
+
description: "Syncs all agent rules, memories, skills, and config across tools (Windsurf, Cursor, Claude Code)."
|
|
243
|
+
source: built-in
|
|
244
|
+
category: meta
|
|
245
|
+
recommended: false
|
|
246
|
+
|
|
247
|
+
- name: dotfiles-development
|
|
248
|
+
description: "How to work with the chezmoi-powered dotfiles repo — conventions, file modes, testing, committing."
|
|
249
|
+
source: expertnetwrk-portal/dotfiles
|
|
250
|
+
category: dotfiles
|
|
251
|
+
recommended: false
|
|
252
|
+
|
|
253
|
+
- name: dotfiles-new-module
|
|
254
|
+
description: "Create a new doctor module — check types, checks.yaml format, severity assignment, testing."
|
|
255
|
+
source: expertnetwrk-portal/dotfiles
|
|
256
|
+
category: dotfiles
|
|
257
|
+
recommended: false
|
|
258
|
+
|
|
259
|
+
- name: dotfiles-doctor-debug
|
|
260
|
+
description: "Debug and fix dotfiles-doctor check failures — common patterns, overrides, fix flow."
|
|
261
|
+
source: expertnetwrk-portal/dotfiles
|
|
262
|
+
category: dotfiles
|
|
263
|
+
recommended: false
|
|
264
|
+
|
|
265
|
+
- name: remotion-best-practices
|
|
266
|
+
description: "#5 on skills.sh (147K installs). Programmatic video creation with Remotion."
|
|
267
|
+
source: remotion-dev/skills
|
|
268
|
+
category: creative
|
|
269
|
+
recommended: false
|
|
270
|
+
|
|
271
|
+
- name: subagent-driven-development
|
|
272
|
+
description: "Dispatch parallel sub-agents for independent tasks. Multi-agent orchestration pattern."
|
|
273
|
+
source: obra/superpowers
|
|
274
|
+
category: workflow
|
|
275
|
+
recommended: false
|
|
276
|
+
|
|
277
|
+
- name: executing-plans
|
|
278
|
+
description: "Execute plan files step by step with verification between stages."
|
|
279
|
+
source: obra/superpowers
|
|
280
|
+
category: workflow
|
|
281
|
+
recommended: false
|
|
282
|
+
|
|
283
|
+
- name: search
|
|
284
|
+
description: "Web search via Tavily API — real-time lookups, content extraction, site mapping."
|
|
285
|
+
source: tavily-ai/skills
|
|
286
|
+
category: utility
|
|
287
|
+
recommended: false
|
|
288
|
+
|
|
289
|
+
- name: static-analysis
|
|
290
|
+
description: "Trail of Bits — Semgrep + CodeQL security scanning with parallel rulesets, SARIF output, cross-file taint tracking."
|
|
291
|
+
source: trailofbits/skills
|
|
292
|
+
category: security
|
|
293
|
+
recommended: false
|
|
294
|
+
|
|
295
|
+
- name: supply-chain-risk-auditor
|
|
296
|
+
description: "Trail of Bits — dependency and supply chain security auditing for open-source risk assessment."
|
|
297
|
+
source: trailofbits/skills
|
|
298
|
+
category: security
|
|
299
|
+
recommended: false
|
|
300
|
+
|
|
301
|
+
- name: property-based-testing
|
|
302
|
+
description: "Trail of Bits — fuzzing and property-based testing for finding edge cases and invariant violations."
|
|
303
|
+
source: trailofbits/skills
|
|
304
|
+
category: security
|
|
305
|
+
recommended: false
|
|
306
|
+
|
|
307
|
+
- name: security-best-practices
|
|
308
|
+
description: "Security auditing patterns — dependency scanning, auth review, OWASP checks."
|
|
309
|
+
source: community
|
|
310
|
+
category: security
|
|
311
|
+
recommended: false
|
|
312
|
+
|
|
313
|
+
- name: better-auth-best-practices
|
|
314
|
+
description: "Authentication patterns with better-auth — sessions, OAuth, MFA, rate limiting."
|
|
315
|
+
source: community
|
|
316
|
+
category: security
|
|
317
|
+
recommended: false
|
|
318
|
+
|
|
319
|
+
# ── Orchestration (Bosun) ────────────────────────────────────────
|
|
320
|
+
|
|
321
|
+
- name: bosun
|
|
322
|
+
description: "Delegate tasks to Bosun orchestrator for autonomous multi-persona execution (research → plan → implement → test → review → PR)."
|
|
323
|
+
source: bosun-orchestrator/bosun
|
|
324
|
+
category: orchestration
|
|
325
|
+
recommended: false
|
|
326
|
+
|
|
327
|
+
- name: pipeline-ops
|
|
328
|
+
description: "Inspect, triage, and manage Bosun pipelines — check health, retry failures, merge ready PRs, clean up stale artifacts."
|
|
329
|
+
source: bosun-orchestrator/bosun
|
|
330
|
+
category: orchestration
|
|
331
|
+
recommended: false
|
|
332
|
+
|
|
333
|
+
- name: rescue-pipeline
|
|
334
|
+
description: "Rescue failed Bosun pipelines by salvaging code from worktrees, rebasing, fixing conflicts/tests, and creating PRs."
|
|
335
|
+
source: bosun-orchestrator/bosun
|
|
336
|
+
category: orchestration
|
|
337
|
+
recommended: false
|
|
338
|
+
|
|
339
|
+
- name: inspect-and-heal-pipelines
|
|
340
|
+
description: "Diagnose pipeline failures, stale state, and drift — then implement permanent self-healing fixes in the orchestrator code."
|
|
341
|
+
source: bosun-orchestrator/bosun
|
|
342
|
+
category: orchestration
|
|
343
|
+
recommended: false
|
|
344
|
+
|
|
345
|
+
- name: orchestrator-researcher
|
|
346
|
+
description: "Orchestrator persona: distinguished research lead who gathers all context before anyone plans. Explores codebase and asks targeted questions."
|
|
347
|
+
source: bosun-orchestrator/bosun
|
|
348
|
+
category: orchestration
|
|
349
|
+
recommended: false
|
|
350
|
+
|
|
351
|
+
- name: orchestrator-alternatives-analyst
|
|
352
|
+
description: "Orchestrator persona: reuse-first alternatives analysis. Compares extending existing code, third-party libraries, and building from scratch."
|
|
353
|
+
source: bosun-orchestrator/bosun
|
|
354
|
+
category: orchestration
|
|
355
|
+
recommended: false
|
|
356
|
+
|
|
357
|
+
- name: orchestrator-manager
|
|
358
|
+
description: "Orchestrator persona: decomposes research brief into a plan with acceptance criteria. Decides which personas are needed."
|
|
359
|
+
source: bosun-orchestrator/bosun
|
|
360
|
+
category: orchestration
|
|
361
|
+
recommended: false
|
|
362
|
+
|
|
363
|
+
- name: orchestrator-developer
|
|
364
|
+
description: "Orchestrator persona: implements code changes based on the plan. Writes clean, tested, production-ready code."
|
|
365
|
+
source: bosun-orchestrator/bosun
|
|
366
|
+
category: orchestration
|
|
367
|
+
recommended: false
|
|
368
|
+
|
|
369
|
+
- name: orchestrator-qa-engineer
|
|
370
|
+
description: "Orchestrator persona: tests implementation thoroughly — unit tests, integration tests, browser verification, and UX evaluation."
|
|
371
|
+
source: bosun-orchestrator/bosun
|
|
372
|
+
category: orchestration
|
|
373
|
+
recommended: false
|
|
374
|
+
|
|
375
|
+
- name: orchestrator-reviewer
|
|
376
|
+
description: "Orchestrator persona: reviews the complete diff for code quality, patterns, maintainability, and security. Writes the PR description."
|
|
377
|
+
source: bosun-orchestrator/bosun
|
|
378
|
+
category: orchestration
|
|
379
|
+
recommended: false
|
|
380
|
+
|
|
381
|
+
- name: orchestrator-user
|
|
382
|
+
description: "Orchestrator persona: critical end-user who tests from a specific user type's perspective. Very opinionated and hard to please."
|
|
383
|
+
source: bosun-orchestrator/bosun
|
|
384
|
+
category: orchestration
|
|
385
|
+
recommended: false
|
|
386
|
+
|
|
387
|
+
- name: orchestrator-pipeline-runner
|
|
388
|
+
description: "Run an AI engineering team pipeline interactively inside your current session with multiple specialized perspectives."
|
|
389
|
+
source: bosun-orchestrator/bosun
|
|
390
|
+
category: orchestration
|
|
391
|
+
recommended: false
|
|
392
|
+
|
|
393
|
+
- name: orchestrator-agent-improver
|
|
394
|
+
description: "Reads self-improvement notes from completed pipelines and applies targeted edits to persona SKILL.md files."
|
|
395
|
+
source: bosun-orchestrator/bosun
|
|
396
|
+
category: orchestration
|
|
397
|
+
recommended: false
|
|
398
|
+
|
|
399
|
+
- name: orchestrator-growth-hacker
|
|
400
|
+
description: "Orchestrator persona (optional): adoption strategy — distribution channels, README conversion, growth loops, 30-day launch plan."
|
|
401
|
+
source: bosun-orchestrator/bosun
|
|
402
|
+
category: orchestration
|
|
403
|
+
recommended: false
|
|
404
|
+
|
|
405
|
+
- name: orchestrator-indie-hacker
|
|
406
|
+
description: "Orchestrator persona (optional): thinks like a solo founder. Researches competing products and shapes task for end-user value."
|
|
407
|
+
source: bosun-orchestrator/bosun
|
|
408
|
+
category: orchestration
|
|
409
|
+
recommended: false
|
|
410
|
+
|
|
411
|
+
- name: orchestrator-strategist
|
|
412
|
+
description: "Orchestrator persona: decomposes project goals into milestone-based roadmaps, evaluates progress, and replans when metrics drift."
|
|
413
|
+
source: bosun-orchestrator/bosun
|
|
414
|
+
category: orchestration
|
|
415
|
+
recommended: false
|
|
416
|
+
|
|
417
|
+
mcp_servers:
|
|
418
|
+
# ── Recommended ─────────────────────────────────────────────────
|
|
419
|
+
|
|
420
|
+
- name: context7
|
|
421
|
+
description: Live documentation lookup — always up-to-date library docs
|
|
422
|
+
command: npx
|
|
423
|
+
args: ["-y", "@context7/mcp@latest"]
|
|
424
|
+
category: docs
|
|
425
|
+
recommended: true
|
|
426
|
+
|
|
427
|
+
- name: playwright
|
|
428
|
+
description: "Browser automation — navigate, click, fill forms, screenshot, test. 11.6k★."
|
|
429
|
+
command: npx
|
|
430
|
+
args: ["-y", "@playwright/mcp@latest"]
|
|
431
|
+
category: browser
|
|
432
|
+
recommended: true
|
|
433
|
+
|
|
434
|
+
# ── Development ────────────────────────────────────────────────
|
|
435
|
+
|
|
436
|
+
- name: github
|
|
437
|
+
description: "GitHub API — PRs, issues, repos, commits, branches. 15.2k★."
|
|
438
|
+
command: npx
|
|
439
|
+
args: ["-y", "@modelcontextprotocol/server-github"]
|
|
440
|
+
env:
|
|
441
|
+
GITHUB_PERSONAL_ACCESS_TOKEN: "${GITHUB_TOKEN}"
|
|
442
|
+
category: development
|
|
443
|
+
recommended: false
|
|
444
|
+
|
|
445
|
+
- name: filesystem
|
|
446
|
+
description: Sandboxed file read/write with security controls
|
|
447
|
+
command: npx
|
|
448
|
+
args: ["-y", "@modelcontextprotocol/server-filesystem", "${HOME}"]
|
|
449
|
+
category: development
|
|
450
|
+
recommended: false
|
|
451
|
+
|
|
452
|
+
- name: sentry
|
|
453
|
+
description: "Error tracking and performance monitoring — issues, events, releases. 173★."
|
|
454
|
+
command: npx
|
|
455
|
+
args: ["-y", "@sentry/mcp-server"]
|
|
456
|
+
env:
|
|
457
|
+
SENTRY_AUTH_TOKEN: "${SENTRY_AUTH_TOKEN}"
|
|
458
|
+
category: observability
|
|
459
|
+
recommended: false
|
|
460
|
+
|
|
461
|
+
# ── Data & Database ────────────────────────────────────────────
|
|
462
|
+
|
|
463
|
+
- name: postgres
|
|
464
|
+
description: Direct Postgres database access — natural-language SQL queries, schema exploration
|
|
465
|
+
command: npx
|
|
466
|
+
args: ["-y", "@modelcontextprotocol/server-postgres"]
|
|
467
|
+
category: database
|
|
468
|
+
recommended: false
|
|
469
|
+
|
|
470
|
+
# ── Search & Research ──────────────────────────────────────────
|
|
471
|
+
|
|
472
|
+
- name: brave-search
|
|
473
|
+
description: "Privacy-first web search — current results without tracking"
|
|
474
|
+
command: npx
|
|
475
|
+
args: ["-y", "@modelcontextprotocol/server-brave-search"]
|
|
476
|
+
env:
|
|
477
|
+
BRAVE_API_KEY: "${BRAVE_API_KEY}"
|
|
478
|
+
category: search
|
|
479
|
+
recommended: false
|
|
480
|
+
|
|
481
|
+
# ── Productivity ───────────────────────────────────────────────
|
|
482
|
+
|
|
483
|
+
- name: notion
|
|
484
|
+
description: "Read/write Notion pages, databases, and docs. Official server."
|
|
485
|
+
command: npx
|
|
486
|
+
args: ["-y", "@notionhq/notion-mcp-server"]
|
|
487
|
+
env:
|
|
488
|
+
OPENAPI_MCP_HEADERS: '{"Authorization": "Bearer ${NOTION_API_KEY}", "Notion-Version": "2022-06-28"}'
|
|
489
|
+
category: productivity
|
|
490
|
+
recommended: false
|
|
491
|
+
|
|
492
|
+
# ── Task Management ───────────────────────────────────────────
|
|
493
|
+
|
|
494
|
+
- name: tasks-mcp
|
|
495
|
+
description: "Read/write TASKS.md files — list, pick, claim, complete, add tasks. Spec-compliant task queue for agents."
|
|
496
|
+
command: npx
|
|
497
|
+
args: ["-y", "tasks-mcp"]
|
|
498
|
+
category: task-management
|
|
499
|
+
recommended: true
|
|
500
|
+
|
|
501
|
+
# ── Reasoning ──────────────────────────────────────────────────
|
|
502
|
+
|
|
503
|
+
- name: sequential-thinking
|
|
504
|
+
description: Step-by-step reasoning for complex problem solving
|
|
505
|
+
command: npx
|
|
506
|
+
args: ["-y", "@modelcontextprotocol/server-sequential-thinking"]
|
|
507
|
+
category: reasoning
|
|
508
|
+
recommended: false
|
|
509
|
+
|
|
510
|
+
- name: memory
|
|
511
|
+
description: "Persistent knowledge graph memory for agents — entities, relations, observations"
|
|
512
|
+
command: npx
|
|
513
|
+
args: ["-y", "@modelcontextprotocol/server-memory"]
|
|
514
|
+
category: reasoning
|
|
515
|
+
recommended: false
|
|
516
|
+
|
|
517
|
+
rules:
|
|
518
|
+
- name: conventional-commits
|
|
519
|
+
description: Enforce conventional commit format
|
|
520
|
+
category: git
|
|
521
|
+
recommended: true
|
|
522
|
+
content: |
|
|
523
|
+
Use conventional commits: feat:, fix:, docs:, refactor:, test:, chore:
|
|
524
|
+
Header must be ≤72 characters.
|
|
525
|
+
Include ticket number at end when available.
|
|
526
|
+
|
|
527
|
+
- name: test-before-commit
|
|
528
|
+
description: Always run tests before committing
|
|
529
|
+
category: testing
|
|
530
|
+
recommended: true
|
|
531
|
+
content: |
|
|
532
|
+
Run tests before every commit.
|
|
533
|
+
Write a failing test first (red/green TDD).
|
|
534
|
+
Never delete or weaken existing tests without explicit direction.
|
|
535
|
+
|
|
536
|
+
- name: minimal-changes
|
|
537
|
+
description: Prefer minimal, focused edits
|
|
538
|
+
category: code-quality
|
|
539
|
+
recommended: true
|
|
540
|
+
content: |
|
|
541
|
+
Prefer minimal, focused edits over large rewrites.
|
|
542
|
+
Address root cause instead of symptoms.
|
|
543
|
+
Avoid over-engineering — use single-line changes when sufficient.
|
|
544
|
+
|
|
545
|
+
- name: tasks-md-spec
|
|
546
|
+
description: "Follow the tasks.md spec (tasks.md) when reading or writing TASKS.md files"
|
|
547
|
+
category: task-management
|
|
548
|
+
recommended: true
|
|
549
|
+
content: |
|
|
550
|
+
TASKS.md files must follow the tasks.md spec (https://tasks.md):
|
|
551
|
+
- First line: `# Tasks`
|
|
552
|
+
- Priority sections: `## P0`, `## P1`, `## P2`, `## P3` (in order)
|
|
553
|
+
- Tasks use checkbox format: `- [ ] Task description`
|
|
554
|
+
- Metadata uses bold labels indented under the task:
|
|
555
|
+
`**ID**:`, `**Tags**:`, `**Details**:`, `**Files**:`, `**Acceptance**:`, `**Blocked by**:`
|
|
556
|
+
- Completed tasks are removed entirely (not marked [x]). History lives in git log.
|
|
557
|
+
- Claim tasks by appending (@agent-id) to the task line.
|
|
558
|
+
- Sub-tasks use nested `- [ ]` / `- [x]` under the parent.
|
|
559
|
+
- IDs are kebab-case and unique across all TASKS.md files in the repo.
|
|
560
|
+
- Validate with: `npx tasks-lint TASKS.md` (or `npx tasks-lint --fix TASKS.md` to auto-fix)
|
|
561
|
+
- Local: `node ~/apps/tasks.md/packages/lint/dist/cli.js TASKS.md`
|