@mrciphersmith/keryx 0.2.9

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 (297) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +351 -0
  3. package/dist/cli.js +48427 -0
  4. package/dist/proxy-worker.js +381 -0
  5. package/package.json +63 -0
  6. package/src/gdgraph/affected.test.ts +100 -0
  7. package/src/gdgraph/affected.ts +135 -0
  8. package/src/gdgraph/build-integrity.test.ts +193 -0
  9. package/src/gdgraph/build-lang.test.ts +399 -0
  10. package/src/gdgraph/build.test.ts +120 -0
  11. package/src/gdgraph/build.ts +804 -0
  12. package/src/gdgraph/config.test.ts +47 -0
  13. package/src/gdgraph/config.ts +113 -0
  14. package/src/gdgraph/core-sources.test.ts +99 -0
  15. package/src/gdgraph/core-sources.ts +20 -0
  16. package/src/gdgraph/enrich.ts +79 -0
  17. package/src/gdgraph/fallback.test.ts +153 -0
  18. package/src/gdgraph/find.test.ts +78 -0
  19. package/src/gdgraph/find.ts +107 -0
  20. package/src/gdgraph/pagerank.ts +129 -0
  21. package/src/gdgraph/path.test.ts +56 -0
  22. package/src/gdgraph/path.ts +112 -0
  23. package/src/gdgraph/query.ts +133 -0
  24. package/src/gdgraph/repomap.test.ts +110 -0
  25. package/src/gdgraph/repomap.ts +193 -0
  26. package/src/gdgraph/service.test.ts +59 -0
  27. package/src/gdgraph/service.ts +51 -0
  28. package/src/gdgraph/staleness.ts +20 -0
  29. package/src/gdgraph/symbol.test.ts +89 -0
  30. package/src/gdgraph/symbol.ts +123 -0
  31. package/src/gdgraph/symbols-capability.test.ts +41 -0
  32. package/src/gdgraph/symbols-capability.ts +49 -0
  33. package/src/gdgraph/target.ts +56 -0
  34. package/src/gdgraph/treesitter/adapter.test.ts +249 -0
  35. package/src/gdgraph/treesitter/adapter.ts +213 -0
  36. package/src/gdgraph/treesitter/extract.test.ts +278 -0
  37. package/src/gdgraph/treesitter/extract.ts +389 -0
  38. package/src/gdgraph/treesitter/grammars.ts +110 -0
  39. package/src/gdgraph/treesitter/no-treesitter-import.test.ts +51 -0
  40. package/src/gdgraph/treesitter/resolve-calls.test.ts +38 -0
  41. package/src/gdgraph/types.ts +63 -0
  42. package/src/gdskills/bundled/rules/core/api-contracts.mdc +148 -0
  43. package/src/gdskills/bundled/rules/core/async-patterns.mdc +185 -0
  44. package/src/gdskills/bundled/rules/core/clean-architecture.mdc +163 -0
  45. package/src/gdskills/bundled/rules/core/code-review-ai-assistant.mdc +49 -0
  46. package/src/gdskills/bundled/rules/core/code-review-b091-profile.mdc +48 -0
  47. package/src/gdskills/bundled/rules/core/code-style-patterns.mdc +54 -0
  48. package/src/gdskills/bundled/rules/core/commit-message-formatting.mdc +25 -0
  49. package/src/gdskills/bundled/rules/core/database-patterns.mdc +162 -0
  50. package/src/gdskills/bundled/rules/core/documentation-management.mdc +106 -0
  51. package/src/gdskills/bundled/rules/core/error-handling.mdc +163 -0
  52. package/src/gdskills/bundled/rules/core/execution-metrics.md +99 -0
  53. package/src/gdskills/bundled/rules/core/frontend-assistant.mdc +40 -0
  54. package/src/gdskills/bundled/rules/core/git-rules.mdc +37 -0
  55. package/src/gdskills/bundled/rules/core/gproject-contracts.mdc +198 -0
  56. package/src/gdskills/bundled/rules/core/implementation-doc-mandate.mdc +149 -0
  57. package/src/gdskills/bundled/rules/core/implementation-plans.mdc +58 -0
  58. package/src/gdskills/bundled/rules/core/jobs-documentation.mdc +221 -0
  59. package/src/gdskills/bundled/rules/core/mobx-store-template.mdc +561 -0
  60. package/src/gdskills/bundled/rules/core/model-selection.mdc +53 -0
  61. package/src/gdskills/bundled/rules/core/nestjs-dto.mdc +50 -0
  62. package/src/gdskills/bundled/rules/core/playwright-testing.mdc +321 -0
  63. package/src/gdskills/bundled/rules/core/requirements-management.mdc +35 -0
  64. package/src/gdskills/bundled/rules/core/requirements-package-standard.mdc +103 -0
  65. package/src/gdskills/bundled/rules/core/review-agent-profile.mdc +49 -0
  66. package/src/gdskills/bundled/rules/core/review-strict-profile.mdc +44 -0
  67. package/src/gdskills/bundled/rules/core/rule-management-workflow.mdc +62 -0
  68. package/src/gdskills/bundled/rules/core/security-baseline.mdc +155 -0
  69. package/src/gdskills/bundled/rules/core/shared-definitions.mdc +79 -0
  70. package/src/gdskills/bundled/rules/core/skill-lifecycle.mdc +55 -0
  71. package/src/gdskills/bundled/rules/core/skills-storage-workflow.mdc +88 -0
  72. package/src/gdskills/bundled/rules/core/solid-principles.mdc +149 -0
  73. package/src/gdskills/bundled/rules/core/storybook-guidelines.mdc +36 -0
  74. package/src/gdskills/bundled/rules/core/subagent-context-construction.md +107 -0
  75. package/src/gdskills/bundled/rules/core/subagent-status-protocol.md +169 -0
  76. package/src/gdskills/bundled/rules/core/tdd-workflow.mdc +96 -0
  77. package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.codex.md +47 -0
  78. package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.cursor.md +55 -0
  79. package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.md +352 -0
  80. package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.opencode.md +39 -0
  81. package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.zed.md +29 -0
  82. package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.codex.md +567 -0
  83. package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.cursor.md +567 -0
  84. package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.md +655 -0
  85. package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.opencode.md +567 -0
  86. package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.zed.md +567 -0
  87. package/src/gdskills/bundled/skills/orchestration/context-collector/input-contract.schema.json +134 -0
  88. package/src/gdskills/bundled/skills/orchestration/context-collector/orchestrator-prompt.md +183 -0
  89. package/src/gdskills/bundled/skills/orchestration/context-collector/output-contract.schema.json +208 -0
  90. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.codex.md +1412 -0
  91. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.cursor.md +1412 -0
  92. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.detail.md +735 -0
  93. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.md +468 -0
  94. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.opencode.md +1412 -0
  95. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.zed.md +1412 -0
  96. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/analysis-request.md +62 -0
  97. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/analysis-request.template.md +79 -0
  98. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/input-contract.schema.json +247 -0
  99. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/orchestrator-prompt.md +362 -0
  100. package/src/gdskills/bundled/skills/orchestration/feature-analyzer/output-contract.schema.json +87 -0
  101. package/src/gdskills/bundled/skills/orchestration/feature-dev/SKILL.codex.md +105 -0
  102. package/src/gdskills/bundled/skills/orchestration/feature-dev/SKILL.cursor.md +105 -0
  103. package/src/gdskills/bundled/skills/orchestration/feature-dev/SKILL.md +165 -0
  104. package/src/gdskills/bundled/skills/orchestration/flow-orchestrator/SKILL.md +379 -0
  105. package/src/gdskills/bundled/skills/orchestration/flow-orchestrator/input-contract.schema.json +33 -0
  106. package/src/gdskills/bundled/skills/orchestration/flow-orchestrator/output-contract.schema.json +41 -0
  107. package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.codex.md +307 -0
  108. package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.cursor.md +307 -0
  109. package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.md +373 -0
  110. package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.opencode.md +307 -0
  111. package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.zed.md +307 -0
  112. package/src/gdskills/bundled/skills/orchestration/issue-analyzer/input-contract.schema.json +130 -0
  113. package/src/gdskills/bundled/skills/orchestration/issue-analyzer/issue-request.template.md +50 -0
  114. package/src/gdskills/bundled/skills/orchestration/issue-analyzer/orchestrator-prompt.md +155 -0
  115. package/src/gdskills/bundled/skills/orchestration/issue-analyzer/output-contract.schema.json +61 -0
  116. package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.codex.md +365 -0
  117. package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.cursor.md +365 -0
  118. package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.md +373 -0
  119. package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.opencode.md +365 -0
  120. package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.zed.md +365 -0
  121. package/src/gdskills/bundled/skills/orchestration/job-documenter/input-contract.schema.json +55 -0
  122. package/src/gdskills/bundled/skills/orchestration/job-documenter/output-contract.schema.json +58 -0
  123. package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.codex.md +1701 -0
  124. package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.cursor.md +1701 -0
  125. package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.md +1734 -0
  126. package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.opencode.md +1701 -0
  127. package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.zed.md +1701 -0
  128. package/src/gdskills/bundled/skills/orchestration/job-orchestrator/input-contract.schema.json +188 -0
  129. package/src/gdskills/bundled/skills/orchestration/job-orchestrator/orchestrator-prompt.md +179 -0
  130. package/src/gdskills/bundled/skills/orchestration/job-orchestrator/output-contract.schema.json +103 -0
  131. package/src/gdskills/bundled/skills/orchestration/job-orchestrator/state.schema.json +164 -0
  132. package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.codex.md +395 -0
  133. package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.cursor.md +395 -0
  134. package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.md +556 -0
  135. package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.opencode.md +395 -0
  136. package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.zed.md +395 -0
  137. package/src/gdskills/bundled/skills/orchestration/task-implementer/input-contract.schema.json +204 -0
  138. package/src/gdskills/bundled/skills/orchestration/task-implementer/orchestrator-prompt.md +206 -0
  139. package/src/gdskills/bundled/skills/orchestration/task-implementer/output-contract.schema.json +51 -0
  140. package/src/gdskills/bundled/skills/orchestration/task-implementer/task-request.template.md +111 -0
  141. package/src/gdskills/bundled/skills/planning/autodoc-analyst/SKILL.md +163 -0
  142. package/src/gdskills/bundled/skills/planning/autodoc-architect/SKILL.md +161 -0
  143. package/src/gdskills/bundled/skills/planning/autodoc-assembler/SKILL.md +128 -0
  144. package/src/gdskills/bundled/skills/planning/autodoc-orchestrator/SKILL.md +321 -0
  145. package/src/gdskills/bundled/skills/planning/autodoc-scanner/SKILL.md +166 -0
  146. package/src/gdskills/bundled/skills/planning/autodoc-writer/SKILL.md +253 -0
  147. package/src/gdskills/bundled/skills/planning/brainstorm/SKILL.claude.md +46 -0
  148. package/src/gdskills/bundled/skills/planning/brainstorm/SKILL.codex.md +90 -0
  149. package/src/gdskills/bundled/skills/planning/brainstorm/SKILL.cursor.md +90 -0
  150. package/src/gdskills/bundled/skills/planning/brainstorm/SKILL.md +90 -0
  151. package/src/gdskills/bundled/skills/planning/consistency-checker/SKILL.codex.md +33 -0
  152. package/src/gdskills/bundled/skills/planning/consistency-checker/SKILL.cursor.md +33 -0
  153. package/src/gdskills/bundled/skills/planning/consistency-checker/SKILL.md +190 -0
  154. package/src/gdskills/bundled/skills/planning/docpack-orchestrator/SKILL.md +142 -0
  155. package/src/gdskills/bundled/skills/planning/docpack-orchestrator/input-contract.schema.json +31 -0
  156. package/src/gdskills/bundled/skills/planning/docpack-orchestrator/output-contract.schema.json +31 -0
  157. package/src/gdskills/bundled/skills/planning/docpack-review/SKILL.md +80 -0
  158. package/src/gdskills/bundled/skills/planning/docpack-review/input-contract.schema.json +20 -0
  159. package/src/gdskills/bundled/skills/planning/docpack-review/output-contract.schema.json +36 -0
  160. package/src/gdskills/bundled/skills/planning/interview/SKILL.codex.md +181 -0
  161. package/src/gdskills/bundled/skills/planning/interview/SKILL.cursor.md +181 -0
  162. package/src/gdskills/bundled/skills/planning/interview/SKILL.md +187 -0
  163. package/src/gdskills/bundled/skills/planning/interviewer/SKILL.claude.md +94 -0
  164. package/src/gdskills/bundled/skills/planning/interviewer/SKILL.codex.md +99 -0
  165. package/src/gdskills/bundled/skills/planning/interviewer/SKILL.cursor.md +99 -0
  166. package/src/gdskills/bundled/skills/planning/interviewer/SKILL.md +105 -0
  167. package/src/gdskills/bundled/skills/planning/patterns-researcher/SKILL.codex.md +33 -0
  168. package/src/gdskills/bundled/skills/planning/patterns-researcher/SKILL.cursor.md +33 -0
  169. package/src/gdskills/bundled/skills/planning/patterns-researcher/SKILL.md +237 -0
  170. package/src/gdskills/bundled/skills/planning/planner/SKILL.codex.md +33 -0
  171. package/src/gdskills/bundled/skills/planning/planner/SKILL.cursor.md +33 -0
  172. package/src/gdskills/bundled/skills/planning/planner/SKILL.md +190 -0
  173. package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.codex.md +193 -0
  174. package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.cursor.md +193 -0
  175. package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.md +193 -0
  176. package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.opencode.md +193 -0
  177. package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.zed.md +193 -0
  178. package/src/gdskills/bundled/skills/planning/prd-creator/input-contract.schema.json +63 -0
  179. package/src/gdskills/bundled/skills/planning/prd-creator/output-contract.schema.json +175 -0
  180. package/src/gdskills/bundled/skills/planning/problem-definer/SKILL.codex.md +31 -0
  181. package/src/gdskills/bundled/skills/planning/problem-definer/SKILL.cursor.md +31 -0
  182. package/src/gdskills/bundled/skills/planning/problem-definer/SKILL.md +153 -0
  183. package/src/gdskills/bundled/skills/planning/project-discovery/SKILL.codex.md +32 -0
  184. package/src/gdskills/bundled/skills/planning/project-discovery/SKILL.cursor.md +32 -0
  185. package/src/gdskills/bundled/skills/planning/project-discovery/SKILL.md +166 -0
  186. package/src/gdskills/bundled/skills/planning/spec-writer/SKILL.codex.md +44 -0
  187. package/src/gdskills/bundled/skills/planning/spec-writer/SKILL.cursor.md +44 -0
  188. package/src/gdskills/bundled/skills/planning/spec-writer/SKILL.md +243 -0
  189. package/src/gdskills/bundled/skills/planning/stack-advisor/SKILL.codex.md +43 -0
  190. package/src/gdskills/bundled/skills/planning/stack-advisor/SKILL.cursor.md +43 -0
  191. package/src/gdskills/bundled/skills/planning/stack-advisor/SKILL.md +193 -0
  192. package/src/gdskills/bundled/skills/platform/agent-entrypoint-distiller/SKILL.md +47 -0
  193. package/src/gdskills/bundled/skills/platform/claude-md-management/SKILL.codex.md +87 -0
  194. package/src/gdskills/bundled/skills/platform/claude-md-management/SKILL.cursor.md +87 -0
  195. package/src/gdskills/bundled/skills/platform/claude-md-management/SKILL.md +87 -0
  196. package/src/gdskills/bundled/skills/platform/hookify/SKILL.codex.md +100 -0
  197. package/src/gdskills/bundled/skills/platform/hookify/SKILL.cursor.md +100 -0
  198. package/src/gdskills/bundled/skills/platform/hookify/SKILL.md +100 -0
  199. package/src/gdskills/bundled/skills/quality/changelog/SKILL.claude.md +45 -0
  200. package/src/gdskills/bundled/skills/quality/changelog/SKILL.codex.md +84 -0
  201. package/src/gdskills/bundled/skills/quality/changelog/SKILL.cursor.md +84 -0
  202. package/src/gdskills/bundled/skills/quality/changelog/SKILL.md +84 -0
  203. package/src/gdskills/bundled/skills/quality/commit/SKILL.codex.md +66 -0
  204. package/src/gdskills/bundled/skills/quality/commit/SKILL.cursor.md +66 -0
  205. package/src/gdskills/bundled/skills/quality/commit/SKILL.md +66 -0
  206. package/src/gdskills/bundled/skills/quality/db-migrate/SKILL.claude.md +40 -0
  207. package/src/gdskills/bundled/skills/quality/db-migrate/SKILL.codex.md +66 -0
  208. package/src/gdskills/bundled/skills/quality/db-migrate/SKILL.cursor.md +66 -0
  209. package/src/gdskills/bundled/skills/quality/db-migrate/SKILL.md +66 -0
  210. package/src/gdskills/bundled/skills/quality/dependency-update/SKILL.claude.md +45 -0
  211. package/src/gdskills/bundled/skills/quality/dependency-update/SKILL.codex.md +81 -0
  212. package/src/gdskills/bundled/skills/quality/dependency-update/SKILL.cursor.md +81 -0
  213. package/src/gdskills/bundled/skills/quality/dependency-update/SKILL.md +81 -0
  214. package/src/gdskills/bundled/skills/quality/deploy/SKILL.claude.md +42 -0
  215. package/src/gdskills/bundled/skills/quality/deploy/SKILL.codex.md +70 -0
  216. package/src/gdskills/bundled/skills/quality/deploy/SKILL.cursor.md +70 -0
  217. package/src/gdskills/bundled/skills/quality/deploy/SKILL.md +70 -0
  218. package/src/gdskills/bundled/skills/quality/metaproject-security/SKILL.md +103 -0
  219. package/src/gdskills/bundled/skills/quality/perf-check/SKILL.claude.md +48 -0
  220. package/src/gdskills/bundled/skills/quality/perf-check/SKILL.codex.md +83 -0
  221. package/src/gdskills/bundled/skills/quality/perf-check/SKILL.cursor.md +83 -0
  222. package/src/gdskills/bundled/skills/quality/perf-check/SKILL.md +83 -0
  223. package/src/gdskills/bundled/skills/quality/pr/SKILL.codex.md +75 -0
  224. package/src/gdskills/bundled/skills/quality/pr/SKILL.cursor.md +75 -0
  225. package/src/gdskills/bundled/skills/quality/pr/SKILL.md +75 -0
  226. package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.codex.md +364 -0
  227. package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.cursor.md +295 -0
  228. package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.md +378 -0
  229. package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.opencode.md +364 -0
  230. package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.zed.md +38 -0
  231. package/src/gdskills/bundled/skills/quality/pr-issue-documenter/input-contract.schema.json +53 -0
  232. package/src/gdskills/bundled/skills/quality/pr-issue-documenter/output-contract.schema.json +46 -0
  233. package/src/gdskills/bundled/skills/quality/push/SKILL.codex.md +52 -0
  234. package/src/gdskills/bundled/skills/quality/push/SKILL.cursor.md +52 -0
  235. package/src/gdskills/bundled/skills/quality/push/SKILL.md +52 -0
  236. package/src/gdskills/bundled/skills/quality/security-audit/SKILL.claude.md +40 -0
  237. package/src/gdskills/bundled/skills/quality/security-audit/SKILL.codex.md +61 -0
  238. package/src/gdskills/bundled/skills/quality/security-audit/SKILL.cursor.md +61 -0
  239. package/src/gdskills/bundled/skills/quality/security-audit/SKILL.md +61 -0
  240. package/src/gdskills/bundled/skills/quality/test-gen/SKILL.claude.md +30 -0
  241. package/src/gdskills/bundled/skills/quality/test-gen/SKILL.codex.md +75 -0
  242. package/src/gdskills/bundled/skills/quality/test-gen/SKILL.cursor.md +75 -0
  243. package/src/gdskills/bundled/skills/quality/test-gen/SKILL.md +75 -0
  244. package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.codex.md +64 -0
  245. package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.cursor.md +74 -0
  246. package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.md +339 -0
  247. package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.opencode.md +48 -0
  248. package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.zed.md +44 -0
  249. package/src/gdskills/bundled/skills/quality/tests-creator/input-contract.schema.json +121 -0
  250. package/src/gdskills/bundled/skills/quality/tests-creator/output-contract.schema.json +127 -0
  251. package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.codex.md +204 -0
  252. package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.cursor.md +204 -0
  253. package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.md +203 -0
  254. package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.opencode.md +204 -0
  255. package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.zed.md +204 -0
  256. package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.codex.md +209 -0
  257. package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.cursor.md +209 -0
  258. package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.md +208 -0
  259. package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.opencode.md +209 -0
  260. package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.zed.md +209 -0
  261. package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.codex.md +263 -0
  262. package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.cursor.md +263 -0
  263. package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.md +258 -0
  264. package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.opencode.md +263 -0
  265. package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.zed.md +263 -0
  266. package/src/gdskills/bundled/skills/review/code-style-review/SKILL.codex.md +175 -0
  267. package/src/gdskills/bundled/skills/review/code-style-review/SKILL.cursor.md +175 -0
  268. package/src/gdskills/bundled/skills/review/code-style-review/SKILL.md +168 -0
  269. package/src/gdskills/bundled/skills/review/code-style-review/SKILL.opencode.md +175 -0
  270. package/src/gdskills/bundled/skills/review/code-style-review/SKILL.zed.md +175 -0
  271. package/src/gdskills/bundled/skills/review/review-architecture/SKILL.md +360 -0
  272. package/src/gdskills/bundled/skills/review/review-backend/SKILL.md +337 -0
  273. package/src/gdskills/bundled/skills/review/review-clean-code/SKILL.md +477 -0
  274. package/src/gdskills/bundled/skills/review/review-core-boundaries/SKILL.md +93 -0
  275. package/src/gdskills/bundled/skills/review/review-flow-graph/SKILL.md +119 -0
  276. package/src/gdskills/bundled/skills/review/review-frontend/SKILL.md +595 -0
  277. package/src/gdskills/bundled/skills/review/review-frontend-conventions/SKILL.md +144 -0
  278. package/src/gdskills/bundled/skills/review/review-highload/SKILL.md +519 -0
  279. package/src/gdskills/bundled/skills/review/review-logic/SKILL.md +323 -0
  280. package/src/gdskills/bundled/skills/review/review-orchestrator/SKILL.md +927 -0
  281. package/src/gdskills/bundled/skills/review/review-orchestrator/input-contract.schema.json +153 -0
  282. package/src/gdskills/bundled/skills/review/review-orchestrator/output-contract.schema.json +77 -0
  283. package/src/gdskills/bundled/skills/review/review-orchestrator/review-context.schema.json +389 -0
  284. package/src/gdskills/bundled/skills/review/review-orchestrator/reviewer-finding.schema.json +189 -0
  285. package/src/gdskills/bundled/skills/review/review-orchestrator/reviewer-input.schema.json +241 -0
  286. package/src/gdskills/bundled/skills/review/review-performance/SKILL.md +344 -0
  287. package/src/gdskills/bundled/skills/review/review-pr-feedback/SKILL.md +327 -0
  288. package/src/gdskills/bundled/skills/review/review-security-code/SKILL.md +348 -0
  289. package/src/gdskills/bundled/skills/review/review-strict/SKILL.md +328 -0
  290. package/src/gdskills/bundled/skills/review/review-style/SKILL.md +343 -0
  291. package/src/gdskills/bundled/skills/review/review-testing-practices/SKILL.md +134 -0
  292. package/src/gdskills/bundled/skills/shared/git-merge-base.md +33 -0
  293. package/src/gdskills/contracts/agent-event.schema.json +32 -0
  294. package/src/gdskills/contracts/orchestrator-state.schema.json +58 -0
  295. package/src/gdskills/contracts/review-finding.schema.json +59 -0
  296. package/src/gdskills/contracts/subagent-dispatch.schema.json +123 -0
  297. package/src/gdskills/contracts/subagent-result.schema.json +136 -0
@@ -0,0 +1,61 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://keryx.local/schemas/issue-analyzer/output-contract.schema.json",
4
+ "title": "Issue Analyzer Output Contract",
5
+ "description": "JSON output from issue-analyzer. Replaces the previous Gherkin format for reliable machine parsing.",
6
+ "type": "object",
7
+ "additionalProperties": false,
8
+ "required": ["issue", "tasks", "dependency_order"],
9
+ "properties": {
10
+ "issue": {
11
+ "type": "object",
12
+ "additionalProperties": false,
13
+ "required": ["number", "title", "type", "repo", "intent", "total_tasks"],
14
+ "properties": {
15
+ "number": { "type": "integer", "minimum": 1 },
16
+ "title": { "type": "string" },
17
+ "type": { "type": "string", "enum": ["bug", "feature", "enhancement", "refactoring", "chore"] },
18
+ "repo": { "type": "string", "description": "owner/repo format" },
19
+ "intent": { "type": "string", "description": "1-2 sentence intent summary" },
20
+ "labels": { "type": "array", "items": { "type": "string" } },
21
+ "assignees": { "type": "array", "items": { "type": "string" } },
22
+ "total_tasks": { "type": "integer", "minimum": 1, "maximum": 10 }
23
+ }
24
+ },
25
+ "tasks": {
26
+ "type": "array",
27
+ "minItems": 1,
28
+ "maxItems": 10,
29
+ "items": {
30
+ "type": "object",
31
+ "additionalProperties": false,
32
+ "required": ["task_id", "task_name", "task_type", "complexity", "dependencies", "description", "target_files", "acceptance_criteria"],
33
+ "properties": {
34
+ "task_id": { "type": "string", "pattern": "^task-[0-9]+$" },
35
+ "task_name": { "type": "string", "minLength": 1 },
36
+ "task_type": {
37
+ "type": "string",
38
+ "enum": ["ui_component", "store_logic", "service_api", "refactoring", "fix", "mixed"]
39
+ },
40
+ "complexity": { "type": "string", "enum": ["low", "medium", "high"] },
41
+ "dependencies": {
42
+ "type": "array",
43
+ "items": { "type": "string", "pattern": "^task-[0-9]+$" }
44
+ },
45
+ "description": { "type": "string", "minLength": 1 },
46
+ "target_files": { "type": "array", "items": { "type": "string" }, "minItems": 1 },
47
+ "acceptance_criteria": { "type": "array", "items": { "type": "string" }, "minItems": 1 },
48
+ "context": { "type": "string" },
49
+ "existing_tests": { "type": "array", "items": { "type": "string" } },
50
+ "existing_stories": { "type": "array", "items": { "type": "string" } },
51
+ "module_patterns": { "type": "string" }
52
+ }
53
+ }
54
+ },
55
+ "dependency_order": {
56
+ "type": "array",
57
+ "description": "Topologically sorted task IDs — safe execution order",
58
+ "items": { "type": "string", "pattern": "^task-[0-9]+$" }
59
+ }
60
+ }
61
+ }
@@ -0,0 +1,365 @@
1
+ ---
2
+ name: job-documenter
3
+ description: "Creates and maintains structured job documentation in jobs/. Called by job-orchestrator to initialize job folders, create analysis/report/review documents, and maintain the job README. Follows jobs-documentation.mdc conventions."
4
+ triggers:
5
+ - "Document job"
6
+ - "Initialize job folder"
7
+ - "Save job report"
8
+ - "Add job document"
9
+ metadata:
10
+ author: "MrCipherSmith"
11
+ version: "1.0.0"
12
+ category: "documentation"
13
+ license: "MIT"
14
+ compatibility: "cursor,codex,zed,opencode"
15
+ ---
16
+
17
+ # Job Documenter
18
+
19
+ ## Purpose
20
+
21
+ Sub-agent responsible for creating and maintaining structured job documentation in `.metaproject/jobs/`. Called exclusively by `job-orchestrator` to persist the lifecycle of orchestrated tasks — from initial plan through analysis, implementation, review, and final report.
22
+
23
+ **This skill is NOT invoked directly by users.** It is a service skill dispatched by the orchestrator.
24
+
25
+ **Input:** Action type + job name + content payload (from orchestrator)
26
+ **Output:** Status report (success/error) + created file paths
27
+
28
+ ## When to Use
29
+
30
+ - Called by `job-orchestrator` during pipeline execution
31
+ - When orchestrator needs to initialize a new job folder
32
+ - When orchestrator needs to save a sub-agent result as a document
33
+ - When orchestrator needs to update job README or finalize a job
34
+
35
+ ## Reference Rule
36
+
37
+ All structural conventions are defined in `rules/core/jobs-documentation.mdc`. This skill MUST follow that rule exactly.
38
+
39
+ ## Input Contract
40
+
41
+ The orchestrator provides a structured prompt with the following fields:
42
+
43
+ ```
44
+ ACTION: init | add-document | update-readme | finalize
45
+ JOB_NAME: <kebab-case folder name>
46
+ JOBS_ROOT: .metaproject/jobs
47
+ DATA: <action-specific payload — see below>
48
+ ```
49
+
50
+ ---
51
+
52
+ ## Actions
53
+
54
+ ### Action: `init`
55
+
56
+ Initialize a new job folder with required structure.
57
+
58
+ **Input DATA:**
59
+ ```
60
+ TITLE: <Job title — human-readable>
61
+ DESCRIPTION: <1-3 sentences describing what this job does>
62
+ INTENT: <analyze | implement | review | custom>
63
+ SOURCE: <issue URL, PR URL, branch name, or free-text description>
64
+ PROJECT: <absolute path to project directory>
65
+ BRANCH: <feature branch name, if known — may be "TBD">
66
+ BASE_BRANCH: <base branch name>
67
+ PLAN: <ordered list of planned steps>
68
+ ```
69
+
70
+ **Procedure:**
71
+
72
+ 1. **Create directory structure:**
73
+ ```
74
+ .metaproject/jobs/<JOB_NAME>/
75
+ README.md
76
+ man/
77
+ ai/
78
+ ```
79
+
80
+ 2. **Write README.md** following the format from `jobs-documentation.mdc`:
81
+ - Status: `in-progress`
82
+ - Created/Updated: current ISO 8601 UTC timestamp
83
+ - Fill Context table from input DATA
84
+ - Plan section from input PLAN (all items unchecked)
85
+ - Empty Agents Used table
86
+ - Empty Documents tables
87
+ - Empty Problems & Notes
88
+
89
+ 3. **Write `ai/plan.md`** — structured version of the plan:
90
+ ```markdown
91
+ # Execution Plan
92
+
93
+ ## Steps
94
+ | Step | Type | Agent | Dependencies | Status |
95
+ |------|------|-------|-------------|--------|
96
+ | 1 | analyze | issue-analyzer | none | pending |
97
+ | 2 | prepare | orchestrator | 1 | pending |
98
+ | ... | ... | ... | ... | ... |
99
+
100
+ ---
101
+
102
+ <!-- Document Metadata -->
103
+ | Key | Value |
104
+ |-----|-------|
105
+ | Created | <timestamp> |
106
+ | Agent | job-orchestrator |
107
+ | Task | Initialize job plan |
108
+ | Job | <JOB_NAME> |
109
+ | Version | 1.0 |
110
+ | Status | final |
111
+ ```
112
+
113
+ 4. **Write `man/plan.md`** — human-readable version of the plan:
114
+ ```markdown
115
+ # Execution Plan: <TITLE>
116
+
117
+ ## Overview
118
+ <DESCRIPTION>
119
+
120
+ ## Steps
121
+
122
+ 1. **<Step name>** — <description>
123
+ - Agent: <agent name>
124
+ - Dependencies: <deps or "none">
125
+
126
+ 2. ...
127
+
128
+ ---
129
+
130
+ <!-- Document Metadata -->
131
+ | Key | Value |
132
+ |-----|-------|
133
+ | Created | <timestamp> |
134
+ | Agent | job-orchestrator |
135
+ | Task | Initialize job plan |
136
+ | Job | <JOB_NAME> |
137
+ | Version | 1.0 |
138
+ | Status | final |
139
+ ```
140
+
141
+ 5. **Update README.md** — add plan.md entries to Documents tables.
142
+
143
+ 6. **Verify:**
144
+ - Read directory listing of `.metaproject/jobs/<JOB_NAME>/`
145
+ - Confirm: `README.md`, `man/`, `ai/`, `man/plan.md`, `ai/plan.md` all exist
146
+ - If any missing → report error
147
+
148
+ 7. **Return result:**
149
+ ```
150
+ DOCUMENTER_RESULT:
151
+ action: init
152
+ status: success | error
153
+ job_path: .metaproject/jobs/<JOB_NAME>
154
+ files_created: [README.md, man/plan.md, ai/plan.md]
155
+ error_details: <if status is error>
156
+ ```
157
+
158
+ ---
159
+
160
+ ### Action: `add-document`
161
+
162
+ Add a new document to an existing job.
163
+
164
+ **Input DATA:**
165
+ ```
166
+ DOC_TYPE: <analysis | report | review | context | implementation-report | final-report | improvements | requirements | error-log | tasks.feature | review-findings | custom>
167
+ DOC_NAME: <file name without extension, kebab-case — used if DOC_TYPE is "custom">
168
+ TARGET: man | ai | both
169
+ TITLE: <document title>
170
+ CONTENT: <full document content — markdown>
171
+ AGENT: <which agent produced this content>
172
+ TASK: <which task/phase this relates to>
173
+ VERSION: <document version, default "1.0">
174
+ DOC_STATUS: <draft | final>
175
+ ```
176
+
177
+ **Procedure:**
178
+
179
+ 1. **Determine file name:**
180
+ - If DOC_TYPE is a standard type → use standard name from `jobs-documentation.mdc` (e.g. `analysis.md`, `report.md`)
181
+ - If DOC_TYPE is `tasks.feature` → use `tasks.feature` (ai/ only)
182
+ - If DOC_TYPE is `custom` → use DOC_NAME + `.md`
183
+
184
+ 2. **Determine target directories:**
185
+ - `TARGET=man` → write to `man/` only
186
+ - `TARGET=ai` → write to `ai/` only
187
+ - `TARGET=both` → write to both `man/` and `ai/`
188
+
189
+ 3. **For each target directory, write the document:**
190
+ ```markdown
191
+ # <TITLE>
192
+
193
+ <CONTENT>
194
+
195
+ ---
196
+
197
+ <!-- Document Metadata -->
198
+ | Key | Value |
199
+ |-----|-------|
200
+ | Created | <current ISO 8601 UTC timestamp> |
201
+ | Agent | <AGENT> |
202
+ | Task | <TASK> |
203
+ | Job | <JOB_NAME> |
204
+ | Version | <VERSION> |
205
+ | Status | <DOC_STATUS> |
206
+ ```
207
+
208
+ 4. **Update README.md:**
209
+ - Add entry to the appropriate Documents table(s) (`man/` and/or `ai/`)
210
+ - Entry format: `| [<filename>](<target>/<filename>) | <TITLE> | <DOC_STATUS> |`
211
+
212
+ 5. **Verify:**
213
+ - Confirm each written file exists by reading directory listing
214
+ - Confirm README.md was updated (contains the new file reference)
215
+
216
+ 6. **Return result:**
217
+ ```
218
+ DOCUMENTER_RESULT:
219
+ action: add-document
220
+ status: success | error
221
+ files_created: [<list of created file paths>]
222
+ readme_updated: true | false
223
+ error_details: <if status is error>
224
+ ```
225
+
226
+ ---
227
+
228
+ ### Action: `update-readme`
229
+
230
+ Refresh the README to reflect current state.
231
+
232
+ **Input DATA:**
233
+ ```
234
+ PLAN_UPDATES: <optional — list of step statuses to update: [{step: 1, status: "completed"}, ...]>
235
+ AGENTS_UPDATE: <optional — list of agent entries to add/update: [{agent, phase, status}, ...]>
236
+ PROBLEMS: <optional — list of problems/notes to add>
237
+ BRANCH_UPDATE: <optional — branch name if it was TBD during init>
238
+ ```
239
+
240
+ **Procedure:**
241
+
242
+ 1. **Read current README.md** from `.metaproject/jobs/<JOB_NAME>/README.md`
243
+
244
+ 2. **Apply updates:**
245
+ - Update plan checkboxes based on PLAN_UPDATES (`[ ]` → `[x]` for completed steps)
246
+ - Add/update rows in Agents Used table
247
+ - Append to Problems & Notes section
248
+ - Update Branch in Context table if BRANCH_UPDATE provided
249
+ - Update `**Updated:**` timestamp
250
+
251
+ 3. **Re-scan `man/` and `ai/` directories** to ensure Documents tables are complete:
252
+ - List all files in `man/` and `ai/`
253
+ - If any file exists that is NOT in the Documents table → add it with description "Auto-discovered"
254
+ - If any table entry references a file that doesn't exist → mark as "(missing)"
255
+
256
+ 4. **Write updated README.md**
257
+
258
+ 5. **Return result:**
259
+ ```
260
+ DOCUMENTER_RESULT:
261
+ action: update-readme
262
+ status: success | error
263
+ updates_applied: [<list of what was updated>]
264
+ error_details: <if status is error>
265
+ ```
266
+
267
+ ---
268
+
269
+ ### Action: `finalize`
270
+
271
+ Mark the job as completed.
272
+
273
+ **Input DATA:**
274
+ ```
275
+ FINAL_CONTENT: <optional — final report content to save as final-report.md>
276
+ FINAL_STATUS: completed | aborted
277
+ SUMMARY: <1-3 sentence summary of what was accomplished>
278
+ ```
279
+
280
+ **Procedure:**
281
+
282
+ 1. **If FINAL_CONTENT is provided:**
283
+ - Write `man/final-report.md` and `ai/final-report.md` with metadata (same as `add-document` procedure)
284
+ - Update README Documents tables
285
+
286
+ 2. **Update README.md:**
287
+ - Set Status to FINAL_STATUS
288
+ - Update `**Updated:**` timestamp
289
+ - Mark all plan steps as completed (or appropriate status)
290
+ - Add SUMMARY to Description section (or as a "## Outcome" section at the end)
291
+
292
+ 3. **Full verification:**
293
+ - Read directory listing of `.metaproject/jobs/<JOB_NAME>/`, `man/`, `ai/`
294
+ - Cross-check every entry in README Documents tables against actual files
295
+ - Report any discrepancies
296
+
297
+ 4. **Return result:**
298
+ ```
299
+ DOCUMENTER_RESULT:
300
+ action: finalize
301
+ status: success | error
302
+ job_path: .metaproject/jobs/<JOB_NAME>
303
+ final_status: <FINAL_STATUS>
304
+ total_documents: <count of all files in man/ + ai/>
305
+ verification: passed | <list of discrepancies>
306
+ error_details: <if status is error>
307
+ ```
308
+
309
+ ---
310
+
311
+ ## Error Handling
312
+
313
+ If any file operation fails during any action:
314
+
315
+ 1. **Attempt to create error log:**
316
+ - Write `man/error-log.md` with error details, timestamp, which action was being performed
317
+ - If this also fails, report the raw error in the return result
318
+
319
+ 2. **Return error status:**
320
+ ```
321
+ DOCUMENTER_RESULT:
322
+ action: <action>
323
+ status: error
324
+ error_details: <what went wrong>
325
+ error_log_created: true | false
326
+ ```
327
+
328
+ 3. **Do NOT throw/crash** — always return a structured result so the orchestrator can decide how to proceed.
329
+
330
+ ---
331
+
332
+ ## Prompt Template for Orchestrator
333
+
334
+ When the orchestrator dispatches this skill as a sub-agent, it should use this prompt structure:
335
+
336
+ ```
337
+ You are the job-documenter agent. Your task is to manage job documentation.
338
+
339
+ Load the skill from: skills/job-documenter/SKILL.md
340
+ Follow the rules from: rules/core/jobs-documentation.mdc
341
+
342
+ ACTION: <action>
343
+ JOB_NAME: <job-name>
344
+ JOBS_ROOT: .metaproject/jobs
345
+
346
+ DATA:
347
+ <action-specific data>
348
+
349
+ Execute the action and return a DOCUMENTER_RESULT block.
350
+ ```
351
+
352
+ ---
353
+
354
+ ## Rules of Engagement
355
+
356
+ 1. **DO** follow `jobs-documentation.mdc` for all structural decisions.
357
+ 2. **DO** add metadata blocks to every document.
358
+ 3. **DO** verify file existence after every write operation.
359
+ 4. **DO** keep README.md in sync with actual directory contents.
360
+ 5. **DO** use ISO 8601 UTC timestamps everywhere.
361
+ 6. **DO** return structured DOCUMENTER_RESULT for every action.
362
+ 7. **DO NOT** create files outside of `.metaproject/jobs/<JOB_NAME>/`.
363
+ 8. **DO NOT** delete or overwrite existing documents without explicit instruction.
364
+ 9. **DO NOT** modify files in other job folders.
365
+ 10. **DO NOT** interact with the user directly — all communication goes through the orchestrator.