@skill-graph/cli 0.5.6 → 0.5.8

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 (90) hide show
  1. package/CHANGELOG.md +27 -3
  2. package/README.md +103 -31
  3. package/SKILL_GRAPH.md +2 -2
  4. package/bin/skill-graph.js +150 -10
  5. package/docs/ADOPTION.md +1 -1
  6. package/docs/PRIMER.md +6 -5
  7. package/docs/QUICKSTART-30MIN.md +2 -2
  8. package/docs/SKILL_AUDIT_CHECKLIST.md +1 -1
  9. package/docs/SKILL_METADATA_PROTOCOL.md +2 -2
  10. package/docs/_archived/marketplace-publication-priority-2026-05-18.md +1 -1
  11. package/docs/_drafts/0.5.8-release-prep.md +164 -0
  12. package/docs/adr/0009-sibling-repo-deprecation.md +48 -0
  13. package/docs/diagrams/skill-graph-ecosystem.mmd +17 -0
  14. package/docs/field-reference.generated.md +22 -2
  15. package/docs/field-reference.md +53 -2
  16. package/docs/images/skill-graph-ecosystem.svg +1 -0
  17. package/docs/manifest-field-mapping.md +3 -3
  18. package/docs/marketplace-publication-queue.generated.md +2 -2
  19. package/docs/plans/scripts-roadmap.md +2 -2
  20. package/docs/positioning.md +88 -0
  21. package/docs/research/skill-comprehension-eval-research.md +5 -5
  22. package/docs/research/skill-demand-gap-roadmap-2026-05-16.md +215 -0
  23. package/docs/status.generated.md +48 -0
  24. package/examples/audits/context-graph/findings.md +59 -0
  25. package/examples/audits/context-graph/scorecard.md +22 -0
  26. package/examples/audits/context-graph/verdict.md +33 -0
  27. package/examples/evals/a11y.json +45 -13
  28. package/examples/evals/api-design.json +18 -5
  29. package/examples/evals/code-review.json +18 -5
  30. package/examples/evals/data-modeling.json +18 -5
  31. package/examples/evals/database-migration.json +18 -5
  32. package/examples/evals/debugging.json +37 -11
  33. package/examples/evals/dependency-architecture.json +18 -5
  34. package/examples/evals/design-system-architecture.json +18 -5
  35. package/examples/evals/error-tracking.json +18 -5
  36. package/examples/evals/event-contract-design.json +18 -5
  37. package/examples/evals/form-ux-architecture.json +18 -5
  38. package/examples/evals/framework-fit-analysis.json +18 -5
  39. package/examples/evals/graph-audit.json +55 -13
  40. package/examples/evals/information-architecture.json +18 -5
  41. package/examples/evals/interaction-feedback.json +18 -5
  42. package/examples/evals/interaction-patterns.json +18 -5
  43. package/examples/evals/layout-composition.json +18 -5
  44. package/examples/evals/lint-overlay.json +38 -11
  45. package/examples/evals/microcopy.json +18 -5
  46. package/examples/evals/observability-modeling.json +18 -5
  47. package/examples/evals/pattern-recognition.json +32 -9
  48. package/examples/evals/performance-engineering.json +18 -5
  49. package/examples/evals/refactor.json +41 -12
  50. package/examples/evals/semiotics.json +18 -5
  51. package/examples/evals/skill-infrastructure.json +32 -9
  52. package/examples/evals/skill-router.json +42 -13
  53. package/examples/evals/system-interface-contracts.json +18 -5
  54. package/examples/evals/task-analysis.json +18 -5
  55. package/examples/evals/testing-strategy.json +36 -11
  56. package/examples/evals/type-safety.json +251 -66
  57. package/examples/evals/visual-design-foundations.json +18 -5
  58. package/examples/evals/webhook-integration.json +18 -5
  59. package/examples/fixture-skills/README.md +47 -0
  60. package/examples/fixture-skills/comprehension-full/SKILL.md +79 -0
  61. package/examples/fixture-skills/minimal-capability/SKILL.md +51 -0
  62. package/examples/fixture-skills/with-grounding/SKILL.md +78 -0
  63. package/examples/fixture-skills/with-relations/SKILL.md +87 -0
  64. package/examples/skills.manifest.sample.json +1722 -446
  65. package/marketplace/README.md +1 -1
  66. package/marketplace/skills/a11y/SKILL.md +1 -1
  67. package/marketplace/skills/best-practice/SKILL.md +211 -0
  68. package/marketplace/skills/context-graph/SKILL.md +1 -1
  69. package/marketplace/skills/debugging/SKILL.md +1 -1
  70. package/marketplace/skills/graph-audit/SKILL.md +3 -1
  71. package/marketplace/skills/postgres-rls/SKILL.md +284 -0
  72. package/marketplace/skills/refactor/SKILL.md +1 -1
  73. package/marketplace/skills/skill-infrastructure/SKILL.md +2 -0
  74. package/marketplace/skills/skill-router/SKILL.md +3 -1
  75. package/marketplace/skills/testing-strategy/SKILL.md +1 -1
  76. package/package.json +3 -1
  77. package/schemas/manifest.schema.json +8 -0
  78. package/schemas/manifest.v6.schema.json +8 -0
  79. package/schemas/skill.context.jsonld +5 -0
  80. package/schemas/skill.schema.json +27 -0
  81. package/scripts/__tests__/test-marketplace-export.js +6 -2
  82. package/scripts/__tests__/test-v3-1-alias-contract.js +3 -3
  83. package/scripts/build-status-doc.js +177 -0
  84. package/scripts/check-doc-drift.js +224 -0
  85. package/scripts/check-markdown-links.js +34 -4
  86. package/scripts/check-mirror-freeze.js +270 -0
  87. package/scripts/export-marketplace-skills.js +35 -6
  88. package/scripts/lib/audit-prompt-builder.js +3 -3
  89. package/scripts/lib/parse-frontmatter.js +2 -2
  90. package/scripts/skill-audit.js +7 -9
@@ -0,0 +1,215 @@
1
+ # Skill Demand Gap Roadmap - 2026-05-16
2
+
3
+ > Scope: Skill Graph, Skill Metadata Protocol, and the `/Users/jacobbalslev/Development` workspace.
4
+ > Purpose: identify which skills are externally in demand, which skills already exist as Skill Graph upgraded skills, and which gaps should be filled first.
5
+
6
+ ## Executive Summary
7
+
8
+ Skill Graph already has a strong upgraded public library: 137 marketplace-exported skills, plus the generated manifest includes 138 rows because `skill-metadata-template` is a protocol specimen rather than a marketplace export.
9
+
10
+ The highest-value gaps are not general methodology. The upgraded library is already strong there. The gaps are in high-demand practical runtime skills: marketplace discovery/import, browser automation, document formats, MCP/Claude API, React/Next/shadcn/Tailwind, provider/platform skills, Playwright/testing implementation, marketing/CRO, and local-workspace agent operations that still exist only as legacy/private Development skills.
11
+
12
+ Top recommendation: prioritize skills that are both externally demanded and locally useful in `/Development`: `skill-discovery-import`, `playwright-browser-automation`, `mcp-builder`, `react-best-practices`, `next-best-practices`, `shadcn-ui`, `tailwind-css`, `document-workflows`, `stripe`, `sentry`, `vercel-deployment`, `github-actions`, and the public-safe migration of `agent-task-delegation`, `session-lifecycle`, `autonomous-loop-patterns`, and `git-worktree`.
13
+
14
+ ## Evidence Sources
15
+
16
+ | # | Source | Evidence captured | Demand signal |
17
+ |---:|---|---|---|
18
+ | 1 | `https://skillsmp.com` | SkillsMP reports 1,419,713 skills, category counts, and occupation counts. | Large public skill marketplace; strongest category counts are Tools, Business, Development, Testing & Security, Data & AI, DevOps, Documentation, Content & Media, Research, Databases. |
19
+ | 2 | `https://skills.sh` | Skills leaderboard and install counts. | Top visible skills include `find-skills` (1.5M), `frontend-design` (418.3K), `vercel-react-best-practices` (402.9K), `web-design-guidelines` (322.6K), Azure skills, `agent-browser` (277.3K), `skill-creator` (210.9K), `supabase-postgres-best-practices` (168.9K), `shadcn` (143.9K). |
20
+ | 3 | `https://skills.sh/topic` | Topic taxonomy: React, Next.js, Design & UI, Mobile, Agent workflows, Databases, Testing, Marketing. | Public navigation confirms current buyer/user demand clusters. |
21
+ | 4 | `https://skills.sh/topic/react` | React category names performance, memoization, composable APIs, shadcn, bundle-size problems, TypeScript component APIs. | Strong gap signal for React implementation skills beyond general frontend architecture. |
22
+ | 5 | `https://skills.sh/topic/nextjs` | Next.js category names App Router, RSC, caching, Vercel deployment, Turborepo, AI SDK. | Strong local fit because Sales Hub and Module-Components use Next.js 16 and React 19. |
23
+ | 6 | `https://skills.sh/topic/design` | Design category names frontend design, web guidelines, polish, critique, bolder, delight, distill, extract design system. | Skill Graph has conceptual design depth, but fewer action/operator-style design skills. |
24
+ | 7 | `https://skills.sh/topic/agent-workflows` | Agent workflows include `find-skills`, `agent-browser`, `skill-creator`, debugging, plans, TDD, review, subagents, worktrees, autonomous loops. | Direct match to Development workspace agent-orchestration work; several exist locally but not yet public-safe/upgraded. |
25
+ | 8 | `https://skills.sh/topic/databases` | Database category names Supabase, Firebase, Convex, Neon, PlanetScale, Turso, DuckDB, Drizzle. | Skill Graph has database fundamentals but fewer provider/framework implementation skills. |
26
+ | 9 | `https://skills.sh/topic/testing` | Testing category names TDD, webapp-testing, verification-before-completion, Playwright best practices, Playwright CLI. | Skill Graph has testing theory; local workspace also has root `playwright-cli` skill not yet upgraded. |
27
+ | 10 | `https://skills.sh/topic/marketing` | Marketing category names SEO audit, copywriting, marketing psychology, programmatic SEO, pricing, page CRO, launch, analytics tracking, AI SEO. | Development has several legacy marketing skills, but Skill Graph upgraded library has only partial marketing coverage. |
28
+ | 11 | `https://github.com/anthropics/skills` and GitHub API listing | Official Anthropic repo has 17 skills: `algorithmic-art`, `brand-guidelines`, `canvas-design`, `claude-api`, `doc-coauthoring`, `docx`, `frontend-design`, `internal-comms`, `mcp-builder`, `pdf`, `pptx`, `skill-creator`, `slack-gif-creator`, `theme-factory`, `web-artifacts-builder`, `webapp-testing`, `xlsx`. | Official Claude Skills emphasize documents, frontend/design, MCP/API, comms, and artifacts. |
29
+ | 12 | `https://agentskills.io` | Open Agent Skills standard lists many compatible clients and runtimes across the agent ecosystem. | Portability and cross-agent metadata remain central differentiators for Skill Graph. |
30
+ | 13 | `skill-graph/README.md` | Skill Graph positioning: protocol metadata plus library-level lint, manifest, router, drift sentinel, export pipeline. | Gaps should strengthen public Skill Graph value, not duplicate marketplace hosting. |
31
+ | 14 | `skill-graph/docs/marketplace-skill-candidate-list.md` | Prior candidate report: 568 scanned, 143 public candidates, 80 prior P0 Skill Graph canonical rows, 63 active Development rows, 22 imported on 2026-05-14, 28 deferred public-safe rewrites. | Confirms migration queue and privacy-gated legacy candidates. |
32
+ | 15 | Root `skills.manifest.json` | Active workspace library: 447 active skills, 287 shared, 160 Sales Hub, 37 archived. | Local workspace has substantial source material not yet all upgraded. |
33
+ | 16 | Local inventory script run 2026-05-16 | `skill-graph/marketplace/skills`: 137; public `skills/skills`: 137; root shared `skills/`: 277. | Confirms exported upgraded set and broader local source pool. |
34
+ | 17 | `sales-hub/package.json` | Sales Hub uses Next 16.1.6, React 19.2.3, Radix, TanStack Table, D3, ExcelJS, React PDF, Shopify, Stripe, Redis, Playwright, Jest, Tailwind 4, Vercel, Prisma. | Strong local demand for Next/React, Radix/shadcn, TanStack Table, charts, documents, provider integrations, testing, deployment. |
35
+ | 18 | `orchestrator-ui/package.json` | Orchestrator UI uses React 19, Vite 6, Express, AG-UI, SSE/WS, Zustand, dnd-kit, xterm, Shiki, Vitest. | Strong local demand for real-time, AG-UI, provider adapters, terminal UI, dnd, Vite, local security. |
36
+ | 19 | `Module-Components/package.json` | Module-Components uses Next 16, React 19, shadcn, Tailwind 4, Radix, Zod, MCP SDK, Playwright, Vitest. | Strong local demand for shadcn, block registry, component contracts, MCP, visual regression. |
37
+
38
+ ## Local Inventory Snapshot
39
+
40
+ | Surface | Count | Notes |
41
+ |---|---:|---|
42
+ | `skill-graph/marketplace/skills/*/SKILL.md` | 137 | Plain Agent Skills export surface; same count as local public release clone. |
43
+ | `skill-graph/examples/skills.manifest.sample.json` | 138 | Includes `skill-metadata-template`; marketplace export correctly excludes that specimen. |
44
+ | `/Users/jacobbalslev/Development/skills/skills/*/SKILL.md` | 137 | Public release clone mirrors marketplace export. |
45
+ | Root `/Users/jacobbalslev/Development/skills/*/SKILL.md` | 277 | Shared Development source skills, many still legacy/private/local. |
46
+ | Root `skills.manifest.json` active total | 447 | 287 shared + 160 Sales Hub, with 37 archived. |
47
+
48
+ ## Already Upgraded Skill Graph Skills
49
+
50
+ These 137 skills are already present in the Skill Graph marketplace export and the public local release clone.
51
+
52
+ `a11y`, `acid-fundamentals`, `agent-engineering`, `agent-eval-design`, `ai-native-development`, `api-design`, `architecture-decision-records`, `background-jobs`, `bounded-context-mapping`, `cap-theorem-tradeoffs`, `client-server-boundary`, `code-review`, `color-system-design`, `command-palette`, `component-architecture`, `compression`, `conceptual-modeling`, `connection-pooling`, `constraint-awareness`, `content-monitor`, `context-engineering`, `context-graph`, `context-management`, `context-window`, `contract-testing`, `cron-scheduling`, `dark-mode-implementation`, `data-modeling`, `data-modeling-fundamentals`, `database-migration`, `debugging`, `dependency-architecture`, `design-module-composition`, `design-system-architecture`, `design-thinking`, `diagnosis`, `diff-analysis`, `documentation`, `e2e-test-design`, `entity-relationship-modeling`, `epistemic-grounding`, `error-tracking`, `eval-driven-development`, `evaluation`, `event-contract-design`, `event-storming`, `form-ux-architecture`, `framework-fit-analysis`, `frontend-architecture`, `generative-ui`, `governance`, `graph-audit`, `guardrails`, `http-semantics`, `ideation`, `indexing-strategy`, `information-architecture`, `integration-test-design`, `intent-recognition`, `interaction-feedback`, `interaction-patterns`, `journey-mapping`, `keywords`, `knowledge-modeling`, `layout-composition`, `linguistics`, `lint-overlay`, `mental-models`, `merge-queue`, `methodology`, `microcopy`, `mobile-responsive-ux`, `mutation-testing`, `naming-conventions`, `observability-modeling`, `ontology`, `ontology-modeling`, `owasp-security`, `pattern-recognition`, `performance-budgets`, `performance-engineering`, `performance-testing`, `printify`, `prioritization`, `problem-framing`, `problem-locating-solving`, `project-knowledge-extraction`, `prompt-craft`, `prompt-injection-defense`, `property-based-testing`, `prototyping`, `query-optimization`, `real-time-updates`, `reasoning`, `refactor`, `rendering-models`, `replication-patterns`, `research-synthesis`, `schema-evolution`, `security-fundamentals`, `semantic-center`, `semantic-relations`, `semantics`, `semiotics`, `seo-strategy`, `sharding-strategy`, `shopify`, `skill-infrastructure`, `skill-router`, `skill-scaffold`, `snapshot-testing`, `spec-driven-development`, `state-machine-modeling`, `state-management`, `streaming-architecture`, `summarization`, `system-interface-contracts`, `task-analysis`, `taxonomy-design`, `test-coverage-strategy`, `test-doubles-design`, `test-driven-development`, `testing-strategy`, `theme-system-design`, `tool-call-flow`, `tool-call-strategy`, `transaction-isolation`, `type-safety`, `typography-system`, `usability-testing`, `user-research`, `vercel-composition-patterns`, `version-control`, `visual-design-foundations`, `visual-hierarchy`, `webhook-integration`, `writing-humanizer`.
53
+
54
+ ## Coverage Read
55
+
56
+ | Demand cluster | Existing upgraded coverage | Gap severity | Read |
57
+ |---|---|---:|---|
58
+ | Skill discovery, install, import, marketplace workflow | `skill-router`, `skill-scaffold`, `skill-infrastructure`, `graph-audit`, `skill-portability` exists in root but not upgraded/exported | P0 | Public demand is led by `find-skills`; Skill Graph needs a first-class discovery/import/upgrading skill. |
59
+ | Frontend and React implementation | `frontend-architecture`, `component-architecture`, `vercel-composition-patterns`, `rendering-models`, `client-server-boundary` | P0 | Missing practical React 19 performance and implementation skill equivalent to `vercel-react-best-practices`. |
60
+ | Next.js implementation | `rendering-models`, `client-server-boundary`, general frontend skills | P0 | Missing `next-best-practices`, `next-cache-components`, Vercel deployment patterns as upgraded Skill Graph skills. |
61
+ | Design and UI | Strong conceptual coverage: `visual-design-foundations`, `visual-hierarchy`, `layout-composition`, `interaction-patterns`, `interaction-feedback`, `color-system-design`, `typography-system`, `theme-system-design`, `a11y` | P1 | Missing operator-style design skills: critique, polish, extract-design-system, bolder/quieter/delight. |
62
+ | Browser automation | Root has `playwright-cli`; upgraded library has `e2e-test-design`, `testing-strategy`, `webhook-integration` etc. | P0 | Missing practical browser automation Skill Graph skill despite strong demand for `agent-browser`, `browser-use`, `playwright-cli`. |
63
+ | Testing implementation | Strong theory: `testing-strategy`, `test-driven-development`, `integration-test-design`, `e2e-test-design`, `property-based-testing`, `mutation-testing`, `snapshot-testing` | P1 | Missing practical `webapp-testing`, React Testing Library, Playwright best practices, Vitest/Jest implementation skills. |
64
+ | Databases | Strong fundamentals: `data-modeling`, `database-migration`, `indexing-strategy`, `query-optimization`, `connection-pooling`, `transaction-isolation`, `replication-patterns`, `sharding-strategy` | P1 | Missing provider/ORM skills: Supabase, Neon, Firebase, Convex, PlanetScale, Drizzle, Prisma. |
65
+ | MCP/API and tool ecosystem | `tool-call-flow`, `tool-call-strategy`, `api-design`, `system-interface-contracts` | P0 | Missing upgraded `mcp-builder`, `claude-api`, `openai-api`, Vercel AI SDK skills. |
66
+ | Document and file workflows | `documentation`, `pdf` exists locally but not upgraded, `writing-humanizer`, `summarization` | P0 | Official Claude skills strongly emphasize `docx`, `pdf`, `pptx`, `xlsx`; Skill Graph needs document workflow coverage. |
67
+ | Cloud, DevOps, deployment | `version-control`, `merge-queue`, `cron-scheduling`, `background-jobs`, `error-tracking`, `observability-modeling` | P1 | Missing Vercel deployment, GitHub Actions, Docker, Cloudflare, Azure, CI/CD provider skills. |
68
+ | Product/marketing/growth | `seo-strategy`, `keywords`, `content-monitor`, `content-strategy` exists locally but not upgraded, `writing-humanizer` | P1 | Missing `seo-audit`, `copywriting`, `page-cro`, `pricing-strategy`, `analytics-tracking`, `ai-seo`, launch/growth skills. |
69
+ | Agent workflow | Strong upgraded conceptual set plus legacy local agent operations | P1 | Need public-safe migrations for root local skills: `agent-session-handoff`, `agent-task-delegation`, `autonomous-loop-patterns`, `git-worktree`, `session-lifecycle`, `task-lifecycle`, `orchestration`. |
70
+ | Security | `security-fundamentals`, `owasp-security`, `prompt-injection-defense`, `guardrails`, `intent-recognition` | P1 | Missing practical SAST/secrets/dependency/security-scanning, Semgrep/CodeQL, supply-chain, auth provider skills. |
71
+ | Analytics and observability | `observability-modeling`, `error-tracking`, `performance-engineering` | P2 | Missing Sentry, Datadog, PostHog, OpenTelemetry, product analytics implementation skills. |
72
+ | Mobile | `mobile-responsive-ux` only | P2 | Missing React Native, Expo, Flutter, mobile test/emulator skills. |
73
+ | E-commerce and payments | `shopify`, `printify`, `webhook-integration` | P2 | Missing Stripe, PayPal, Etsy, Amazon, WooCommerce, BigCommerce public-safe skills. |
74
+
75
+ ## Prioritized Gap-Fill Roadmap
76
+
77
+ Priority meanings:
78
+
79
+ | Priority | Meaning |
80
+ |---|---|
81
+ | P0 | Fill immediately. High external demand plus strong local usage or Skill Graph positioning value. |
82
+ | P1 | Next wave. Strong demand, but less central than P0 or already partly covered. |
83
+ | P2 | Useful expansion. Good market signal or local fit, but narrower audience or weaker urgency. |
84
+ | P3 | Defer. Valuable later, mostly style/operator depth or specialist ecosystems. |
85
+
86
+ ### P0 - Immediate
87
+
88
+ | # | Candidate skill | Status now | Why this is P0 | Recommended action |
89
+ |---:|---|---|---|---|
90
+ | 1 | `skill-discovery-import` | Gap | `find-skills` is the top skills.sh skill at 1.5M installs; Skill Graph differentiates by importing, annotating, routing, and auditing skills after discovery. | Author new Skill Graph skill covering skills.sh/SkillsMP discovery, safety review, import, SMP enrichment, privacy gate, and eval/drift handoff. |
91
+ | 2 | `playwright-browser-automation` | Root has `playwright-cli`, not upgraded | skills.sh Testing and Agent Workflows both emphasize browser automation; local Sales Hub and Module-Components use Playwright. | Port/generalize root `playwright-cli` into Skill Graph; include browser evidence, screenshots, snapshots, selector strategy boundaries. |
92
+ | 3 | `mcp-builder` | Root has `mcp-builder`, not upgraded | Official Anthropic skill; marketplace demand; Module-Components uses MCP SDK. | Port root skill, update against current MCP SDK and Anthropic/agentskills sources, add `verify_with: security-fundamentals`. |
93
+ | 4 | `react-best-practices` | Root has `react-best-practices`, not upgraded | React skills are a top public topic and `vercel-react-best-practices` is high-install; local repos use React 19. | Port or author reference skill for React 19 performance, RSC boundaries, Suspense, compiler-era memoization discipline. |
94
+ | 5 | `next-best-practices` | Root has `next-best-practices`, not upgraded | Sales Hub and Module-Components use Next 16.1.6; skills.sh has dedicated Next.js topic. | Port/update root skill, align with Next 16 App Router and Cache Components boundaries. |
95
+ | 6 | `next-cache-components` | Root has `next-cache-components`, not upgraded | skills.sh explicitly names `use cache`, `cacheLife`, `cacheTag`; local Sales Hub runs Next 16. | Port/update root skill as a reference capability; boundary with generic caching and rendering-models. |
96
+ | 7 | `shadcn-ui` | Gap in Skill Graph, local Module-Components uses shadcn | skills.sh React topic includes `shadcn`; Module-Components is a shadcn block library. | Author new Skill Graph skill for shadcn registry usage, component wrappers, theme tokens, variant extension, data-slot boundary. |
97
+ | 8 | `tailwind-css` | Gap in Skill Graph, local repos use Tailwind 4 | skills.sh React topic includes Tailwind design-system skills; Module-Components and orchestrator-ui use Tailwind. | Author Tailwind 4 skill; boundary with theme-system-design and design-system-architecture. |
98
+ | 9 | `document-workflows` | Gap; root has `pdf`, not upgraded | Official Anthropic skills include `docx`, `pdf`, `pptx`, `xlsx`; these are high-demand production skills. | Author umbrella router or four separate skills: `docx`, `pptx`, `xlsx`, `pdf-workflows`; start with umbrella if scope needs rapid coverage. |
99
+ | 10 | `anthropic-api` | Gap | Official Anthropic skill; Skill Graph works with API and runtime consumers. | Author reference skill for Anthropic API skills usage, Files/Skills APIs, rate-limit-safe patterns, tool/schema boundaries. |
100
+ | 11 | `vercel-deployment` | Root has `vercel`, not upgraded | Vercel deployment appears in Next topic; Sales Hub deploys on Vercel. | Port root `vercel` into Skill Graph; include env, preview, logs, rollback, no-MCP boundary. |
101
+ | 12 | `github-actions` | Gap/root docs mention CI | skills.sh leaderboard includes GitHub Actions docs; every public repo needs CI guidance. | Author skill for GitHub Actions workflows, matrix, secrets, caching, artifacts, security posture. |
102
+ | 13 | `stripe` | Root has archived generic `stripe` and Sales Hub `stripe-ledger-recon`, not public upgraded | Sales Hub uses Stripe; official skills.sh has Stripe creator rows; payments are high-risk. | Author portable Stripe integration skill; keep Sales Hub ledger reconciliation separate/private. |
103
+ | 14 | `sentry` | Gap; root has generic error-tracking | Sentry official creator appears on skills.sh; local Sales Hub dependencies include Sentry and error-tracking patterns. | Author Sentry-specific implementation skill; verify_with `error-tracking`, `security-fundamentals`, `gdpr-compliance` only if public-safe. |
104
+ | 15 | `agent-task-delegation` | Root legacy, deferred for public rewrite | Agent workflows topic includes subagent-driven development and parallel dispatch; local orchestration uses this heavily. | Rewrite public-safe portable version from root skill; remove local private runtime names. |
105
+ | 16 | `session-lifecycle` | Root legacy, deferred for public rewrite | Agent-runtime docs emphasize skill lifecycle/context; local multi-agent work needs session hygiene. | Rewrite public-safe version; boundary with `context-window`, `context-management`, `agent-session-handoff`. |
106
+
107
+ ### P1 - Next Wave
108
+
109
+ | # | Candidate skill | Status now | Why this is P1 | Recommended action |
110
+ |---:|---|---|---|---|
111
+ | 17 | `autonomous-loop-patterns` | Root legacy, deferred | Agent workflows topic includes Ralph loops and autonomous task loops. | Rewrite public-safe version; keep local script names as examples only if scrubbed. |
112
+ | 18 | `git-worktree` | Root legacy, not upgraded | Agent workflows topic includes worktrees; multi-agent parallelism needs isolation. | Port root skill; boundary with `version-control`, `merge-queue`. |
113
+ | 19 | `orchestration` | Root legacy, deferred | Strong local demand; public agent-workflows demand. | Rewrite as portable orchestration patterns, not Development-specific command docs. |
114
+ | 20 | `skill-portability` | Root skill loaded, not upgraded/exported | AgentSkills lists many runtimes; portability is central to Skill Graph positioning. | Promote to Skill Graph source/export; add current clients and transform boundaries. |
115
+ | 21 | `webapp-testing` | Gap | Official Anthropic skill and skills.sh Testing topic. | Author/port implementation skill bridging RTL, Playwright, component/e2e choices. |
116
+ | 22 | `playwright-best-practices` | Gap | skills.sh Testing category explicitly names it. | Author focused implementation companion to browser automation. |
117
+ | 23 | `vitest-jest-testing` | Root has `javascript-testing-patterns`, `test-generator` | Local repos use Jest and Vitest. | Port/generalize JS testing implementation patterns. |
118
+ | 24 | `radix-ui` | Root has `radix-ui`, not upgraded | Sales Hub uses Radix; shadcn depends on Radix primitives. | Port root skill; boundary with `shadcn-ui`, `a11y`. |
119
+ | 25 | `tanstack-table` | Gap/root data-table UX exists | Sales Hub uses TanStack Table; public React data grids are common. | Author implementation skill for state, sorting/filtering, virtualization, selection. |
120
+ | 26 | `d3-data-visualization` | Root `data-viz` exists, not upgraded | Sales Hub uses D3, public data/UI demand. | Port/generalize D3 and chart selection skill; boundary with visual-design and a11y. |
121
+ | 27 | `supabase` | Root archived generic, not upgraded | skills.sh database topic features Supabase. | Author provider skill or import official shape into SMP. |
122
+ | 28 | `neon-postgres` | Root `neon` exists, not upgraded | Sales Hub uses Neon; skills.sh database topic names Neon. | Port root `neon`; boundary with `database-migration` and `connection-pooling`. |
123
+ | 29 | `prisma` | Root archived generic, not upgraded | Sales Hub dev deps include Prisma 7. | Author current Prisma skill or defer if repo usage stays minimal. |
124
+ | 30 | `drizzle-orm` | Gap | skills.sh database topic names Drizzle. | Author if public library wants modern TypeScript ORM breadth. |
125
+ | 31 | `security-scanning` | Root has Sales Hub-specific, not upgraded | skillsmp Testing & Security is a large category; public repos need SAST/secrets/SCA. | Author portable SAST/secrets/dependency scanning skill; boundary with `security-fundamentals`, `owasp-security`. |
126
+ | 32 | `docker` | Root has `docker`, not upgraded | Common DevOps demand; local workspace uses Docker for DB. | Port root Docker skill; boundary with Vercel and database provider skills. |
127
+ | 33 | `copywriting` | Root has Sales Hub copywriting, not public | Marketing topic has high demand; Sales Hub also needs product copy. | Author portable copywriting or public-safe SaaS/ecommerce variant. |
128
+ | 34 | `seo-audit` | Root has `seo-audit`, not upgraded | skills.sh Marketing topic has strong SEO demand. | Port/author SEO audit skill; boundary with `seo-strategy`, `keywords`, `content-strategy`. |
129
+ | 35 | `page-cro` | Root has `page-cro`, not upgraded | Marketing topic names page CRO, pricing, paywalls. | Port/author CRO skill; boundary with design, task-analysis, copywriting. |
130
+ | 36 | `analytics-tracking` | Gap/root analytics archived | Marketing topic names analytics tracking; local Sales Hub uses analytics/reporting surfaces. | Author skill for event taxonomy, tracking plans, attribution, privacy-safe analytics. |
131
+
132
+ ### P2 - Useful Expansion
133
+
134
+ | # | Candidate skill | Status now | Why this is P2 | Recommended action |
135
+ |---:|---|---|---|---|
136
+ | 37 | `cloudflare` | Gap | Official skills.sh creator has 137 Cloudflare skills; common deployment edge provider. | Author if targeting infra breadth beyond Vercel. |
137
+ | 38 | `azure-core` | Gap | Azure skills dominate skills.sh leaderboard by volume/install counts. | Defer unless targeting enterprise infra audience. |
138
+ | 39 | `firebase` | Gap | skills.sh Database topic includes Firebase; common app backend. | Author provider skill if broadening beyond Postgres/Next stack. |
139
+ | 40 | `convex` | Gap | skills.sh Database topic includes Convex. | Defer until public library wants modern backend breadth. |
140
+ | 41 | `posthog` | Gap | Official creator on skills.sh; marketing/product analytics fit. | Author after analytics-tracking. |
141
+ | 42 | `opentelemetry` | Gap | Observability implementation gap. | Author after `sentry`; verify_with `observability-modeling`. |
142
+ | 43 | `react-native` | Gap | skills.sh Mobile topic; Vercel React Native skill high on leaderboard. | Author if mobile becomes a target audience. |
143
+ | 44 | `expo` | Gap | skills.sh official Expo creator. | Author after React Native if mobile wave starts. |
144
+ | 45 | `flutter` | Gap | Official Flutter creator appears on skills.sh. | Defer unless non-React mobile breadth is desired. |
145
+ | 46 | `ai-sdk` | Gap | Next.js topic names Vercel AI SDK; local AI-agent work likely benefits. | Author reference skill for streaming, tools, UI hooks; boundary with `generative-ui`, `streaming-architecture`. |
146
+ | 47 | `rag-architecture` | Partial via `knowledge-modeling` | Data & AI market signal; public agent apps need RAG implementation guidance. | Author implementation skill covering retrieval, chunking, evals, vector DB boundaries. |
147
+ | 48 | `vector-databases` | Gap | Pinecone official creator appears; RAG ecosystem demand. | Defer until `rag-architecture` exists. |
148
+ | 49 | `resend-email` | Gap/root email templates exists | Official Resend skills; Sales Hub notification/email surfaces. | Author provider skill if email feature work rises. |
149
+ | 50 | `launchdarkly-feature-flags` | Gap | Official creator and local feature-gating relevance. | Author if feature flagging becomes public-library target. |
150
+ | 51 | `clerk-auth` | Gap | Official Clerk creator, public app auth demand. | Author as provider skill; boundary with generic security/auth. |
151
+ | 52 | `auth0` | Gap | Official Auth0 creator. | Defer behind Clerk/Better Auth unless enterprise auth audience matters. |
152
+ | 53 | `better-auth` | Gap | High leaderboard item. | Author if modern auth framework breadth is important. |
153
+ | 54 | `email-sequence` | Gap | Marketing topic names lifecycle email. | Author after copywriting/page-cro. |
154
+ | 55 | `pricing-strategy` | Gap | Marketing topic and Sales Hub pricing surfaces. | Author after page-cro/copywriting. |
155
+ | 56 | `ai-seo` | Gap | Marketing topic names AI search visibility. | Author after seo-audit and content-strategy. |
156
+
157
+ ### P3 - Defer
158
+
159
+ | # | Candidate skill | Status now | Why defer | Recommended action |
160
+ |---:|---|---|---|---|
161
+ | 57 | `polish` | Gap | High design value, but operator-specific and partly covered by `visual-design-foundations`. | Add after core frontend/design implementation skills. |
162
+ | 58 | `critique` | Gap | Useful design operator, but can be a mode of `design-review`. | Add if Skill Graph wants action-verb design operators. |
163
+ | 59 | `extract-design-system` | Gap | High public demand; depends on design-token/component extraction scripts for best result. | Add after `shadcn-ui`, `tailwind-css`, `design-system-architecture` updates. |
164
+ | 60 | `bolder` | Gap | Stylistic operator, narrower audience. | Defer. |
165
+ | 61 | `delight` | Gap | Stylistic/motion operator; overlaps motion-design not yet upgraded. | Defer. |
166
+ | 62 | `distill` | Gap | Stylistic operator; overlaps information architecture and visual hierarchy. | Defer. |
167
+ | 63 | `quieter` | Gap | Stylistic operator; overlaps visual hierarchy. | Defer. |
168
+ | 64 | `brand-guidelines` | Gap | Official Anthropic skill; value depends on project-specific brand assets. | Keep as template/example rather than generic portable skill. |
169
+ | 65 | `internal-comms` | Gap | Official Anthropic skill but less central to coding-agent users. | Defer unless enterprise workflow pack is planned. |
170
+ | 66 | `slack-gif-creator` | Gap | Official Anthropic creative example, low relevance to Skill Graph core. | Defer. |
171
+ | 67 | `algorithmic-art` | Root archived; official Anthropic skill | Creative niche; not central to Development workspace. | Keep archived until creative/generative media pack. |
172
+ | 68 | `canvas-design` | Root archived; official Anthropic skill | Design niche; less urgent than frontend/design implementation. | Revisit after document/artifact workflows. |
173
+
174
+ ## Recommended Execution Order
175
+
176
+ | Phase | Target | Skills |
177
+ |---:|---|---|
178
+ | 1 | Skill ecosystem utility | `skill-discovery-import`, `skill-portability` promotion, `mcp-builder`, `anthropic-api` |
179
+ | 2 | Local frontend/runtime fit | `react-best-practices`, `next-best-practices`, `next-cache-components`, `shadcn-ui`, `tailwind-css`, `radix-ui` |
180
+ | 3 | Browser and testing implementation | `playwright-browser-automation`, `playwright-best-practices`, `webapp-testing`, `vitest-jest-testing` |
181
+ | 4 | Document/file workflows | `document-workflows` or split `docx`, `pptx`, `xlsx`, `pdf-workflows` |
182
+ | 5 | Provider/platform implementation | `vercel-deployment`, `github-actions`, `stripe`, `sentry`, `neon-postgres`, `supabase` |
183
+ | 6 | Public-safe agent workflow migrations | `agent-task-delegation`, `session-lifecycle`, `autonomous-loop-patterns`, `git-worktree`, `orchestration` |
184
+ | 7 | Marketing/growth | `copywriting`, `seo-audit`, `page-cro`, `analytics-tracking`, `pricing-strategy`, `ai-seo` |
185
+ | 8 | Broader ecosystem packs | `cloudflare`, `firebase`, `convex`, `react-native`, `expo`, `ai-sdk`, `rag-architecture` |
186
+
187
+ ## Skill Authoring Rules For This Roadmap
188
+
189
+ | Rule | Why |
190
+ |---|---|
191
+ | Prefer upgrading existing root skills when they are public-safe. | Faster and preserves prior knowledge. |
192
+ | Rewrite private/local Development skills before publishing. | `marketplace-skill-candidate-list.md` found local/private path and project-name risks. |
193
+ | Keep provider skills separate from fundamentals. | `database-migration` should not absorb Supabase/Neon/Firebase specifics; `security-fundamentals` should not absorb Clerk/Auth0/Better Auth. |
194
+ | Add `relations.boundary` aggressively for adjacent public skills. | Public marketplaces reward discoverability, but Skill Graph value comes from routing precision. |
195
+ | Add evals before declaring `eval_state: verified`. | Skill Graph repo rules treat eval state as a truth claim. |
196
+ | Export-specific short descriptions should not weaken canonical descriptions. | Existing marketplace candidate review already found >1024-char descriptions; use export overrides when needed. |
197
+
198
+ ## Immediate Next 10 Changes
199
+
200
+ | Rank | Change | Owner repo | Verification |
201
+ |---:|---|---|---|
202
+ | 1 | Author `skill-discovery-import` | `skill-graph` | `npm run lint`, routing eval for discovery/import prompts |
203
+ | 2 | Promote `skill-portability` into Skill Graph export | `skill-graph` | Manifest + marketplace export check |
204
+ | 3 | Port `playwright-cli` as `playwright-browser-automation` | `skill-graph` | Evals covering screenshot, snapshot, forms, no-MCP boundary |
205
+ | 4 | Port `mcp-builder` | `skill-graph` | Evals covering tool schema, resources, auth, inspector/testing |
206
+ | 5 | Port/update `react-best-practices` | `skill-graph` | Routing eval against React performance/component prompts |
207
+ | 6 | Port/update `next-best-practices` | `skill-graph` | Routing eval against App Router/RSC/cache prompts |
208
+ | 7 | Author `shadcn-ui` | `skill-graph` | Route against shadcn/component registry prompts; boundary with Radix |
209
+ | 8 | Author `document-workflows` | `skill-graph` | Evals for docx/pdf/pptx/xlsx routing and safety boundaries |
210
+ | 9 | Author/port `stripe` | `skill-graph` | Evals for checkout, webhooks, refunds, disputes; boundary with Sales Hub ledger recon |
211
+ | 10 | Rewrite public-safe `agent-task-delegation` | `skill-graph` | Privacy scan, routing eval for subagent/delegation prompts |
212
+
213
+ ## Completeness Claim
214
+
215
+ Examined 19 evidence sources, 137 exported Skill Graph skills, 138 Skill Graph sample-manifest rows, 277 root shared skills, 447 root active manifest entries, 3 product/runtime package manifests, 7 skills.sh topic pages, the skills.sh leaderboard page, SkillsMP, Anthropic Skills repo/API listing, and AgentSkills overview. This output covers all examined sources and all 137 already-upgraded Skill Graph marketplace skills. Items excluded: full row-by-row review of 447 active root skills and full 1.4M SkillsMP corpus, because this pass used marketplace category/topic/leaderboard signals plus local inventory counts rather than a complete external crawl.
@@ -0,0 +1,48 @@
1
+ # Skill Graph — Generated Status
2
+
3
+ > **Generated:** 2026-05-19T03:15:14.675Z
4
+ > **Generator:** `node scripts/build-status-doc.js` (regenerate; never hand-edit)
5
+ >
6
+ > This file is the single-source-of-truth status snapshot for the project's
7
+ > trust surface. Each value below is pulled from a deterministic origin:
8
+ > `package.json`, `schemas/skill.schema.json`, the generated manifest, ADR
9
+ > 0009, and the live exit code of each check script.
10
+
11
+ ## Identity
12
+
13
+ | Field | Value | Source |
14
+ |---|---|---|
15
+ | Package name | `@skill-graph/cli` | `package.json` |
16
+ | Package version | `0.5.8` | `package.json` |
17
+ | Node engine | `>=20.0.0` | `package.json` |
18
+ | Active schema version | `6` | `schemas/skill.schema.json` |
19
+ | Skill count (manifest) | `145` | `skills.manifest.json` |
20
+ | Mirror status | docs-only mirrors per ADR 0009 (2026-05-18) | `docs/adr/0009-sibling-repo-deprecation.md` |
21
+
22
+ ## Checks
23
+
24
+ | Check | Status | Duration | Last line |
25
+ |---|---|---|---|
26
+ | check-markdown-links | ✅ PASS | 188 ms | OK markdown links (245 file(s)) |
27
+ | check-protocol-consistency | ✅ PASS | 114 ms | PASS: all protocol consistency checks passed. 0 warning(s). |
28
+ | check-doc-drift | ✅ PASS | 61 ms | OK doc drift sentinel: 59 active doc(s) scanned against schema v6 |
29
+ | check-mirror-freeze | ✅ PASS | 61 ms | OK mirror freeze: 50 file(s) scanned across 2 mirror(s); no active-source/package claims found. |
30
+
31
+ ## How to refresh
32
+
33
+ ```bash
34
+ node scripts/build-status-doc.js
35
+ ```
36
+
37
+ `docs/status.generated.md` is regenerated and overwritten each run. CI
38
+ should commit the regenerated file alongside any code that affects the
39
+ underlying values (package version bump, schema bump, new lint check,
40
+ etc.).
41
+
42
+ ## What this replaces
43
+
44
+ - Hand-maintained "Latest release" lines in README hero sections (drifted three minor versions in Phase 1).
45
+ - Ad-hoc "skill count" claims scattered across docs (drifted from 137 → 141 → 145 in Phase 1 alone).
46
+ - Manual "we run these checks" lists in CONTRIBUTING.
47
+
48
+ The reader is now one URL away from the truth.
@@ -0,0 +1,59 @@
1
+ # Findings
2
+
3
+ ## Skill
4
+
5
+ `context-graph`
6
+
7
+ ## Audit Date
8
+
9
+ 2026-05-17
10
+
11
+ ## Verdict Summary
12
+
13
+ PARTIAL
14
+
15
+ ## Findings
16
+
17
+ ID: F1
18
+ Severity: TODO
19
+ Surface: activation
20
+ Category: Activation quality — routing coverage
21
+ Problem: TODO — human judgment required
22
+ Evidence: TODO — reviewer must inspect the skill body
23
+ Required action: Does the description name real trigger scenarios? Are keywords specific and not generic filler? Does the skill under-trigger or over-trigger for its intended use case?
24
+
25
+ ID: F2
26
+ Severity: TODO
27
+ Surface: relations
28
+ Category: Relation quality — graph correctness
29
+ Problem: TODO — human judgment required
30
+ Evidence: TODO — reviewer must inspect the skill body
31
+ Required action: Do relations point at semantically correct neighbors? Are boundary handoffs crisp enough to prevent misuse? Are broader/narrower claims taxonomic rather than associative? Are dependencies real?
32
+
33
+ ID: F3
34
+ Severity: TODO
35
+ Surface: grounding
36
+ Category: Grounding quality — claims vs truth sources
37
+ Problem: TODO — human judgment required
38
+ Evidence: TODO — reviewer must inspect the skill body
39
+ Required action: If scope: codebase, do all truth_sources exist? Do claims in the body match the referenced files? Classify any mismatch as skill drift, code drift, or doc drift.
40
+
41
+ ID: F4
42
+ Severity: TODO
43
+ Surface: content
44
+ Category: Content quality — completeness and density
45
+ Problem: TODO — human judgment required
46
+ Evidence: TODO — reviewer must inspect the skill body
47
+ Required action: Does the skill have a clear Coverage section, a Philosophy section, at least one decision table or checklist, and explicit negative bounds (Do NOT Use When)? Does it contain generic filler that adds no routing signal?
48
+
49
+ ID: F5
50
+ Severity: TODO
51
+ Surface: evals
52
+ Category: Eval quality — coverage and realism
53
+ Problem: TODO — human judgment required
54
+ Evidence: TODO — reviewer must inspect the skill body
55
+ Required action: Do eval files exist if the skill is expected to be graded? Do they test realistic prompts — not trivia — and cover boundaries and failure cases as well as the happy path?
56
+
57
+ ## Required Fixes
58
+
59
+ None identified by lint. See human-judgment finding blocks above for remaining review areas.
@@ -0,0 +1,22 @@
1
+ # Scorecard
2
+
3
+ ## Skill
4
+
5
+ `context-graph`
6
+
7
+ ## Dimensions
8
+
9
+ | Dimension | Score | Note |
10
+ |---|---|---|
11
+ | Metadata validity | 5 | auto: lint passes clean |
12
+ | Activation quality | TODO | Human review required — see findings.md |
13
+ | Relation quality | TODO | Human review required — see findings.md |
14
+ | Grounding fidelity | TODO | Human review required — verify claims match truth sources |
15
+ | Content quality | TODO | Human review required — see findings.md |
16
+ | Eval quality | TODO | Human review required — see findings.md |
17
+ | Portability quality | TODO | Human review required — see findings.md |
18
+
19
+ > **Note:** This scorecard was generated by `node scripts/skill-audit.js`.
20
+ > Schema validity is auto-scored from `skill-lint.js` output.
21
+ > All other dimensions require human judgment. Replace each TODO with a
22
+ > 1–5 score and a short justification once the review is complete.
@@ -0,0 +1,33 @@
1
+ # Verdict
2
+
3
+ ## Skill
4
+
5
+ `context-graph`
6
+
7
+ ## Audit Date
8
+
9
+ 2026-05-17
10
+
11
+ ## Final Verdict
12
+
13
+ PARTIAL
14
+
15
+ ## Rationale
16
+
17
+ The skill passes all deterministic lint checks (schema validity, naming convention, relation target existence, eval coherence). Human judgment is required to assess activation quality, relation semantics, grounding fidelity, content quality, eval realism, and portability. Update this verdict after completing the qualitative review sections in findings.md.
18
+
19
+ ## Human Judgment Required
20
+
21
+ This is a stub verdict generated by `node scripts/skill-audit.js`. It reflects only the deterministic lint result.
22
+ A human auditor must review the following before this verdict is final:
23
+
24
+ - Activation quality (routing coverage, keyword specificity)
25
+ - Relation semantics (related/broader/boundary correctness)
26
+ - Grounding fidelity (claims vs truth sources, when scope: codebase)
27
+ - Content quality (decision tables, Philosophy section, negative bounds)
28
+ - Eval quality (coverage, realism, boundary cases)
29
+ - Portability (no private assumptions leak through, export targets are real)
30
+
31
+ ## Follow-up State
32
+
33
+ TODO — set to one of: `No fixes required`, `Fixes applied`, `Fixes deferred — <reason>`, or `Pending human review`.
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "skill_name": "a11y",
3
3
  "subject": "Interaction accessibility for web UI: semantic primitive selection, keyboard access, focus management, labeling, change announcement, and user-preference respect",
4
- "adjacent_concepts": ["documentation", "testing-strategy", "refactor"],
4
+ "adjacent_concepts": [
5
+ "documentation",
6
+ "testing-strategy",
7
+ "refactor"
8
+ ],
5
9
  "grounding_note": "Truth sources cite line ranges in SKILL.md. The stability mechanism is the `checkEvalTruthSourceRanges` check in scripts/skill-lint.js (D2) — every edit that shifts a cited line out of file bounds or to a missing file fails lint before commit. Section-anchor citations are not used because Markdown renderers slugify headings inconsistently across consumers; line ranges give the grader an exact substring to ground against.",
6
10
  "evals": [
7
11
  {
@@ -13,7 +17,9 @@
13
17
  "truth_mode": "code_verification",
14
18
  "skill_type": "concept",
15
19
  "criticality": "high",
16
- "truth_sources": ["skills/a11y/SKILL.md:83-96"]
20
+ "truth_sources": [
21
+ "skills/quality/a11y/SKILL.md:83-96"
22
+ ]
17
23
  },
18
24
  {
19
25
  "id": 2,
@@ -24,7 +30,9 @@
24
30
  "truth_mode": "conceptual_correctness_plus_repo_application",
25
31
  "skill_type": "concept",
26
32
  "criticality": "normal",
27
- "truth_sources": ["skills/a11y/SKILL.md:79-81"]
33
+ "truth_sources": [
34
+ "skills/quality/a11y/SKILL.md:79-81"
35
+ ]
28
36
  },
29
37
  {
30
38
  "id": 3,
@@ -35,7 +43,9 @@
35
43
  "truth_mode": "code_verification",
36
44
  "skill_type": "concept",
37
45
  "criticality": "normal",
38
- "truth_sources": ["skills/a11y/SKILL.md:114-119"]
46
+ "truth_sources": [
47
+ "skills/quality/a11y/SKILL.md:114-119"
48
+ ]
39
49
  },
40
50
  {
41
51
  "id": 4,
@@ -46,7 +56,9 @@
46
56
  "truth_mode": "process_correctness",
47
57
  "skill_type": "workflow",
48
58
  "criticality": "high",
49
- "truth_sources": ["skills/a11y/SKILL.md:83-100"]
59
+ "truth_sources": [
60
+ "skills/quality/a11y/SKILL.md:83-100"
61
+ ]
50
62
  },
51
63
  {
52
64
  "id": 5,
@@ -57,7 +69,10 @@
57
69
  "truth_mode": "conceptual_correctness_plus_repo_application",
58
70
  "skill_type": "concept",
59
71
  "criticality": "normal",
60
- "truth_sources": ["skills/a11y/SKILL.md:106-112", "skills/a11y/SKILL.md:70-77"]
72
+ "truth_sources": [
73
+ "skills/quality/a11y/SKILL.md:106-112",
74
+ "skills/quality/a11y/SKILL.md:70-77"
75
+ ]
61
76
  },
62
77
  {
63
78
  "id": 6,
@@ -68,7 +83,10 @@
68
83
  "truth_mode": "conceptual_correctness_plus_repo_application",
69
84
  "skill_type": "concept",
70
85
  "criticality": "critical",
71
- "truth_sources": ["skills/a11y/SKILL.md:98-100", "skills/a11y/SKILL.md:83-96"]
86
+ "truth_sources": [
87
+ "skills/quality/a11y/SKILL.md:98-100",
88
+ "skills/quality/a11y/SKILL.md:83-96"
89
+ ]
72
90
  },
73
91
  {
74
92
  "id": 7,
@@ -79,7 +97,9 @@
79
97
  "truth_mode": "code_verification",
80
98
  "skill_type": "concept",
81
99
  "criticality": "normal",
82
- "truth_sources": ["skills/a11y/SKILL.md:114-119"]
100
+ "truth_sources": [
101
+ "skills/quality/a11y/SKILL.md:114-119"
102
+ ]
83
103
  },
84
104
  {
85
105
  "id": 8,
@@ -90,7 +110,9 @@
90
110
  "truth_mode": "process_correctness",
91
111
  "skill_type": "workflow",
92
112
  "criticality": "high",
93
- "truth_sources": ["skills/a11y/SKILL.md:70-77"]
113
+ "truth_sources": [
114
+ "skills/quality/a11y/SKILL.md:70-77"
115
+ ]
94
116
  },
95
117
  {
96
118
  "id": 9,
@@ -101,7 +123,9 @@
101
123
  "truth_mode": "process_correctness",
102
124
  "skill_type": "workflow",
103
125
  "criticality": "high",
104
- "truth_sources": ["skills/a11y/SKILL.md:83-96"]
126
+ "truth_sources": [
127
+ "skills/quality/a11y/SKILL.md:83-96"
128
+ ]
105
129
  },
106
130
  {
107
131
  "id": 10,
@@ -112,7 +136,10 @@
112
136
  "truth_mode": "code_verification",
113
137
  "skill_type": "concept",
114
138
  "criticality": "normal",
115
- "truth_sources": ["skills/a11y/SKILL.md:83-96", "skills/a11y/SKILL.md:70-77"]
139
+ "truth_sources": [
140
+ "skills/quality/a11y/SKILL.md:83-96",
141
+ "skills/quality/a11y/SKILL.md:70-77"
142
+ ]
116
143
  },
117
144
  {
118
145
  "id": 11,
@@ -123,7 +150,10 @@
123
150
  "truth_mode": "process_correctness",
124
151
  "skill_type": "workflow",
125
152
  "criticality": "high",
126
- "truth_sources": ["skills/a11y/SKILL.md:70-77", "skills/a11y/SKILL.md:98-100"]
153
+ "truth_sources": [
154
+ "skills/quality/a11y/SKILL.md:70-77",
155
+ "skills/quality/a11y/SKILL.md:98-100"
156
+ ]
127
157
  },
128
158
  {
129
159
  "id": 12,
@@ -134,7 +164,9 @@
134
164
  "truth_mode": "code_verification",
135
165
  "skill_type": "concept",
136
166
  "criticality": "normal",
137
- "truth_sources": ["skills/a11y/SKILL.md:52-55"]
167
+ "truth_sources": [
168
+ "skills/quality/a11y/SKILL.md:52-55"
169
+ ]
138
170
  }
139
171
  ]
140
172
  }
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "skill_name": "api-design",
3
3
  "subject": "API surface design for resources, actions, schemas, status codes, pagination, idempotency, versioning, auth, and error envelopes",
4
- "adjacent_concepts": ["system-interface-contracts", "event-contract-design", "data-modeling", "webhook-integration"],
4
+ "adjacent_concepts": [
5
+ "system-interface-contracts",
6
+ "event-contract-design",
7
+ "data-modeling",
8
+ "webhook-integration"
9
+ ],
5
10
  "grounding_note": "Truth sources cite the whole SKILL.md file to keep the initial eval surface stable while routing boundaries are tightened.",
6
11
  "evals": [
7
12
  {
@@ -13,7 +18,9 @@
13
18
  "truth_mode": "process_correctness",
14
19
  "skill_type": "concept",
15
20
  "criticality": "high",
16
- "truth_sources": ["skills/api-design/SKILL.md"]
21
+ "truth_sources": [
22
+ "skills/engineering/api-design/SKILL.md"
23
+ ]
17
24
  },
18
25
  {
19
26
  "id": 2,
@@ -24,7 +31,9 @@
24
31
  "truth_mode": "conceptual_correctness_plus_repo_application",
25
32
  "skill_type": "concept",
26
33
  "criticality": "high",
27
- "truth_sources": ["skills/api-design/SKILL.md"]
34
+ "truth_sources": [
35
+ "skills/engineering/api-design/SKILL.md"
36
+ ]
28
37
  },
29
38
  {
30
39
  "id": 3,
@@ -35,7 +44,9 @@
35
44
  "truth_mode": "code_verification",
36
45
  "skill_type": "concept",
37
46
  "criticality": "normal",
38
- "truth_sources": ["skills/api-design/SKILL.md"]
47
+ "truth_sources": [
48
+ "skills/engineering/api-design/SKILL.md"
49
+ ]
39
50
  },
40
51
  {
41
52
  "id": 4,
@@ -46,7 +57,9 @@
46
57
  "truth_mode": "code_verification",
47
58
  "skill_type": "concept",
48
59
  "criticality": "normal",
49
- "truth_sources": ["skills/api-design/SKILL.md"]
60
+ "truth_sources": [
61
+ "skills/engineering/api-design/SKILL.md"
62
+ ]
50
63
  }
51
64
  ]
52
65
  }