agentscamp 0.4.0 → 0.6.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.
Files changed (33) hide show
  1. package/README.md +2 -2
  2. package/content/manifest.json +423 -2
  3. package/content/skills/agent-trajectory-evaluator.md +59 -0
  4. package/content/skills/alerting-rules-tuner.md +49 -0
  5. package/content/skills/canary-release-planner.md +35 -0
  6. package/content/skills/circular-dependency-breaker.md +48 -0
  7. package/content/skills/cold-start-optimizer.md +83 -0
  8. package/content/skills/commit-splitter.md +54 -0
  9. package/content/skills/contract-test-designer.md +70 -0
  10. package/content/skills/dashboard-designer.md +38 -0
  11. package/content/skills/deadlock-diagnoser.md +45 -0
  12. package/content/skills/devcontainer-designer.md +40 -0
  13. package/content/skills/distributed-tracing-instrumenter.md +42 -0
  14. package/content/skills/feature-flag-retirer.md +44 -0
  15. package/content/skills/flamegraph-analyzer.md +35 -0
  16. package/content/skills/git-blame-investigator.md +34 -0
  17. package/content/skills/graphql-schema-designer.md +49 -0
  18. package/content/skills/hallucination-evaluator.md +40 -0
  19. package/content/skills/idempotency-designer.md +47 -0
  20. package/content/skills/integration-test-designer.md +81 -0
  21. package/content/skills/model-router-designer.md +39 -0
  22. package/content/skills/mutation-test-runner.md +64 -0
  23. package/content/skills/onboarding-guide-writer.md +84 -0
  24. package/content/skills/query-plan-analyzer.md +49 -0
  25. package/content/skills/rbac-designer.md +82 -0
  26. package/content/skills/release-notes-writer.md +78 -0
  27. package/content/skills/runbook-writer.md +83 -0
  28. package/content/skills/semantic-cache-designer.md +40 -0
  29. package/content/skills/strangler-fig-migrator.md +47 -0
  30. package/content/skills/threat-model-builder.md +46 -0
  31. package/content/skills/token-usage-profiler.md +39 -0
  32. package/content/skills/web-vitals-optimizer.md +34 -0
  33. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # agentscamp
2
2
 
3
- > 168 ready-to-use Claude Code agents, skills, and slash commands — installable in one command.
3
+ > 198 ready-to-use Claude Code agents, skills, and slash commands — installable in one command.
4
4
 
5
5
  [AgentsCamp](https://agentscamp.com) is a curated, format-validated directory of AI coding artifacts. This CLI bundles the full catalog and installs items straight into your `.claude/` directory.
6
6
 
@@ -43,7 +43,7 @@ These are Claude Code's standard locations — agents get delegated to automatic
43
43
  ## What's inside
44
44
 
45
45
  - **58 agents** — specialized subagents for development, data/AI, infra, security, and more → [browse agents](https://agentscamp.com/agents)
46
- - **60 skills** — on-demand capabilities for testing, databases, refactoring, releases → [browse skills](https://agentscamp.com/skills)
46
+ - **90 skills** — on-demand capabilities for testing, databases, refactoring, releases → [browse skills](https://agentscamp.com/skills)
47
47
  - **50 commands** — reusable slash commands for planning, review, git, scaffolding → [browse commands](https://agentscamp.com/commands)
48
48
 
49
49
  Every item has a full page with docs, examples, and related picks at [agentscamp.com](https://agentscamp.com).
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "generatedAt": "2026-06-18T02:21:30.142Z",
3
+ "generatedAt": "2026-06-18T02:50:33.985Z",
4
4
  "counts": {
5
5
  "agents": 58,
6
- "skills": 60,
6
+ "skills": 90,
7
7
  "commands": 50
8
8
  },
9
9
  "items": [
@@ -1635,6 +1635,35 @@
1635
1635
  "installAs": "skills/agent-memory-designer/SKILL.md",
1636
1636
  "url": "https://agentscamp.com/skills/workflow/agent-memory-designer"
1637
1637
  },
1638
+ {
1639
+ "id": "skills/agent-trajectory-evaluator",
1640
+ "type": "skill",
1641
+ "slug": "agent-trajectory-evaluator",
1642
+ "category": "data",
1643
+ "title": "Agent Trajectory Evaluator",
1644
+ "description": "Evaluate a multi-step AI agent's whole run — tool calls, intermediate steps, and final result — not just final-answer correctness, so you can pinpoint WHERE it went wrong. Use when building or debugging a tool-using or multi-step agent, when final-answer-only evals can't explain failures, or when a prompt/model change quietly makes the agent less efficient or more error-prone even though the answer still looks right.",
1645
+ "topics": [
1646
+ "llm-evals",
1647
+ "ai-agents-systems"
1648
+ ],
1649
+ "file": "skills/agent-trajectory-evaluator.md",
1650
+ "installAs": "skills/agent-trajectory-evaluator/SKILL.md",
1651
+ "url": "https://agentscamp.com/skills/data/agent-trajectory-evaluator"
1652
+ },
1653
+ {
1654
+ "id": "skills/alerting-rules-tuner",
1655
+ "type": "skill",
1656
+ "slug": "alerting-rules-tuner",
1657
+ "category": "observability",
1658
+ "title": "Alerting Rules Tuner",
1659
+ "description": "Cut alert noise and make every page mean something — rewrite alerting rules to fire on user-felt symptoms (error rate, latency SLO burn, failed requests) instead of causes (high CPU, full disk), with duration windows and severity routing so only urgent, actionable conditions reach a human. Use when on-call is fatigued by low-value pages, when real incidents get missed in the noise, or when alerts fire on causes rather than impact.",
1660
+ "topics": [
1661
+ "devops-infra"
1662
+ ],
1663
+ "file": "skills/alerting-rules-tuner.md",
1664
+ "installAs": "skills/alerting-rules-tuner/SKILL.md",
1665
+ "url": "https://agentscamp.com/skills/observability/alerting-rules-tuner"
1666
+ },
1638
1667
  {
1639
1668
  "id": "skills/architecture-diagram-generator",
1640
1669
  "type": "skill",
@@ -1691,6 +1720,20 @@
1691
1720
  "installAs": "skills/bundle-analyzer/SKILL.md",
1692
1721
  "url": "https://agentscamp.com/skills/performance/bundle-analyzer"
1693
1722
  },
1723
+ {
1724
+ "id": "skills/canary-release-planner",
1725
+ "type": "skill",
1726
+ "slug": "canary-release-planner",
1727
+ "category": "release",
1728
+ "title": "Canary Release Planner",
1729
+ "description": "Design a canary / progressive rollout so a bad release reaches 1% of users instead of 100% — staged traffic with bake times, gating metrics compared against the concurrently-running stable baseline, and automated promote-or-rollback. Use when shipping a risky change, when you want automatic rollback on regression, or when moving off all-at-once deploys.",
1730
+ "topics": [
1731
+ "devops-infra"
1732
+ ],
1733
+ "file": "skills/canary-release-planner.md",
1734
+ "installAs": "skills/canary-release-planner/SKILL.md",
1735
+ "url": "https://agentscamp.com/skills/release/canary-release-planner"
1736
+ },
1694
1737
  {
1695
1738
  "id": "skills/changelog-from-prs",
1696
1739
  "type": "skill",
@@ -1719,6 +1762,20 @@
1719
1762
  "installAs": "skills/chunking-strategy-optimizer/SKILL.md",
1720
1763
  "url": "https://agentscamp.com/skills/data/chunking-strategy-optimizer"
1721
1764
  },
1765
+ {
1766
+ "id": "skills/circular-dependency-breaker",
1767
+ "type": "skill",
1768
+ "slug": "circular-dependency-breaker",
1769
+ "category": "refactor",
1770
+ "title": "Circular Dependency Breaker",
1771
+ "description": "Detect and break a circular import — map the exact cycle with a real tool, then break the right edge by extracting the shared piece into a leaf module, inverting a layering dependency, merging two falsely-split modules, or (last resort) deferring an import. Use when you hit an import cycle error, an undefined-on-import or 'cannot access before initialization' bug, or a bundler/linter flags a cycle.",
1772
+ "topics": [
1773
+ "coding-languages"
1774
+ ],
1775
+ "file": "skills/circular-dependency-breaker.md",
1776
+ "installAs": "skills/circular-dependency-breaker/SKILL.md",
1777
+ "url": "https://agentscamp.com/skills/refactor/circular-dependency-breaker"
1778
+ },
1722
1779
  {
1723
1780
  "id": "skills/claude-settings-auditor",
1724
1781
  "type": "skill",
@@ -1733,6 +1790,34 @@
1733
1790
  "installAs": "skills/claude-settings-auditor/SKILL.md",
1734
1791
  "url": "https://agentscamp.com/skills/workflow/claude-settings-auditor"
1735
1792
  },
1793
+ {
1794
+ "id": "skills/cold-start-optimizer",
1795
+ "type": "skill",
1796
+ "slug": "cold-start-optimizer",
1797
+ "category": "performance",
1798
+ "title": "Cold Start Optimizer",
1799
+ "description": "Cut cold-start latency for serverless functions and slow-booting apps by measuring the init breakdown, then attacking the dominant phase — artifact size, eager imports, eager connections, or under-provisioned memory — instead of reflexively buying provisioned concurrency. Use when serverless p99 spikes on the first request, when a function times out during init, or when scale-to-zero is hurting user-facing latency.",
1800
+ "topics": [
1801
+ "devops-infra"
1802
+ ],
1803
+ "file": "skills/cold-start-optimizer.md",
1804
+ "installAs": "skills/cold-start-optimizer/SKILL.md",
1805
+ "url": "https://agentscamp.com/skills/performance/cold-start-optimizer"
1806
+ },
1807
+ {
1808
+ "id": "skills/commit-splitter",
1809
+ "type": "skill",
1810
+ "slug": "commit-splitter",
1811
+ "category": "git",
1812
+ "title": "Commit Splitter",
1813
+ "description": "Split one big, mixed-up change into a series of small, atomic commits — each a single logical change that builds and passes tests on its own — by grouping hunks by intent and staging them piecemeal. Use when a working tree or a fat commit mixes a feature, a refactor, a bug fix, and formatting, or before opening a PR you want reviewers to actually read.",
1814
+ "topics": [
1815
+ "review-qa"
1816
+ ],
1817
+ "file": "skills/commit-splitter.md",
1818
+ "installAs": "skills/commit-splitter/SKILL.md",
1819
+ "url": "https://agentscamp.com/skills/git/commit-splitter"
1820
+ },
1736
1821
  {
1737
1822
  "id": "skills/connection-pool-tuner",
1738
1823
  "type": "skill",
@@ -1747,6 +1832,20 @@
1747
1832
  "installAs": "skills/connection-pool-tuner/SKILL.md",
1748
1833
  "url": "https://agentscamp.com/skills/database/connection-pool-tuner"
1749
1834
  },
1835
+ {
1836
+ "id": "skills/contract-test-designer",
1837
+ "type": "skill",
1838
+ "slug": "contract-test-designer",
1839
+ "category": "testing",
1840
+ "title": "Contract Test Designer",
1841
+ "description": "Design consumer-driven contract tests between services so an API provider can't break its consumers unnoticed — without slow, flaky full end-to-end environments. Use when independent services or teams integrate over an API, when integration bugs only surface in staging or prod, or when E2E suites are too slow and brittle to catch breaking API changes.",
1842
+ "topics": [
1843
+ "review-qa"
1844
+ ],
1845
+ "file": "skills/contract-test-designer.md",
1846
+ "installAs": "skills/contract-test-designer/SKILL.md",
1847
+ "url": "https://agentscamp.com/skills/testing/contract-test-designer"
1848
+ },
1750
1849
  {
1751
1850
  "id": "skills/conventional-commits",
1752
1851
  "type": "skill",
@@ -1775,6 +1874,20 @@
1775
1874
  "installAs": "skills/coverage-gap-finder/SKILL.md",
1776
1875
  "url": "https://agentscamp.com/skills/testing/coverage-gap-finder"
1777
1876
  },
1877
+ {
1878
+ "id": "skills/dashboard-designer",
1879
+ "type": "skill",
1880
+ "slug": "dashboard-designer",
1881
+ "category": "observability",
1882
+ "title": "Dashboard Designer",
1883
+ "description": "Design a service dashboard that answers one question at a glance — is the service healthy, and if not, where's the problem? — by structuring panels around RED/USE instead of dumping every metric. Use when a service has no dashboard, when the existing one is an unreadable metric wall, or during incident-readiness prep.",
1884
+ "topics": [
1885
+ "devops-infra"
1886
+ ],
1887
+ "file": "skills/dashboard-designer.md",
1888
+ "installAs": "skills/dashboard-designer/SKILL.md",
1889
+ "url": "https://agentscamp.com/skills/observability/dashboard-designer"
1890
+ },
1778
1891
  {
1779
1892
  "id": "skills/dead-code-finder",
1780
1893
  "type": "skill",
@@ -1789,6 +1902,20 @@
1789
1902
  "installAs": "skills/dead-code-finder/SKILL.md",
1790
1903
  "url": "https://agentscamp.com/skills/refactor/dead-code-finder"
1791
1904
  },
1905
+ {
1906
+ "id": "skills/deadlock-diagnoser",
1907
+ "type": "skill",
1908
+ "slug": "deadlock-diagnoser",
1909
+ "category": "database",
1910
+ "title": "Deadlock Diagnoser",
1911
+ "description": "Diagnose a database deadlock from the engine's own deadlock report, reconstruct the lock cycle (A holds 1 wants 2, B holds 2 wants 1), name the root cause — almost always two code paths locking the same rows in different orders — and fix it with consistent lock ordering, shorter transactions, and a retry-the-victim safeguard. Use when the DB logs deadlock errors, when transactions intermittently fail under load, or when queries mysteriously block each other.",
1912
+ "topics": [
1913
+ "devops-infra"
1914
+ ],
1915
+ "file": "skills/deadlock-diagnoser.md",
1916
+ "installAs": "skills/deadlock-diagnoser/SKILL.md",
1917
+ "url": "https://agentscamp.com/skills/database/deadlock-diagnoser"
1918
+ },
1792
1919
  {
1793
1920
  "id": "skills/dependency-audit",
1794
1921
  "type": "skill",
@@ -1817,6 +1944,34 @@
1817
1944
  "installAs": "skills/dependency-upgrade-planner/SKILL.md",
1818
1945
  "url": "https://agentscamp.com/skills/refactor/dependency-upgrade-planner"
1819
1946
  },
1947
+ {
1948
+ "id": "skills/devcontainer-designer",
1949
+ "type": "skill",
1950
+ "slug": "devcontainer-designer",
1951
+ "category": "workflow",
1952
+ "title": "Dev Container Designer",
1953
+ "description": "Design a reproducible dev environment (Dev Container / Docker) so onboarding is one command and 'works on my machine' dies — by detecting the project's real stack and versions, authoring a devcontainer.json (+ Dockerfile/compose) that pins the runtime to what the repo targets, wires dependent services, caches dependencies, and injects secrets instead of baking them. Use when new contributors struggle to set up the project, when environment drift causes inconsistent behavior, or when standardizing tooling across a team.",
1954
+ "topics": [
1955
+ "devops-infra"
1956
+ ],
1957
+ "file": "skills/devcontainer-designer.md",
1958
+ "installAs": "skills/devcontainer-designer/SKILL.md",
1959
+ "url": "https://agentscamp.com/skills/workflow/devcontainer-designer"
1960
+ },
1961
+ {
1962
+ "id": "skills/distributed-tracing-instrumenter",
1963
+ "type": "skill",
1964
+ "slug": "distributed-tracing-instrumenter",
1965
+ "category": "observability",
1966
+ "title": "Distributed Tracing Instrumenter",
1967
+ "description": "Instrument a service (or a chain of services) with OpenTelemetry so a single request can be followed end-to-end — context propagated across every hop including async/queue boundaries, spans at the boundaries that matter, deliberate trace-wide sampling, and trace_id stamped on log lines. Use when latency or failures span multiple services, when you have logs but can't reconstruct a request's full path, or when adopting OpenTelemetry.",
1968
+ "topics": [
1969
+ "devops-infra"
1970
+ ],
1971
+ "file": "skills/distributed-tracing-instrumenter.md",
1972
+ "installAs": "skills/distributed-tracing-instrumenter/SKILL.md",
1973
+ "url": "https://agentscamp.com/skills/observability/distributed-tracing-instrumenter"
1974
+ },
1820
1975
  {
1821
1976
  "id": "skills/embedding-index-tuner",
1822
1977
  "type": "skill",
@@ -1861,6 +2016,20 @@
1861
2016
  "installAs": "skills/extract-module/SKILL.md",
1862
2017
  "url": "https://agentscamp.com/skills/refactor/extract-module"
1863
2018
  },
2019
+ {
2020
+ "id": "skills/feature-flag-retirer",
2021
+ "type": "skill",
2022
+ "slug": "feature-flag-retirer",
2023
+ "category": "refactor",
2024
+ "title": "Feature Flag Retirer",
2025
+ "description": "Retire stale feature flags by confirming each flag's decided final state, then collapsing every conditional to the winning branch and deleting the loser plus the now-dead code it reached. Use when temporary flags have outlived their rollout, when flag conditionals clutter the code, or during a flag-debt cleanup.",
2026
+ "topics": [
2027
+ "coding-languages"
2028
+ ],
2029
+ "file": "skills/feature-flag-retirer.md",
2030
+ "installAs": "skills/feature-flag-retirer/SKILL.md",
2031
+ "url": "https://agentscamp.com/skills/refactor/feature-flag-retirer"
2032
+ },
1864
2033
  {
1865
2034
  "id": "skills/finetune-dataset-builder",
1866
2035
  "type": "skill",
@@ -1875,6 +2044,34 @@
1875
2044
  "installAs": "skills/finetune-dataset-builder/SKILL.md",
1876
2045
  "url": "https://agentscamp.com/skills/data/finetune-dataset-builder"
1877
2046
  },
2047
+ {
2048
+ "id": "skills/flamegraph-analyzer",
2049
+ "type": "skill",
2050
+ "slug": "flamegraph-analyzer",
2051
+ "category": "performance",
2052
+ "title": "Flamegraph Analyzer",
2053
+ "description": "Turn a CPU profile or flamegraph into a concrete optimization instead of guessing where the time goes: capture under a realistic workload with a sampling profiler, read the graph correctly (width = time, depth ≠ time), find the widest self-time leaves, ask if that work is necessary/redundant/algorithmically wrong, fix the biggest contributor, then re-profile. Use when code is CPU-bound and slow, a function is hot but you don't know which part, or you have a profile you can't interpret.",
2054
+ "topics": [
2055
+ "review-qa"
2056
+ ],
2057
+ "file": "skills/flamegraph-analyzer.md",
2058
+ "installAs": "skills/flamegraph-analyzer/SKILL.md",
2059
+ "url": "https://agentscamp.com/skills/performance/flamegraph-analyzer"
2060
+ },
2061
+ {
2062
+ "id": "skills/git-blame-investigator",
2063
+ "type": "skill",
2064
+ "slug": "git-blame-investigator",
2065
+ "category": "git",
2066
+ "title": "Git Blame Investigator",
2067
+ "description": "Reconstruct why a line of code exists from Git history — find the originating commit, read its message and full diff for intent, and see through reformatting/rename commits with ignore-revs and the pickaxe — before you change or delete it. Use when a line looks wrong or pointless and you want to remove it, when tracing a regression to its commit, or when onboarding to unfamiliar code.",
2068
+ "topics": [
2069
+ "review-qa"
2070
+ ],
2071
+ "file": "skills/git-blame-investigator.md",
2072
+ "installAs": "skills/git-blame-investigator/SKILL.md",
2073
+ "url": "https://agentscamp.com/skills/git/git-blame-investigator"
2074
+ },
1878
2075
  {
1879
2076
  "id": "skills/github-actions-optimizer",
1880
2077
  "type": "skill",
@@ -1889,6 +2086,20 @@
1889
2086
  "installAs": "skills/github-actions-optimizer/SKILL.md",
1890
2087
  "url": "https://agentscamp.com/skills/workflow/github-actions-optimizer"
1891
2088
  },
2089
+ {
2090
+ "id": "skills/graphql-schema-designer",
2091
+ "type": "skill",
2092
+ "slug": "graphql-schema-designer",
2093
+ "category": "api",
2094
+ "title": "GraphQL Schema Designer",
2095
+ "description": "Design a clean, evolvable GraphQL schema (SDL) that won't paint you into a corner — model the graph around domain types and their relationships rather than as RPC-over-GraphQL, set nullability deliberately, standardize lists with Relay connections, plan DataLoader batching for per-parent fields, and evolve by adding + @deprecated instead of versioning. Use when designing a new GraphQL API, reviewing an SDL, or migrating REST endpoints to a graph.",
2096
+ "topics": [
2097
+ "architecture"
2098
+ ],
2099
+ "file": "skills/graphql-schema-designer.md",
2100
+ "installAs": "skills/graphql-schema-designer/SKILL.md",
2101
+ "url": "https://agentscamp.com/skills/api/graphql-schema-designer"
2102
+ },
1892
2103
  {
1893
2104
  "id": "skills/graphrag-scaffolder",
1894
2105
  "type": "skill",
@@ -1903,6 +2114,20 @@
1903
2114
  "installAs": "skills/graphrag-scaffolder/SKILL.md",
1904
2115
  "url": "https://agentscamp.com/skills/data/graphrag-scaffolder"
1905
2116
  },
2117
+ {
2118
+ "id": "skills/hallucination-evaluator",
2119
+ "type": "skill",
2120
+ "slug": "hallucination-evaluator",
2121
+ "category": "data",
2122
+ "title": "Hallucination Evaluator",
2123
+ "description": "Detect and measure ungroundedness in LLM and RAG outputs — claims the source doesn't support — by decomposing answers into atomic claims and checking each for entailment, so you can quantify faithfulness and gate on it instead of eyeballing it. Use when a RAG/LLM feature makes confident wrong claims, before shipping anything that must be factual, or to add a groundedness gate to evals/CI.",
2124
+ "topics": [
2125
+ "llm-evals"
2126
+ ],
2127
+ "file": "skills/hallucination-evaluator.md",
2128
+ "installAs": "skills/hallucination-evaluator/SKILL.md",
2129
+ "url": "https://agentscamp.com/skills/data/hallucination-evaluator"
2130
+ },
1906
2131
  {
1907
2132
  "id": "skills/hook-writer",
1908
2133
  "type": "skill",
@@ -1931,6 +2156,34 @@
1931
2156
  "installAs": "skills/human-in-the-loop-gate/SKILL.md",
1932
2157
  "url": "https://agentscamp.com/skills/workflow/human-in-the-loop-gate"
1933
2158
  },
2159
+ {
2160
+ "id": "skills/idempotency-designer",
2161
+ "type": "skill",
2162
+ "slug": "idempotency-designer",
2163
+ "category": "api",
2164
+ "title": "Idempotency Designer",
2165
+ "description": "Make unsafe, retryable API operations idempotent so a client retry or a network hiccup can't double-charge, double-create, or double-send — design a client-supplied idempotency key, an atomic store-and-check (unique constraint or conditional write), in-flight conflict handling, and a retention policy. Use when a POST/mutation can be retried (payments, order creation, sends, webhooks), or when duplicate side effects have already shown up in production.",
2166
+ "topics": [
2167
+ "architecture"
2168
+ ],
2169
+ "file": "skills/idempotency-designer.md",
2170
+ "installAs": "skills/idempotency-designer/SKILL.md",
2171
+ "url": "https://agentscamp.com/skills/api/idempotency-designer"
2172
+ },
2173
+ {
2174
+ "id": "skills/integration-test-designer",
2175
+ "type": "skill",
2176
+ "slug": "integration-test-designer",
2177
+ "category": "testing",
2178
+ "title": "Integration Test Designer",
2179
+ "description": "Design integration tests that exercise components against REAL collaborators — actual database, queue, HTTP boundary — at a deliberately chosen seam, instead of a unit suite that mocks everything or a slow flaky full E2E. Use when bugs slip past green unit tests, when wiring or contracts between layers break in production, or when a mocked DB test passes but the real query/migration/serialization fails.",
2180
+ "topics": [
2181
+ "review-qa"
2182
+ ],
2183
+ "file": "skills/integration-test-designer.md",
2184
+ "installAs": "skills/integration-test-designer/SKILL.md",
2185
+ "url": "https://agentscamp.com/skills/testing/integration-test-designer"
2186
+ },
1934
2187
  {
1935
2188
  "id": "skills/llm-as-judge-scorer",
1936
2189
  "type": "skill",
@@ -2058,6 +2311,20 @@
2058
2311
  "installAs": "skills/mock-data-factory/SKILL.md",
2059
2312
  "url": "https://agentscamp.com/skills/testing/mock-data-factory"
2060
2313
  },
2314
+ {
2315
+ "id": "skills/model-router-designer",
2316
+ "type": "skill",
2317
+ "slug": "model-router-designer",
2318
+ "category": "data",
2319
+ "title": "Model Router Designer",
2320
+ "description": "Design a model router that sends each LLM request to the cheapest model that can handle it and escalates only the hard cases to the strongest — cutting cost and latency without tanking quality, gated by an eval set so the savings don't come from silently worse answers. Use when one expensive model serves all traffic (most of it easy), when LLM cost or latency is too high, or when balancing quality against spend across a range of request difficulty.",
2321
+ "topics": [
2322
+ "llm-app-dev"
2323
+ ],
2324
+ "file": "skills/model-router-designer.md",
2325
+ "installAs": "skills/model-router-designer/SKILL.md",
2326
+ "url": "https://agentscamp.com/skills/data/model-router-designer"
2327
+ },
2061
2328
  {
2062
2329
  "id": "skills/multimodal-document-extractor",
2063
2330
  "type": "skill",
@@ -2073,6 +2340,34 @@
2073
2340
  "installAs": "skills/multimodal-document-extractor/SKILL.md",
2074
2341
  "url": "https://agentscamp.com/skills/data/multimodal-document-extractor"
2075
2342
  },
2343
+ {
2344
+ "id": "skills/mutation-test-runner",
2345
+ "type": "skill",
2346
+ "slug": "mutation-test-runner",
2347
+ "category": "testing",
2348
+ "title": "Mutation Test Runner",
2349
+ "description": "Measure whether a test suite actually catches bugs by running mutation testing — introduce small faults into the code and check which ones a test kills versus which slip through silently. Use when line coverage is high but bugs still ship, when you suspect tests assert weakly, or to find the exact assertions a suite is missing.",
2350
+ "topics": [
2351
+ "review-qa"
2352
+ ],
2353
+ "file": "skills/mutation-test-runner.md",
2354
+ "installAs": "skills/mutation-test-runner/SKILL.md",
2355
+ "url": "https://agentscamp.com/skills/testing/mutation-test-runner"
2356
+ },
2357
+ {
2358
+ "id": "skills/onboarding-guide-writer",
2359
+ "type": "skill",
2360
+ "slug": "onboarding-guide-writer",
2361
+ "category": "docs",
2362
+ "title": "Onboarding Guide Writer",
2363
+ "description": "Write a developer onboarding guide that gets a new contributor from clone to first merged change fast — a verified golden path, a quick architecture map, the real workflow conventions, and the gotchas that live only in senior engineers' heads. Use when a repo has no onboarding doc, when new hires keep asking the same setup questions, or when the README is a marketing page instead of a contributor guide.",
2364
+ "topics": [
2365
+ "workflow-prompting"
2366
+ ],
2367
+ "file": "skills/onboarding-guide-writer.md",
2368
+ "installAs": "skills/onboarding-guide-writer/SKILL.md",
2369
+ "url": "https://agentscamp.com/skills/docs/onboarding-guide-writer"
2370
+ },
2076
2371
  {
2077
2372
  "id": "skills/openapi-doc-writer",
2078
2373
  "type": "skill",
@@ -2242,6 +2537,20 @@
2242
2537
  "installAs": "skills/qlora-finetune-runner/SKILL.md",
2243
2538
  "url": "https://agentscamp.com/skills/data/qlora-finetune-runner"
2244
2539
  },
2540
+ {
2541
+ "id": "skills/query-plan-analyzer",
2542
+ "type": "skill",
2543
+ "slug": "query-plan-analyzer",
2544
+ "category": "database",
2545
+ "title": "Query Plan Analyzer",
2546
+ "description": "Read a slow query's execution plan and turn it into a concrete fix — the exact index to add, the rewrite, or the ANALYZE to run — by getting the REAL plan with EXPLAIN ANALYZE (actual rows + timing, not estimates), finding the offending node, and confirming the fix removes it. Use when one specific query is slow and you need to know WHY, not just that it is.",
2547
+ "topics": [
2548
+ "devops-infra"
2549
+ ],
2550
+ "file": "skills/query-plan-analyzer.md",
2551
+ "installAs": "skills/query-plan-analyzer/SKILL.md",
2552
+ "url": "https://agentscamp.com/skills/database/query-plan-analyzer"
2553
+ },
2245
2554
  {
2246
2555
  "id": "skills/rate-limiter-designer",
2247
2556
  "type": "skill",
@@ -2257,6 +2566,20 @@
2257
2566
  "installAs": "skills/rate-limiter-designer/SKILL.md",
2258
2567
  "url": "https://agentscamp.com/skills/api/rate-limiter-designer"
2259
2568
  },
2569
+ {
2570
+ "id": "skills/rbac-designer",
2571
+ "type": "skill",
2572
+ "slug": "rbac-designer",
2573
+ "category": "security",
2574
+ "title": "RBAC Designer",
2575
+ "description": "Design the authorization model itself — fine-grained permissions on resources composed into roles, with the right amount of resource/tenant scoping — instead of scattering role-name checks through handlers. Use when building multi-user or multi-tenant authorization, when `if user.isAdmin` checks are sprawling across the codebase, or when 'who can do what' needs a real model rather than ad-hoc gates.",
2576
+ "topics": [
2577
+ "architecture"
2578
+ ],
2579
+ "file": "skills/rbac-designer.md",
2580
+ "installAs": "skills/rbac-designer/SKILL.md",
2581
+ "url": "https://agentscamp.com/skills/security/rbac-designer"
2582
+ },
2260
2583
  {
2261
2584
  "id": "skills/react-render-profiler",
2262
2585
  "type": "skill",
@@ -2286,6 +2609,34 @@
2286
2609
  "installAs": "skills/readme-generator/SKILL.md",
2287
2610
  "url": "https://agentscamp.com/skills/docs/readme-generator"
2288
2611
  },
2612
+ {
2613
+ "id": "skills/release-notes-writer",
2614
+ "type": "skill",
2615
+ "slug": "release-notes-writer",
2616
+ "category": "release",
2617
+ "title": "Release Notes Writer",
2618
+ "description": "Write user-facing release notes — the curated 'what's new and what it means for you' — by starting from the real changes (git log / merged PRs / the changelog since the last release) and translating developer-speak into user impact, grouped by what the user cares about with breaking changes and required actions surfaced first. Use when shipping a release to users or customers and the raw commit log isn't something a user should read, when you need a published GitHub-release / blog / in-app announcement, or when a breaking change must be made unmissable so upgrades don't break.",
2619
+ "topics": [
2620
+ "devops-infra"
2621
+ ],
2622
+ "file": "skills/release-notes-writer.md",
2623
+ "installAs": "skills/release-notes-writer/SKILL.md",
2624
+ "url": "https://agentscamp.com/skills/release/release-notes-writer"
2625
+ },
2626
+ {
2627
+ "id": "skills/runbook-writer",
2628
+ "type": "skill",
2629
+ "slug": "runbook-writer",
2630
+ "category": "docs",
2631
+ "title": "Runbook Writer",
2632
+ "description": "Write an operational runbook a half-asleep on-call engineer can execute at 3am — scoped to ONE alert, leading with how to confirm the problem, the copy-pasteable mitigation that stops user pain, then diagnosis, escalation, and verification. Use when an alert has no documented response, after an incident exposed a missing procedure, or when standing up on-call for a service.",
2633
+ "topics": [
2634
+ "devops-infra"
2635
+ ],
2636
+ "file": "skills/runbook-writer.md",
2637
+ "installAs": "skills/runbook-writer/SKILL.md",
2638
+ "url": "https://agentscamp.com/skills/docs/runbook-writer"
2639
+ },
2289
2640
  {
2290
2641
  "id": "skills/secret-scanner",
2291
2642
  "type": "skill",
@@ -2314,6 +2665,20 @@
2314
2665
  "installAs": "skills/security-headers-hardener/SKILL.md",
2315
2666
  "url": "https://agentscamp.com/skills/security/security-headers-hardener"
2316
2667
  },
2668
+ {
2669
+ "id": "skills/semantic-cache-designer",
2670
+ "type": "skill",
2671
+ "slug": "semantic-cache-designer",
2672
+ "category": "data",
2673
+ "title": "Semantic Cache Designer",
2674
+ "description": "Design a semantic cache for LLM responses — serve a cached answer when a new query is similar enough to a past one — to cut cost and latency on repetitive traffic, with the similarity threshold calibrated on real query pairs and a cache key that prevents cross-user/model leaks. Use when an LLM app sees many near-duplicate prompts (FAQs, support, search), when token spend on repetitive queries is high, or when latency on common questions matters.",
2675
+ "topics": [
2676
+ "llm-app-dev"
2677
+ ],
2678
+ "file": "skills/semantic-cache-designer.md",
2679
+ "installAs": "skills/semantic-cache-designer/SKILL.md",
2680
+ "url": "https://agentscamp.com/skills/data/semantic-cache-designer"
2681
+ },
2317
2682
  {
2318
2683
  "id": "skills/semver-advisor",
2319
2684
  "type": "skill",
@@ -2356,6 +2721,20 @@
2356
2721
  "installAs": "skills/sql-optimizer/SKILL.md",
2357
2722
  "url": "https://agentscamp.com/skills/data/sql-optimizer"
2358
2723
  },
2724
+ {
2725
+ "id": "skills/strangler-fig-migrator",
2726
+ "type": "skill",
2727
+ "slug": "strangler-fig-migrator",
2728
+ "category": "refactor",
2729
+ "title": "Strangler Fig Migrator",
2730
+ "description": "Plan the incremental replacement of a legacy module or service using the strangler-fig pattern — grow new code around the old behind an interception seam until the old is dead, instead of a big-bang rewrite. Use when a legacy system is too risky to rewrite at once, or when migrating off a deprecated framework/dependency gradually while staying shippable and rollback-able at every step.",
2731
+ "topics": [
2732
+ "architecture"
2733
+ ],
2734
+ "file": "skills/strangler-fig-migrator.md",
2735
+ "installAs": "skills/strangler-fig-migrator/SKILL.md",
2736
+ "url": "https://agentscamp.com/skills/refactor/strangler-fig-migrator"
2737
+ },
2359
2738
  {
2360
2739
  "id": "skills/structured-logging-designer",
2361
2740
  "type": "skill",
@@ -2384,6 +2763,34 @@
2384
2763
  "installAs": "skills/test-scaffolder/SKILL.md",
2385
2764
  "url": "https://agentscamp.com/skills/testing/test-scaffolder"
2386
2765
  },
2766
+ {
2767
+ "id": "skills/threat-model-builder",
2768
+ "type": "skill",
2769
+ "slug": "threat-model-builder",
2770
+ "category": "security",
2771
+ "title": "Threat Model Builder",
2772
+ "description": "Build a practical threat model for a feature or system using STRIDE — diagram the data flow, mark trust boundaries, enumerate concrete threats where data crosses them, and prioritize by likelihood × impact so security is reasoned about before shipping instead of bolted on after. Use when designing a feature that touches auth, money, or sensitive data, running a security design review, or hardening before a launch.",
2773
+ "topics": [
2774
+ "review-qa"
2775
+ ],
2776
+ "file": "skills/threat-model-builder.md",
2777
+ "installAs": "skills/threat-model-builder/SKILL.md",
2778
+ "url": "https://agentscamp.com/skills/security/threat-model-builder"
2779
+ },
2780
+ {
2781
+ "id": "skills/token-usage-profiler",
2782
+ "type": "skill",
2783
+ "slug": "token-usage-profiler",
2784
+ "category": "data",
2785
+ "title": "Token Usage Profiler",
2786
+ "description": "Measure and attribute LLM token usage and cost across an app — input vs output tokens by feature, route, model, and tenant — then rank the waste and the specific lever to cut it. Use when LLM spend is high or climbing with no clear cause, before scaling a feature that calls a model, or when you need per-feature or per-tenant cost attribution for billing or budgets.",
2787
+ "topics": [
2788
+ "llm-app-dev"
2789
+ ],
2790
+ "file": "skills/token-usage-profiler.md",
2791
+ "installAs": "skills/token-usage-profiler/SKILL.md",
2792
+ "url": "https://agentscamp.com/skills/data/token-usage-profiler"
2793
+ },
2387
2794
  {
2388
2795
  "id": "skills/tool-definition-generator",
2389
2796
  "type": "skill",
@@ -2440,6 +2847,20 @@
2440
2847
  "installAs": "skills/web-research-pipeline/SKILL.md",
2441
2848
  "url": "https://agentscamp.com/skills/data/web-research-pipeline"
2442
2849
  },
2850
+ {
2851
+ "id": "skills/web-vitals-optimizer",
2852
+ "type": "skill",
2853
+ "slug": "web-vitals-optimizer",
2854
+ "category": "performance",
2855
+ "title": "Web Vitals Optimizer",
2856
+ "description": "Diagnose and fix Core Web Vitals — LCP, CLS, and INP — by treating real-user field data at p75 as the source of truth, using Lighthouse/WebPageTest only to find the at-fault element, script, or shift, then applying the one targeted fix per metric and re-measuring. Use when a page feels slow, scores poorly on PageSpeed/Lighthouse, or fails CWV in CrUX/RUM field data.",
2857
+ "topics": [
2858
+ "coding-languages"
2859
+ ],
2860
+ "file": "skills/web-vitals-optimizer.md",
2861
+ "installAs": "skills/web-vitals-optimizer/SKILL.md",
2862
+ "url": "https://agentscamp.com/skills/performance/web-vitals-optimizer"
2863
+ },
2443
2864
  {
2444
2865
  "id": "skills/webhook-handler-scaffolder",
2445
2866
  "type": "skill",