agentscamp 0.2.1 → 0.4.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/README.md +4 -4
- package/content/agents/ci-cd-engineer.md +95 -0
- package/content/agents/cli-tooling-engineer.md +47 -0
- package/content/agents/context-engineer.md +68 -0
- package/content/agents/csharp-pro.md +73 -0
- package/content/agents/database-architect.md +90 -0
- package/content/agents/eval-driven-developer.md +47 -0
- package/content/agents/incident-responder.md +77 -0
- package/content/agents/java-pro.md +73 -0
- package/content/agents/qa-automation-engineer.md +92 -0
- package/content/commands/add-caching.md +79 -0
- package/content/commands/audit-accessibility.md +101 -0
- package/content/commands/clean-branches.md +113 -0
- package/content/commands/generate-e2e-test.md +98 -0
- package/content/commands/review-tests.md +98 -0
- package/content/commands/scaffold-dockerfile.md +111 -0
- package/content/commands/scaffold-github-action.md +94 -0
- package/content/commands/seed-data.md +63 -0
- package/content/commands/setup-precommit-hooks.md +72 -0
- package/content/commands/write-design-doc.md +78 -0
- package/content/manifest.json +436 -4
- package/content/skills/architecture-diagram-generator.md +78 -0
- package/content/skills/connection-pool-tuner.md +46 -0
- package/content/skills/dependency-upgrade-planner.md +42 -0
- package/content/skills/github-actions-optimizer.md +45 -0
- package/content/skills/load-test-designer.md +87 -0
- package/content/skills/memory-leak-hunter.md +35 -0
- package/content/skills/pagination-designer.md +51 -0
- package/content/skills/property-test-designer.md +63 -0
- package/content/skills/security-headers-hardener.md +79 -0
- package/content/skills/slo-definer.md +38 -0
- package/content/skills/structured-logging-designer.md +42 -0
- package/package.json +1 -1
package/content/manifest.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"generatedAt": "2026-06-
|
|
3
|
+
"generatedAt": "2026-06-18T02:21:30.142Z",
|
|
4
4
|
"counts": {
|
|
5
|
-
"agents":
|
|
6
|
-
"skills":
|
|
7
|
-
"commands":
|
|
5
|
+
"agents": 58,
|
|
6
|
+
"skills": 60,
|
|
7
|
+
"commands": 50
|
|
8
8
|
},
|
|
9
9
|
"items": [
|
|
10
10
|
{
|
|
@@ -113,6 +113,36 @@
|
|
|
113
113
|
"installAs": "agents/browser-agent-engineer.md",
|
|
114
114
|
"url": "https://agentscamp.com/agents/data-ai/browser-agent-engineer"
|
|
115
115
|
},
|
|
116
|
+
{
|
|
117
|
+
"id": "agents/ci-cd-engineer",
|
|
118
|
+
"type": "agent",
|
|
119
|
+
"slug": "ci-cd-engineer",
|
|
120
|
+
"category": "infrastructure-devops",
|
|
121
|
+
"title": "CI/CD Engineer",
|
|
122
|
+
"description": "Use this agent to design, speed up, and harden CI/CD pipelines on any provider (GitHub Actions, GitLab CI, CircleCI, Buildkite). Examples — setting up a build→test→deploy pipeline from scratch, cutting a 25-minute CI run down with caching and matrix parallelism, adding a canary or blue-green deploy with automatic rollback, or reviewing a workflow for leaked secrets, over-broad tokens, and unpinned third-party actions.",
|
|
123
|
+
"topics": [
|
|
124
|
+
"devops-infra"
|
|
125
|
+
],
|
|
126
|
+
"model": "sonnet",
|
|
127
|
+
"file": "agents/ci-cd-engineer.md",
|
|
128
|
+
"installAs": "agents/ci-cd-engineer.md",
|
|
129
|
+
"url": "https://agentscamp.com/agents/infrastructure-devops/ci-cd-engineer"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "agents/cli-tooling-engineer",
|
|
133
|
+
"type": "agent",
|
|
134
|
+
"slug": "cli-tooling-engineer",
|
|
135
|
+
"category": "developer-tools",
|
|
136
|
+
"title": "CLI Tooling Engineer",
|
|
137
|
+
"description": "Use this agent to design or build a command-line tool — subcommand and flag layout, --help and error UX, exit codes, --json/machine output, config precedence, stdin/stdout/stderr and pipe behavior, TTY/color/NO_COLOR detection, and CLI testing. Examples — \"design the command and flag surface for our new deploy CLI\", \"this tool prints errors to stdout and returns 0 on failure — fix its ergonomics\", \"make our command pipe-friendly and add a --json mode for CI\".",
|
|
138
|
+
"topics": [
|
|
139
|
+
"coding-languages"
|
|
140
|
+
],
|
|
141
|
+
"model": "sonnet",
|
|
142
|
+
"file": "agents/cli-tooling-engineer.md",
|
|
143
|
+
"installAs": "agents/cli-tooling-engineer.md",
|
|
144
|
+
"url": "https://agentscamp.com/agents/developer-tools/cli-tooling-engineer"
|
|
145
|
+
},
|
|
116
146
|
{
|
|
117
147
|
"id": "agents/cloud-architect",
|
|
118
148
|
"type": "agent",
|
|
@@ -144,6 +174,37 @@
|
|
|
144
174
|
"installAs": "agents/code-reviewer.md",
|
|
145
175
|
"url": "https://agentscamp.com/agents/quality-security/code-reviewer"
|
|
146
176
|
},
|
|
177
|
+
{
|
|
178
|
+
"id": "agents/context-engineer",
|
|
179
|
+
"type": "agent",
|
|
180
|
+
"slug": "context-engineer",
|
|
181
|
+
"category": "meta-orchestration",
|
|
182
|
+
"title": "Context Engineer",
|
|
183
|
+
"description": "Use this agent to engineer what an LLM agent carries in its context window — deciding what to include vs exclude vs retrieve on demand, designing project/agent memory (CLAUDE.md), compacting growing history, and allocating the token budget across system prompt, memory, retrieved docs, tool results, and conversation. Examples — \"my agent forgets the schema we agreed on three turns ago\", \"the agent gets dumber and more inconsistent as the chat grows\", \"we're burning 60k tokens of tool output every turn\", \"what should this support agent always know vs look up?\".",
|
|
184
|
+
"topics": [
|
|
185
|
+
"ai-agents-systems",
|
|
186
|
+
"workflow-prompting"
|
|
187
|
+
],
|
|
188
|
+
"model": "opus",
|
|
189
|
+
"file": "agents/context-engineer.md",
|
|
190
|
+
"installAs": "agents/context-engineer.md",
|
|
191
|
+
"url": "https://agentscamp.com/agents/meta-orchestration/context-engineer"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"id": "agents/csharp-pro",
|
|
195
|
+
"type": "agent",
|
|
196
|
+
"slug": "csharp-pro",
|
|
197
|
+
"category": "language-specialists",
|
|
198
|
+
"title": "C# Pro",
|
|
199
|
+
"description": "Use this agent for modern C#/.NET 8+ — records, pattern matching, nullable reference types, correct async/await, LINQ, Span<T>, and source generators — plus ASP.NET Core and EF Core. Examples — building a minimal-API service, fixing an EF Core N+1 or tracking leak, hunting a deadlock from sync-over-async, or turning on nullable reference types across a project.",
|
|
200
|
+
"topics": [
|
|
201
|
+
"coding-languages"
|
|
202
|
+
],
|
|
203
|
+
"model": "sonnet",
|
|
204
|
+
"file": "agents/csharp-pro.md",
|
|
205
|
+
"installAs": "agents/csharp-pro.md",
|
|
206
|
+
"url": "https://agentscamp.com/agents/language-specialists/csharp-pro"
|
|
207
|
+
},
|
|
147
208
|
{
|
|
148
209
|
"id": "agents/data-engineer",
|
|
149
210
|
"type": "agent",
|
|
@@ -174,6 +235,21 @@
|
|
|
174
235
|
"installAs": "agents/data-scientist.md",
|
|
175
236
|
"url": "https://agentscamp.com/agents/data-ai/data-scientist"
|
|
176
237
|
},
|
|
238
|
+
{
|
|
239
|
+
"id": "agents/database-architect",
|
|
240
|
+
"type": "agent",
|
|
241
|
+
"slug": "database-architect",
|
|
242
|
+
"category": "core-development",
|
|
243
|
+
"title": "Database Architect",
|
|
244
|
+
"description": "Use this agent to design data models and storage strategy from access patterns — schema design, normalization vs deliberate denormalization, relational vs document vs key-value vs wide-column vs graph selection, indexing, partitioning/sharding, transaction boundaries, and consistency models. Examples — modeling a new feature's schema, choosing a database for a write-heavy event workload, reviewing a schema for missing indexes or scaling cliffs, planning how to shard a table that no longer fits one node.",
|
|
245
|
+
"topics": [
|
|
246
|
+
"architecture"
|
|
247
|
+
],
|
|
248
|
+
"model": "opus",
|
|
249
|
+
"file": "agents/database-architect.md",
|
|
250
|
+
"installAs": "agents/database-architect.md",
|
|
251
|
+
"url": "https://agentscamp.com/agents/core-development/database-architect"
|
|
252
|
+
},
|
|
177
253
|
{
|
|
178
254
|
"id": "agents/debugger",
|
|
179
255
|
"type": "agent",
|
|
@@ -234,6 +310,22 @@
|
|
|
234
310
|
"installAs": "agents/documentation-engineer.md",
|
|
235
311
|
"url": "https://agentscamp.com/agents/developer-tools/documentation-engineer"
|
|
236
312
|
},
|
|
313
|
+
{
|
|
314
|
+
"id": "agents/eval-driven-developer",
|
|
315
|
+
"type": "agent",
|
|
316
|
+
"slug": "eval-driven-developer",
|
|
317
|
+
"category": "meta-orchestration",
|
|
318
|
+
"title": "Eval Driven Developer",
|
|
319
|
+
"description": "Use this agent to drive AI feature development with evals the way TDD drives code with tests — define success criteria and a representative eval set BEFORE iterating on prompts/models, then optimize against measured scores instead of vibes. Examples — \"make the summarizer better\" (turn it into measurable criteria first), \"our prompt change keeps regressing quality, set up a loop that catches it\", \"add an eval gate to CI so a model swap can't silently degrade output\", \"we tweak prompts and pray — give us a baseline and a change-by-change scoreboard\".",
|
|
320
|
+
"topics": [
|
|
321
|
+
"llm-evals",
|
|
322
|
+
"ai-agents-systems"
|
|
323
|
+
],
|
|
324
|
+
"model": "opus",
|
|
325
|
+
"file": "agents/eval-driven-developer.md",
|
|
326
|
+
"installAs": "agents/eval-driven-developer.md",
|
|
327
|
+
"url": "https://agentscamp.com/agents/meta-orchestration/eval-driven-developer"
|
|
328
|
+
},
|
|
237
329
|
{
|
|
238
330
|
"id": "agents/finetuning-engineer",
|
|
239
331
|
"type": "agent",
|
|
@@ -309,6 +401,36 @@
|
|
|
309
401
|
"installAs": "agents/graphql-architect.md",
|
|
310
402
|
"url": "https://agentscamp.com/agents/core-development/graphql-architect"
|
|
311
403
|
},
|
|
404
|
+
{
|
|
405
|
+
"id": "agents/incident-responder",
|
|
406
|
+
"type": "agent",
|
|
407
|
+
"slug": "incident-responder",
|
|
408
|
+
"category": "infrastructure-devops",
|
|
409
|
+
"title": "Incident Responder",
|
|
410
|
+
"description": "Use this agent during a live production incident to restore service fast and learn from it — triage and severity, mitigation-first action (roll back, fail over, shed load), change correlation, status updates, and the blameless postmortem. Examples — an alert just fired and the API is 5xx-ing, a deploy broke checkout and you need to decide rollback vs. forward-fix, latency is climbing and the pager is going off, or you're writing the postmortem the morning after.",
|
|
411
|
+
"topics": [
|
|
412
|
+
"devops-infra"
|
|
413
|
+
],
|
|
414
|
+
"model": "opus",
|
|
415
|
+
"file": "agents/incident-responder.md",
|
|
416
|
+
"installAs": "agents/incident-responder.md",
|
|
417
|
+
"url": "https://agentscamp.com/agents/infrastructure-devops/incident-responder"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"id": "agents/java-pro",
|
|
421
|
+
"type": "agent",
|
|
422
|
+
"slug": "java-pro",
|
|
423
|
+
"category": "language-specialists",
|
|
424
|
+
"title": "Java Pro",
|
|
425
|
+
"description": "Use this agent for idiomatic, modern Java (17/21+) — records, sealed types, pattern matching, virtual threads and structured concurrency, the Streams API, and JVM/GC performance. Examples — modernizing a legacy POJO-and-thread-pool service to records and virtual threads, diagnosing a GC pause or allocation hotspot, reviewing concurrency correctness, or fixing a Spring Boot service that blocks the wrong threads.",
|
|
426
|
+
"topics": [
|
|
427
|
+
"coding-languages"
|
|
428
|
+
],
|
|
429
|
+
"model": "sonnet",
|
|
430
|
+
"file": "agents/java-pro.md",
|
|
431
|
+
"installAs": "agents/java-pro.md",
|
|
432
|
+
"url": "https://agentscamp.com/agents/language-specialists/java-pro"
|
|
433
|
+
},
|
|
312
434
|
{
|
|
313
435
|
"id": "agents/kubernetes-specialist",
|
|
314
436
|
"type": "agent",
|
|
@@ -521,6 +643,21 @@
|
|
|
521
643
|
"installAs": "agents/python-pro.md",
|
|
522
644
|
"url": "https://agentscamp.com/agents/language-specialists/python-pro"
|
|
523
645
|
},
|
|
646
|
+
{
|
|
647
|
+
"id": "agents/qa-automation-engineer",
|
|
648
|
+
"type": "agent",
|
|
649
|
+
"slug": "qa-automation-engineer",
|
|
650
|
+
"category": "quality-security",
|
|
651
|
+
"title": "QA Automation Engineer",
|
|
652
|
+
"description": "Use this agent for end-to-end and UI test automation — building flake-resistant Playwright/Cypress suites, stabilizing flaky browser tests, structuring page objects and fixtures, and reviewing E2E suites. Examples — adding E2E coverage for a checkout or signup flow, killing a test that fails 1-in-5 in CI, choosing a framework and folder structure, replacing sleeps with web-first waits, or auditing a suite that's slow and brittle.",
|
|
653
|
+
"topics": [
|
|
654
|
+
"review-qa"
|
|
655
|
+
],
|
|
656
|
+
"model": "sonnet",
|
|
657
|
+
"file": "agents/qa-automation-engineer.md",
|
|
658
|
+
"installAs": "agents/qa-automation-engineer.md",
|
|
659
|
+
"url": "https://agentscamp.com/agents/quality-security/qa-automation-engineer"
|
|
660
|
+
},
|
|
524
661
|
{
|
|
525
662
|
"id": "agents/rag-pipeline-engineer",
|
|
526
663
|
"type": "agent",
|
|
@@ -749,6 +886,20 @@
|
|
|
749
886
|
"installAs": "agents/workflow-orchestrator.md",
|
|
750
887
|
"url": "https://agentscamp.com/agents/meta-orchestration/workflow-orchestrator"
|
|
751
888
|
},
|
|
889
|
+
{
|
|
890
|
+
"id": "commands/add-caching",
|
|
891
|
+
"type": "command",
|
|
892
|
+
"slug": "add-caching",
|
|
893
|
+
"category": "perf",
|
|
894
|
+
"title": "Add Caching",
|
|
895
|
+
"description": "Add a caching layer to one expensive function or endpoint correctly — confirm it's cacheable, design the cache key/TTL/layer/invalidation, handle stampedes, wrap the call in one place, and report the design.",
|
|
896
|
+
"topics": [
|
|
897
|
+
"devops-infra"
|
|
898
|
+
],
|
|
899
|
+
"file": "commands/add-caching.md",
|
|
900
|
+
"installAs": "commands/add-caching.md",
|
|
901
|
+
"url": "https://agentscamp.com/commands/perf/add-caching"
|
|
902
|
+
},
|
|
752
903
|
{
|
|
753
904
|
"id": "commands/add-docstrings",
|
|
754
905
|
"type": "command",
|
|
@@ -809,6 +960,20 @@
|
|
|
809
960
|
"installAs": "commands/add-streaming-endpoint.md",
|
|
810
961
|
"url": "https://agentscamp.com/commands/scaffold/add-streaming-endpoint"
|
|
811
962
|
},
|
|
963
|
+
{
|
|
964
|
+
"id": "commands/audit-accessibility",
|
|
965
|
+
"type": "command",
|
|
966
|
+
"slug": "audit-accessibility",
|
|
967
|
+
"category": "analyze",
|
|
968
|
+
"title": "Audit Accessibility",
|
|
969
|
+
"description": "Audit a component or page for accessibility against WCAG — semantics, names, keyboard, ARIA, contrast, forms, motion.",
|
|
970
|
+
"topics": [
|
|
971
|
+
"review-qa"
|
|
972
|
+
],
|
|
973
|
+
"file": "commands/audit-accessibility.md",
|
|
974
|
+
"installAs": "commands/audit-accessibility.md",
|
|
975
|
+
"url": "https://agentscamp.com/commands/analyze/audit-accessibility"
|
|
976
|
+
},
|
|
812
977
|
{
|
|
813
978
|
"id": "commands/benchmark-rerankers",
|
|
814
979
|
"type": "command",
|
|
@@ -838,6 +1003,20 @@
|
|
|
838
1003
|
"installAs": "commands/breakdown-task.md",
|
|
839
1004
|
"url": "https://agentscamp.com/commands/plan/breakdown-task"
|
|
840
1005
|
},
|
|
1006
|
+
{
|
|
1007
|
+
"id": "commands/clean-branches",
|
|
1008
|
+
"type": "command",
|
|
1009
|
+
"slug": "clean-branches",
|
|
1010
|
+
"category": "git",
|
|
1011
|
+
"title": "Clean Branches",
|
|
1012
|
+
"description": "Safely prune merged and stale Git branches: drop dead remote-tracking refs, list merged candidates for review, then delete with the safe -d variant.",
|
|
1013
|
+
"topics": [
|
|
1014
|
+
"review-qa"
|
|
1015
|
+
],
|
|
1016
|
+
"file": "commands/clean-branches.md",
|
|
1017
|
+
"installAs": "commands/clean-branches.md",
|
|
1018
|
+
"url": "https://agentscamp.com/commands/git/clean-branches"
|
|
1019
|
+
},
|
|
841
1020
|
{
|
|
842
1021
|
"id": "commands/commit",
|
|
843
1022
|
"type": "command",
|
|
@@ -1037,6 +1216,20 @@
|
|
|
1037
1216
|
"installAs": "commands/flaky-test-hunt.md",
|
|
1038
1217
|
"url": "https://agentscamp.com/commands/testing/flaky-test-hunt"
|
|
1039
1218
|
},
|
|
1219
|
+
{
|
|
1220
|
+
"id": "commands/generate-e2e-test",
|
|
1221
|
+
"type": "command",
|
|
1222
|
+
"slug": "generate-e2e-test",
|
|
1223
|
+
"category": "testing",
|
|
1224
|
+
"title": "Generate E2E Test",
|
|
1225
|
+
"description": "Scaffold a resilient end-to-end test for a user flow grounded in the real UI.",
|
|
1226
|
+
"topics": [
|
|
1227
|
+
"review-qa"
|
|
1228
|
+
],
|
|
1229
|
+
"file": "commands/generate-e2e-test.md",
|
|
1230
|
+
"installAs": "commands/generate-e2e-test.md",
|
|
1231
|
+
"url": "https://agentscamp.com/commands/testing/generate-e2e-test"
|
|
1232
|
+
},
|
|
1040
1233
|
{
|
|
1041
1234
|
"id": "commands/git-bisect",
|
|
1042
1235
|
"type": "command",
|
|
@@ -1166,6 +1359,20 @@
|
|
|
1166
1359
|
"installAs": "commands/review-pr.md",
|
|
1167
1360
|
"url": "https://agentscamp.com/commands/review/review-pr"
|
|
1168
1361
|
},
|
|
1362
|
+
{
|
|
1363
|
+
"id": "commands/review-tests",
|
|
1364
|
+
"type": "command",
|
|
1365
|
+
"slug": "review-tests",
|
|
1366
|
+
"category": "review",
|
|
1367
|
+
"title": "Review Tests",
|
|
1368
|
+
"description": "Review the quality of a test suite, not just whether it passes — find weak assertions, missing edge cases, and tests coupled to implementation.",
|
|
1369
|
+
"topics": [
|
|
1370
|
+
"review-qa"
|
|
1371
|
+
],
|
|
1372
|
+
"file": "commands/review-tests.md",
|
|
1373
|
+
"installAs": "commands/review-tests.md",
|
|
1374
|
+
"url": "https://agentscamp.com/commands/review/review-tests"
|
|
1375
|
+
},
|
|
1169
1376
|
{
|
|
1170
1377
|
"id": "commands/run-evals",
|
|
1171
1378
|
"type": "command",
|
|
@@ -1181,6 +1388,34 @@
|
|
|
1181
1388
|
"installAs": "commands/run-evals.md",
|
|
1182
1389
|
"url": "https://agentscamp.com/commands/testing/run-evals"
|
|
1183
1390
|
},
|
|
1391
|
+
{
|
|
1392
|
+
"id": "commands/scaffold-dockerfile",
|
|
1393
|
+
"type": "command",
|
|
1394
|
+
"slug": "scaffold-dockerfile",
|
|
1395
|
+
"category": "scaffold",
|
|
1396
|
+
"title": "Scaffold Dockerfile",
|
|
1397
|
+
"description": "Scaffold a production-grade multi-stage Dockerfile and .dockerignore for the current project.",
|
|
1398
|
+
"topics": [
|
|
1399
|
+
"devops-infra"
|
|
1400
|
+
],
|
|
1401
|
+
"file": "commands/scaffold-dockerfile.md",
|
|
1402
|
+
"installAs": "commands/scaffold-dockerfile.md",
|
|
1403
|
+
"url": "https://agentscamp.com/commands/scaffold/scaffold-dockerfile"
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"id": "commands/scaffold-github-action",
|
|
1407
|
+
"type": "command",
|
|
1408
|
+
"slug": "scaffold-github-action",
|
|
1409
|
+
"category": "scaffold",
|
|
1410
|
+
"title": "Scaffold GitHub Action",
|
|
1411
|
+
"description": "Scaffold a hardened GitHub Actions workflow for a stated goal, wired to the project's real test/lint/build commands.",
|
|
1412
|
+
"topics": [
|
|
1413
|
+
"devops-infra"
|
|
1414
|
+
],
|
|
1415
|
+
"file": "commands/scaffold-github-action.md",
|
|
1416
|
+
"installAs": "commands/scaffold-github-action.md",
|
|
1417
|
+
"url": "https://agentscamp.com/commands/scaffold/scaffold-github-action"
|
|
1418
|
+
},
|
|
1184
1419
|
{
|
|
1185
1420
|
"id": "commands/scaffold-pgvector-schema",
|
|
1186
1421
|
"type": "command",
|
|
@@ -1241,6 +1476,20 @@
|
|
|
1241
1476
|
"installAs": "commands/security-scan.md",
|
|
1242
1477
|
"url": "https://agentscamp.com/commands/review/security-scan"
|
|
1243
1478
|
},
|
|
1479
|
+
{
|
|
1480
|
+
"id": "commands/seed-data",
|
|
1481
|
+
"type": "command",
|
|
1482
|
+
"slug": "seed-data",
|
|
1483
|
+
"category": "db",
|
|
1484
|
+
"title": "Seed Data",
|
|
1485
|
+
"description": "Generate realistic, referentially-consistent seed data and a re-runnable seed script from your actual schema — types and constraints respected, plausible values, FK-dependency insert order, idempotent, never aimed at production.",
|
|
1486
|
+
"topics": [
|
|
1487
|
+
"data-ml"
|
|
1488
|
+
],
|
|
1489
|
+
"file": "commands/seed-data.md",
|
|
1490
|
+
"installAs": "commands/seed-data.md",
|
|
1491
|
+
"url": "https://agentscamp.com/commands/db/seed-data"
|
|
1492
|
+
},
|
|
1244
1493
|
{
|
|
1245
1494
|
"id": "commands/set-perf-budget",
|
|
1246
1495
|
"type": "command",
|
|
@@ -1271,6 +1520,20 @@
|
|
|
1271
1520
|
"installAs": "commands/setup-claude-ci.md",
|
|
1272
1521
|
"url": "https://agentscamp.com/commands/workflow/setup-claude-ci"
|
|
1273
1522
|
},
|
|
1523
|
+
{
|
|
1524
|
+
"id": "commands/setup-precommit-hooks",
|
|
1525
|
+
"type": "command",
|
|
1526
|
+
"slug": "setup-precommit-hooks",
|
|
1527
|
+
"category": "workflow",
|
|
1528
|
+
"title": "Setup Pre-commit Hooks",
|
|
1529
|
+
"description": "Set up fast pre-commit hooks that catch problems before they land — detect the repo's existing stack and hook mechanism, run lint/format/typecheck plus a secret scan on staged files only, keep the slow test suite in CI, and make the setup reproducible for the whole team.",
|
|
1530
|
+
"topics": [
|
|
1531
|
+
"devops-infra"
|
|
1532
|
+
],
|
|
1533
|
+
"file": "commands/setup-precommit-hooks.md",
|
|
1534
|
+
"installAs": "commands/setup-precommit-hooks.md",
|
|
1535
|
+
"url": "https://agentscamp.com/commands/workflow/setup-precommit-hooks"
|
|
1536
|
+
},
|
|
1274
1537
|
{
|
|
1275
1538
|
"id": "commands/sync-branch",
|
|
1276
1539
|
"type": "command",
|
|
@@ -1314,6 +1577,21 @@
|
|
|
1314
1577
|
"installAs": "commands/update-readme.md",
|
|
1315
1578
|
"url": "https://agentscamp.com/commands/docs/update-readme"
|
|
1316
1579
|
},
|
|
1580
|
+
{
|
|
1581
|
+
"id": "commands/write-design-doc",
|
|
1582
|
+
"type": "command",
|
|
1583
|
+
"slug": "write-design-doc",
|
|
1584
|
+
"category": "plan",
|
|
1585
|
+
"title": "Write Design Doc",
|
|
1586
|
+
"description": "Explore the codebase and write a decision-oriented design doc / RFC for a feature or system change.",
|
|
1587
|
+
"topics": [
|
|
1588
|
+
"architecture",
|
|
1589
|
+
"workflow-prompting"
|
|
1590
|
+
],
|
|
1591
|
+
"file": "commands/write-design-doc.md",
|
|
1592
|
+
"installAs": "commands/write-design-doc.md",
|
|
1593
|
+
"url": "https://agentscamp.com/commands/plan/write-design-doc"
|
|
1594
|
+
},
|
|
1317
1595
|
{
|
|
1318
1596
|
"id": "commands/write-tests",
|
|
1319
1597
|
"type": "command",
|
|
@@ -1357,6 +1635,20 @@
|
|
|
1357
1635
|
"installAs": "skills/agent-memory-designer/SKILL.md",
|
|
1358
1636
|
"url": "https://agentscamp.com/skills/workflow/agent-memory-designer"
|
|
1359
1637
|
},
|
|
1638
|
+
{
|
|
1639
|
+
"id": "skills/architecture-diagram-generator",
|
|
1640
|
+
"type": "skill",
|
|
1641
|
+
"slug": "architecture-diagram-generator",
|
|
1642
|
+
"category": "docs",
|
|
1643
|
+
"title": "Architecture Diagram Generator",
|
|
1644
|
+
"description": "Generate accurate architecture diagrams as Mermaid — straight from the codebase, not from imagination — by first choosing which view answers the question (container/component, sequence, ER, or state) and then reading the real entry points, module boundaries, service calls, and schema. Use when onboarding to an unfamiliar repo, documenting a system, or visualizing one complex flow.",
|
|
1645
|
+
"topics": [
|
|
1646
|
+
"architecture"
|
|
1647
|
+
],
|
|
1648
|
+
"file": "skills/architecture-diagram-generator.md",
|
|
1649
|
+
"installAs": "skills/architecture-diagram-generator/SKILL.md",
|
|
1650
|
+
"url": "https://agentscamp.com/skills/docs/architecture-diagram-generator"
|
|
1651
|
+
},
|
|
1360
1652
|
{
|
|
1361
1653
|
"id": "skills/auth-flow-reviewer",
|
|
1362
1654
|
"type": "skill",
|
|
@@ -1441,6 +1733,20 @@
|
|
|
1441
1733
|
"installAs": "skills/claude-settings-auditor/SKILL.md",
|
|
1442
1734
|
"url": "https://agentscamp.com/skills/workflow/claude-settings-auditor"
|
|
1443
1735
|
},
|
|
1736
|
+
{
|
|
1737
|
+
"id": "skills/connection-pool-tuner",
|
|
1738
|
+
"type": "skill",
|
|
1739
|
+
"slug": "connection-pool-tuner",
|
|
1740
|
+
"category": "database",
|
|
1741
|
+
"title": "Connection Pool Tuner",
|
|
1742
|
+
"description": "Size and tune a database connection pool from the real constraint — the database's shared max_connections and its core count — so total connections (per-instance pool × instance count) stay safely under the cap and a too-large pool stops adding latency. Use when the app throws 'too many connections' or pool-acquire timeouts, when the DB is saturated by connection count, or when deploying to serverless.",
|
|
1743
|
+
"topics": [
|
|
1744
|
+
"devops-infra"
|
|
1745
|
+
],
|
|
1746
|
+
"file": "skills/connection-pool-tuner.md",
|
|
1747
|
+
"installAs": "skills/connection-pool-tuner/SKILL.md",
|
|
1748
|
+
"url": "https://agentscamp.com/skills/database/connection-pool-tuner"
|
|
1749
|
+
},
|
|
1444
1750
|
{
|
|
1445
1751
|
"id": "skills/conventional-commits",
|
|
1446
1752
|
"type": "skill",
|
|
@@ -1497,6 +1803,20 @@
|
|
|
1497
1803
|
"installAs": "skills/dependency-audit/SKILL.md",
|
|
1498
1804
|
"url": "https://agentscamp.com/skills/security/dependency-audit"
|
|
1499
1805
|
},
|
|
1806
|
+
{
|
|
1807
|
+
"id": "skills/dependency-upgrade-planner",
|
|
1808
|
+
"type": "skill",
|
|
1809
|
+
"slug": "dependency-upgrade-planner",
|
|
1810
|
+
"category": "refactor",
|
|
1811
|
+
"title": "Dependency Upgrade Planner",
|
|
1812
|
+
"description": "Plan and de-risk a major dependency, framework, or runtime upgrade — map the full version path, read every intermediate migration guide, and pin the breaking changes to your actual call sites instead of bumping the number and hoping. Use when a key dependency is several majors behind, when a security advisory forces an upgrade, or before a framework migration.",
|
|
1813
|
+
"topics": [
|
|
1814
|
+
"devops-infra"
|
|
1815
|
+
],
|
|
1816
|
+
"file": "skills/dependency-upgrade-planner.md",
|
|
1817
|
+
"installAs": "skills/dependency-upgrade-planner/SKILL.md",
|
|
1818
|
+
"url": "https://agentscamp.com/skills/refactor/dependency-upgrade-planner"
|
|
1819
|
+
},
|
|
1500
1820
|
{
|
|
1501
1821
|
"id": "skills/embedding-index-tuner",
|
|
1502
1822
|
"type": "skill",
|
|
@@ -1555,6 +1875,20 @@
|
|
|
1555
1875
|
"installAs": "skills/finetune-dataset-builder/SKILL.md",
|
|
1556
1876
|
"url": "https://agentscamp.com/skills/data/finetune-dataset-builder"
|
|
1557
1877
|
},
|
|
1878
|
+
{
|
|
1879
|
+
"id": "skills/github-actions-optimizer",
|
|
1880
|
+
"type": "skill",
|
|
1881
|
+
"slug": "github-actions-optimizer",
|
|
1882
|
+
"category": "workflow",
|
|
1883
|
+
"title": "GitHub Actions Optimizer",
|
|
1884
|
+
"description": "Make a GitHub Actions workflow faster, cheaper, and harder to attack — by profiling where wall-clock and billed minutes actually go, then adding content-keyed caching, matrix/job parallelism, run-cancellation, and path filters, and hardening the supply chain (SHA-pinned actions, least-privilege GITHUB_TOKEN, safe fork-PR handling). Use when CI is slow or queues, when a repo burns Actions minutes, or before trusting a workflow that runs on untrusted pull requests.",
|
|
1885
|
+
"topics": [
|
|
1886
|
+
"devops-infra"
|
|
1887
|
+
],
|
|
1888
|
+
"file": "skills/github-actions-optimizer.md",
|
|
1889
|
+
"installAs": "skills/github-actions-optimizer/SKILL.md",
|
|
1890
|
+
"url": "https://agentscamp.com/skills/workflow/github-actions-optimizer"
|
|
1891
|
+
},
|
|
1558
1892
|
{
|
|
1559
1893
|
"id": "skills/graphrag-scaffolder",
|
|
1560
1894
|
"type": "skill",
|
|
@@ -1653,6 +1987,20 @@
|
|
|
1653
1987
|
"installAs": "skills/llm-output-schema-generator/SKILL.md",
|
|
1654
1988
|
"url": "https://agentscamp.com/skills/api/llm-output-schema-generator"
|
|
1655
1989
|
},
|
|
1990
|
+
{
|
|
1991
|
+
"id": "skills/load-test-designer",
|
|
1992
|
+
"type": "skill",
|
|
1993
|
+
"slug": "load-test-designer",
|
|
1994
|
+
"category": "performance",
|
|
1995
|
+
"title": "Load Test Designer",
|
|
1996
|
+
"description": "Design a defensible load test — a realistic workload model, a deliberate test type, and SLO-tied pass/fail thresholds — instead of a meaningless tight-loop script that hammers one endpoint. Use when validating capacity or SLOs before a launch or scaling event, when sizing infrastructure, or when an existing load test reports averages that nobody trusts.",
|
|
1997
|
+
"topics": [
|
|
1998
|
+
"devops-infra"
|
|
1999
|
+
],
|
|
2000
|
+
"file": "skills/load-test-designer.md",
|
|
2001
|
+
"installAs": "skills/load-test-designer/SKILL.md",
|
|
2002
|
+
"url": "https://agentscamp.com/skills/performance/load-test-designer"
|
|
2003
|
+
},
|
|
1656
2004
|
{
|
|
1657
2005
|
"id": "skills/mcp-server-scaffolder",
|
|
1658
2006
|
"type": "skill",
|
|
@@ -1668,6 +2016,20 @@
|
|
|
1668
2016
|
"installAs": "skills/mcp-server-scaffolder/SKILL.md",
|
|
1669
2017
|
"url": "https://agentscamp.com/skills/api/mcp-server-scaffolder"
|
|
1670
2018
|
},
|
|
2019
|
+
{
|
|
2020
|
+
"id": "skills/memory-leak-hunter",
|
|
2021
|
+
"type": "skill",
|
|
2022
|
+
"slug": "memory-leak-hunter",
|
|
2023
|
+
"category": "performance",
|
|
2024
|
+
"title": "Memory Leak Hunter",
|
|
2025
|
+
"description": "Find and fix a memory leak in a running app: confirm it's a real leak under steady load, diff two heap snapshots to name the growing object and its retention path, cut the root reference that blocks collection, and re-run to confirm memory plateaus. Use when RSS climbs until OOM/restart, heap grows unbounded across a steady workload, or GC pauses worsen the longer the process runs.",
|
|
2026
|
+
"topics": [
|
|
2027
|
+
"review-qa"
|
|
2028
|
+
],
|
|
2029
|
+
"file": "skills/memory-leak-hunter.md",
|
|
2030
|
+
"installAs": "skills/memory-leak-hunter/SKILL.md",
|
|
2031
|
+
"url": "https://agentscamp.com/skills/performance/memory-leak-hunter"
|
|
2032
|
+
},
|
|
1671
2033
|
{
|
|
1672
2034
|
"id": "skills/migration-writer",
|
|
1673
2035
|
"type": "skill",
|
|
@@ -1725,6 +2087,20 @@
|
|
|
1725
2087
|
"installAs": "skills/openapi-doc-writer/SKILL.md",
|
|
1726
2088
|
"url": "https://agentscamp.com/skills/docs/openapi-doc-writer"
|
|
1727
2089
|
},
|
|
2090
|
+
{
|
|
2091
|
+
"id": "skills/pagination-designer",
|
|
2092
|
+
"type": "skill",
|
|
2093
|
+
"slug": "pagination-designer",
|
|
2094
|
+
"category": "api",
|
|
2095
|
+
"title": "Pagination Designer",
|
|
2096
|
+
"description": "Design correct, scalable pagination (plus the filtering and sorting that ride with it) for a list endpoint — pick cursor (keyset) vs offset and justify it, define an opaque cursor with a unique tiebreaker so no row is skipped or repeated, return a consistent envelope, bound page size, and name the indexes the sort actually needs. Use when adding a list endpoint, when OFFSET pagination crawls on a large table, or when clients see duplicate or missing rows while paging.",
|
|
2097
|
+
"topics": [
|
|
2098
|
+
"architecture"
|
|
2099
|
+
],
|
|
2100
|
+
"file": "skills/pagination-designer.md",
|
|
2101
|
+
"installAs": "skills/pagination-designer/SKILL.md",
|
|
2102
|
+
"url": "https://agentscamp.com/skills/api/pagination-designer"
|
|
2103
|
+
},
|
|
1728
2104
|
{
|
|
1729
2105
|
"id": "skills/plugin-scaffolder",
|
|
1730
2106
|
"type": "skill",
|
|
@@ -1824,6 +2200,20 @@
|
|
|
1824
2200
|
"installAs": "skills/prompt-regression-tester/SKILL.md",
|
|
1825
2201
|
"url": "https://agentscamp.com/skills/data/prompt-regression-tester"
|
|
1826
2202
|
},
|
|
2203
|
+
{
|
|
2204
|
+
"id": "skills/property-test-designer",
|
|
2205
|
+
"type": "skill",
|
|
2206
|
+
"slug": "property-test-designer",
|
|
2207
|
+
"category": "testing",
|
|
2208
|
+
"title": "Property Test Designer",
|
|
2209
|
+
"description": "Design property-based tests — generate hundreds of random inputs and assert invariants that must hold for ALL of them — to surface the edge cases hand-picked examples never reach. Use when code has a large input space (parsers, serializers, encoders, math, data transforms), when a bug keeps slipping through despite green example tests, or when you can't enumerate every case worth checking.",
|
|
2210
|
+
"topics": [
|
|
2211
|
+
"review-qa"
|
|
2212
|
+
],
|
|
2213
|
+
"file": "skills/property-test-designer.md",
|
|
2214
|
+
"installAs": "skills/property-test-designer/SKILL.md",
|
|
2215
|
+
"url": "https://agentscamp.com/skills/testing/property-test-designer"
|
|
2216
|
+
},
|
|
1827
2217
|
{
|
|
1828
2218
|
"id": "skills/provider-fallback-wrapper",
|
|
1829
2219
|
"type": "skill",
|
|
@@ -1910,6 +2300,20 @@
|
|
|
1910
2300
|
"installAs": "skills/secret-scanner/SKILL.md",
|
|
1911
2301
|
"url": "https://agentscamp.com/skills/security/secret-scanner"
|
|
1912
2302
|
},
|
|
2303
|
+
{
|
|
2304
|
+
"id": "skills/security-headers-hardener",
|
|
2305
|
+
"type": "skill",
|
|
2306
|
+
"slug": "security-headers-hardener",
|
|
2307
|
+
"category": "security",
|
|
2308
|
+
"title": "Security Headers Hardener",
|
|
2309
|
+
"description": "Audit and harden a web app's or API's HTTP security headers — Content-Security-Policy, HSTS, X-Content-Type-Options, frame-ancestors, Referrer-Policy, Permissions-Policy, and CORS — and produce a staged rollout that won't break the site. Use before a launch, during a security pass, or when a scanner (Mozilla Observatory, securityheaders.com, a pentest) flags missing or weak headers. Audits and edits header config; rolls CSP out Report-Only first.",
|
|
2310
|
+
"topics": [
|
|
2311
|
+
"review-qa"
|
|
2312
|
+
],
|
|
2313
|
+
"file": "skills/security-headers-hardener.md",
|
|
2314
|
+
"installAs": "skills/security-headers-hardener/SKILL.md",
|
|
2315
|
+
"url": "https://agentscamp.com/skills/security/security-headers-hardener"
|
|
2316
|
+
},
|
|
1913
2317
|
{
|
|
1914
2318
|
"id": "skills/semver-advisor",
|
|
1915
2319
|
"type": "skill",
|
|
@@ -1924,6 +2328,20 @@
|
|
|
1924
2328
|
"installAs": "skills/semver-advisor/SKILL.md",
|
|
1925
2329
|
"url": "https://agentscamp.com/skills/release/semver-advisor"
|
|
1926
2330
|
},
|
|
2331
|
+
{
|
|
2332
|
+
"id": "skills/slo-definer",
|
|
2333
|
+
"type": "skill",
|
|
2334
|
+
"slug": "slo-definer",
|
|
2335
|
+
"category": "observability",
|
|
2336
|
+
"title": "SLO Definer",
|
|
2337
|
+
"description": "Turn a vague reliability goal into concrete SLIs, SLOs, an error budget, and burn-rate alerts — service-level indicators measured at the user-facing boundary, targets over a rolling window, and a written policy for what happens when the budget runs out. Use when a service has no defined reliability target, when on-call is noisy and alert-fatigued, or before you commit to an SLA you can't measure.",
|
|
2338
|
+
"topics": [
|
|
2339
|
+
"devops-infra"
|
|
2340
|
+
],
|
|
2341
|
+
"file": "skills/slo-definer.md",
|
|
2342
|
+
"installAs": "skills/slo-definer/SKILL.md",
|
|
2343
|
+
"url": "https://agentscamp.com/skills/observability/slo-definer"
|
|
2344
|
+
},
|
|
1927
2345
|
{
|
|
1928
2346
|
"id": "skills/sql-optimizer",
|
|
1929
2347
|
"type": "skill",
|
|
@@ -1938,6 +2356,20 @@
|
|
|
1938
2356
|
"installAs": "skills/sql-optimizer/SKILL.md",
|
|
1939
2357
|
"url": "https://agentscamp.com/skills/data/sql-optimizer"
|
|
1940
2358
|
},
|
|
2359
|
+
{
|
|
2360
|
+
"id": "skills/structured-logging-designer",
|
|
2361
|
+
"type": "skill",
|
|
2362
|
+
"slug": "structured-logging-designer",
|
|
2363
|
+
"category": "observability",
|
|
2364
|
+
"title": "Structured Logging Designer",
|
|
2365
|
+
"description": "Design a structured (JSON) logging strategy with a stable field schema, correlation-ID propagation, and a disciplined level policy — then migrate ad-hoc string logs toward it. Use when logs are unsearchable plain text, when debugging a request across services means grepping multiple log streams by hand, or when standing up logging for a new service.",
|
|
2366
|
+
"topics": [
|
|
2367
|
+
"devops-infra"
|
|
2368
|
+
],
|
|
2369
|
+
"file": "skills/structured-logging-designer.md",
|
|
2370
|
+
"installAs": "skills/structured-logging-designer/SKILL.md",
|
|
2371
|
+
"url": "https://agentscamp.com/skills/observability/structured-logging-designer"
|
|
2372
|
+
},
|
|
1941
2373
|
{
|
|
1942
2374
|
"id": "skills/test-scaffolder",
|
|
1943
2375
|
"type": "skill",
|