@punks/cli 0.1.16 → 1.0.1

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 (507) hide show
  1. package/AGENTS.md +10 -0
  2. package/README.md +64 -0
  3. package/dist/data/AGENTS.md +123 -0
  4. package/dist/data/catalog/lint.ts +349 -0
  5. package/dist/data/catalog/packs.ts +44 -0
  6. package/dist/data/catalog/skills.ts +47 -0
  7. package/dist/data/catalog/tools.ts +22 -0
  8. package/dist/data/hooks/format-edited-file.mjs +554 -0
  9. package/dist/data/hooks/format-edited-file.py +157 -0
  10. package/dist/data/hooks/format-edited-file.sh +37 -0
  11. package/dist/data/hooks/require-tests-for-pr.mjs +144 -0
  12. package/dist/data/scripts/sync-subagents.mjs +420 -0
  13. package/dist/data/subagents/manifest.mjs +253 -0
  14. package/dist/index.js +46400 -0
  15. package/dist/skills/agnostic/backend/backend-domain-structure/SKILL.md +50 -0
  16. package/dist/skills/agnostic/backend/backend-domain-structure/agents/openai.yaml +4 -0
  17. package/dist/skills/agnostic/backend/backend-domain-structure/references/layout.md +167 -0
  18. package/dist/skills/agnostic/backend/backend-recoverable-actions/SKILL.md +49 -0
  19. package/dist/skills/agnostic/backend/backend-recoverable-actions/agents/openai.yaml +4 -0
  20. package/dist/skills/agnostic/backend/backend-recoverable-actions/references/strategy-matrix.md +34 -0
  21. package/dist/skills/agnostic/backend/backend-recoverable-actions/references/test-matrix.md +34 -0
  22. package/dist/skills/agnostic/docs/docs-maintenance/SKILL.md +193 -0
  23. package/dist/skills/agnostic/docs/docs-maintenance/agents/openai.yaml +4 -0
  24. package/dist/skills/agnostic/docs/docs-maintenance/references/concept-pages.md +48 -0
  25. package/dist/skills/agnostic/docs/docs-maintenance/references/flow-pages.md +41 -0
  26. package/dist/skills/agnostic/frontend/agent-browser/.clawdhub/origin.json +7 -0
  27. package/dist/skills/agnostic/frontend/agent-browser/SKILL.md +229 -0
  28. package/dist/skills/agnostic/frontend/agent-browser/references/authentication.md +202 -0
  29. package/dist/skills/agnostic/frontend/agent-browser/references/commands.md +259 -0
  30. package/dist/skills/agnostic/frontend/agent-browser/references/proxy-support.md +188 -0
  31. package/dist/skills/agnostic/frontend/agent-browser/references/session-management.md +193 -0
  32. package/dist/skills/agnostic/frontend/agent-browser/references/snapshot-refs.md +194 -0
  33. package/dist/skills/agnostic/frontend/agent-browser/references/video-recording.md +173 -0
  34. package/dist/skills/agnostic/frontend/agent-browser/templates/authenticated-session.sh +97 -0
  35. package/dist/skills/agnostic/frontend/agent-browser/templates/capture-workflow.sh +69 -0
  36. package/dist/skills/agnostic/frontend/agent-browser/templates/form-automation.sh +62 -0
  37. package/dist/skills/agnostic/frontend/design-taste-frontend/SKILL.md +226 -0
  38. package/dist/skills/agnostic/frontend/frontend-domain-structure/SKILL.md +55 -0
  39. package/dist/skills/agnostic/frontend/frontend-domain-structure/agents/openai.yaml +4 -0
  40. package/dist/skills/agnostic/frontend/frontend-domain-structure/references/react/structure.md +102 -0
  41. package/dist/skills/agnostic/frontend/frontend-domain-structure/references/structure.md +257 -0
  42. package/dist/skills/agnostic/frontend/gpt-taste/SKILL.md +74 -0
  43. package/dist/skills/agnostic/frontend/image-taste-frontend/SKILL.md +1102 -0
  44. package/dist/skills/agnostic/frontend/redesign-existing-projects/SKILL.md +178 -0
  45. package/dist/skills/agnostic/planning/create-plan/REFERENCE.md +37 -0
  46. package/dist/skills/agnostic/planning/create-plan/SKILL.md +69 -0
  47. package/dist/skills/agnostic/planning/create-plan/references/backlog-sync.md +44 -0
  48. package/dist/skills/agnostic/planning/create-plan/references/grill-phase.md +86 -0
  49. package/dist/skills/agnostic/planning/create-plan/references/plan-schema.md +66 -0
  50. package/dist/skills/agnostic/planning/create-plan/references/planner-phase.md +39 -0
  51. package/dist/skills/agnostic/planning/create-plan/references/stop-conditions.md +18 -0
  52. package/dist/skills/agnostic/planning/create-plan/references/tdd-phase.md +26 -0
  53. package/dist/skills/agnostic/planning/create-spec/SKILL.md +57 -0
  54. package/dist/skills/agnostic/planning/create-spec/assets/SPEC-TEMPLATE.md +91 -0
  55. package/dist/skills/agnostic/planning/create-spec/references/discovery.md +44 -0
  56. package/dist/skills/agnostic/planning/create-spec/references/folder-naming.md +27 -0
  57. package/dist/skills/agnostic/planning/create-spec/references/handoff.md +47 -0
  58. package/dist/skills/agnostic/planning/create-spec/references/questioning.md +41 -0
  59. package/dist/skills/agnostic/planning/create-spec/references/spec-quality-bar.md +58 -0
  60. package/dist/skills/agnostic/planning/create-spec/references/wiki-bookkeeping.md +26 -0
  61. package/dist/skills/agnostic/planning/grill-me/SKILL.md +28 -0
  62. package/dist/skills/agnostic/planning/implement-spec/SKILL.md +72 -0
  63. package/dist/skills/agnostic/planning/implement-spec/assets/IMPLEMENTATION-NOTES-TEMPLATE.md +47 -0
  64. package/dist/skills/agnostic/planning/implement-spec/references/lifecycle.md +149 -0
  65. package/dist/skills/agnostic/planning/implement-spec/references/parallel-orchestration.md +102 -0
  66. package/dist/skills/agnostic/planning/implement-spec/references/parallel-worker-brief.md +65 -0
  67. package/dist/skills/agnostic/planning/implement-spec/references/parallel.md +56 -0
  68. package/dist/skills/agnostic/planning/implement-spec/references/sequential.md +28 -0
  69. package/dist/skills/agnostic/planning/swarm-planner/SKILL.md +179 -0
  70. package/dist/skills/agnostic/quality/simplify/SKILL.md +14 -0
  71. package/dist/skills/agnostic/quality/tdd/SKILL.md +107 -0
  72. package/dist/skills/agnostic/quality/tdd/deep-modules.md +33 -0
  73. package/dist/skills/agnostic/quality/tdd/interface-design.md +31 -0
  74. package/dist/skills/agnostic/quality/tdd/mocking.md +59 -0
  75. package/dist/skills/agnostic/quality/tdd/refactoring.md +10 -0
  76. package/dist/skills/agnostic/quality/tdd/tests.md +61 -0
  77. package/dist/skills/agnostic/requirements/requirements-grill/SKILL.md +42 -0
  78. package/dist/skills/agnostic/requirements/requirements-grill/references/artifact-output.md +73 -0
  79. package/dist/skills/agnostic/requirements/requirements-grill/references/grilling-flow.md +57 -0
  80. package/dist/skills/agnostic/requirements/requirements-grill/references/wiki-output.md +94 -0
  81. package/dist/skills/agnostic/requirements/write-backlog/EXAMPLES.md +67 -0
  82. package/dist/skills/agnostic/requirements/write-backlog/REFERENCE.md +253 -0
  83. package/dist/skills/agnostic/requirements/write-backlog/SKILL.md +68 -0
  84. package/dist/skills/agnostic/requirements/write-backlog/assets/concepts/backlog-model.md +69 -0
  85. package/dist/skills/agnostic/requirements/write-backlog/assets/concepts/story-shape.md +66 -0
  86. package/dist/skills/agnostic/requirements/write-backlog/assets/providers/azure-devops-create-payload.md +63 -0
  87. package/dist/skills/agnostic/requirements/write-backlog/assets/providers/github-issues-create-payload.md +48 -0
  88. package/dist/skills/agnostic/requirements/write-backlog/assets/providers/linear-create-payload.md +76 -0
  89. package/dist/skills/agnostic/research/improve-codebase-architecture/REFERENCE.md +78 -0
  90. package/dist/skills/agnostic/research/improve-codebase-architecture/SKILL.md +76 -0
  91. package/dist/skills/agnostic/research/parallel-research/SKILL.md +68 -0
  92. package/dist/skills/agnostic/research/parallel-research/agents/openai.yaml +4 -0
  93. package/dist/skills/agnostic/subagents/swarm-planner/SKILL.md +179 -0
  94. package/dist/skills/agnostic/write-a-skill/SKILL.md +117 -0
  95. package/dist/skills/frameworks/better-auth/better-auth-best-practices/SKILL.md +166 -0
  96. package/dist/skills/frameworks/better-auth/better-auth-security-best-practices/SKILL.MD +432 -0
  97. package/dist/skills/frameworks/effect/effect-authoring/SKILL.md +116 -0
  98. package/dist/skills/frameworks/effect/effect-authoring/references/branded-types.md +98 -0
  99. package/dist/skills/frameworks/effect/effect-authoring/references/effect-atom-patterns.md +257 -0
  100. package/dist/skills/frameworks/effect/effect-authoring/references/effect-primitives.md +144 -0
  101. package/dist/skills/frameworks/effect/effect-authoring/references/error-patterns.md +156 -0
  102. package/dist/skills/frameworks/effect/effect-authoring/references/otel-patterns.md +113 -0
  103. package/dist/skills/frameworks/effect/effect-authoring/references/test-patterns.md +146 -0
  104. package/dist/skills/frameworks/effect/effect-backend-structure/SKILL.md +96 -0
  105. package/dist/skills/frameworks/effect/effect-backend-structure/agents/openai.yaml +4 -0
  106. package/dist/skills/frameworks/effect/effect-backend-structure/references/layout.md +68 -0
  107. package/dist/skills/frameworks/effect/effect-best-practices/SKILL.md +517 -0
  108. package/dist/skills/frameworks/effect/effect-best-practices/references/anti-patterns.md +392 -0
  109. package/dist/skills/frameworks/effect/effect-best-practices/references/effect-atom-patterns.md +653 -0
  110. package/dist/skills/frameworks/effect/effect-best-practices/references/error-patterns.md +464 -0
  111. package/dist/skills/frameworks/effect/effect-best-practices/references/language-server.md +287 -0
  112. package/dist/skills/frameworks/effect/effect-best-practices/references/layer-patterns.md +495 -0
  113. package/dist/skills/frameworks/effect/effect-best-practices/references/observability-patterns.md +342 -0
  114. package/dist/skills/frameworks/effect/effect-best-practices/references/rpc-cluster-patterns.md +418 -0
  115. package/dist/skills/frameworks/effect/effect-best-practices/references/schema-patterns.md +353 -0
  116. package/dist/skills/frameworks/effect/effect-best-practices/references/service-patterns.md +299 -0
  117. package/dist/skills/frameworks/effect/effect-recoverable-actions/SKILL.md +65 -0
  118. package/dist/skills/frameworks/effect/effect-recoverable-actions/agents/openai.yaml +4 -0
  119. package/dist/skills/frameworks/effect/effect-recoverable-actions/references/flow-examples.md +154 -0
  120. package/dist/skills/frameworks/effect/effect-recoverable-actions/references/source-backed-primitives.md +104 -0
  121. package/dist/skills/frameworks/effect/effect-recoverable-actions/references/strategy-matrix.md +34 -0
  122. package/dist/skills/frameworks/effect/effect-recoverable-actions/references/test-matrix.md +36 -0
  123. package/dist/skills/frameworks/elysia/elysiajs/SKILL.md +475 -0
  124. package/dist/skills/frameworks/elysia/elysiajs/examples/basic.ts +9 -0
  125. package/dist/skills/frameworks/elysia/elysiajs/examples/body-parser.ts +33 -0
  126. package/dist/skills/frameworks/elysia/elysiajs/examples/complex.ts +112 -0
  127. package/dist/skills/frameworks/elysia/elysiajs/examples/cookie.ts +45 -0
  128. package/dist/skills/frameworks/elysia/elysiajs/examples/error.ts +38 -0
  129. package/dist/skills/frameworks/elysia/elysiajs/examples/file.ts +10 -0
  130. package/dist/skills/frameworks/elysia/elysiajs/examples/guard.ts +34 -0
  131. package/dist/skills/frameworks/elysia/elysiajs/examples/map-response.ts +15 -0
  132. package/dist/skills/frameworks/elysia/elysiajs/examples/redirect.ts +6 -0
  133. package/dist/skills/frameworks/elysia/elysiajs/examples/rename.ts +32 -0
  134. package/dist/skills/frameworks/elysia/elysiajs/examples/schema.ts +61 -0
  135. package/dist/skills/frameworks/elysia/elysiajs/examples/state.ts +6 -0
  136. package/dist/skills/frameworks/elysia/elysiajs/examples/upload-file.ts +20 -0
  137. package/dist/skills/frameworks/elysia/elysiajs/examples/websocket.ts +25 -0
  138. package/dist/skills/frameworks/elysia/elysiajs/integrations/ai-sdk.md +92 -0
  139. package/dist/skills/frameworks/elysia/elysiajs/integrations/astro.md +59 -0
  140. package/dist/skills/frameworks/elysia/elysiajs/integrations/better-auth.md +117 -0
  141. package/dist/skills/frameworks/elysia/elysiajs/integrations/cloudflare-worker.md +95 -0
  142. package/dist/skills/frameworks/elysia/elysiajs/integrations/deno.md +34 -0
  143. package/dist/skills/frameworks/elysia/elysiajs/integrations/drizzle.md +258 -0
  144. package/dist/skills/frameworks/elysia/elysiajs/integrations/expo.md +95 -0
  145. package/dist/skills/frameworks/elysia/elysiajs/integrations/nextjs.md +103 -0
  146. package/dist/skills/frameworks/elysia/elysiajs/integrations/nodejs.md +64 -0
  147. package/dist/skills/frameworks/elysia/elysiajs/integrations/nuxt.md +67 -0
  148. package/dist/skills/frameworks/elysia/elysiajs/integrations/prisma.md +93 -0
  149. package/dist/skills/frameworks/elysia/elysiajs/integrations/react-email.md +134 -0
  150. package/dist/skills/frameworks/elysia/elysiajs/integrations/sveltekit.md +53 -0
  151. package/dist/skills/frameworks/elysia/elysiajs/integrations/tanstack-start.md +87 -0
  152. package/dist/skills/frameworks/elysia/elysiajs/integrations/vercel.md +55 -0
  153. package/dist/skills/frameworks/elysia/elysiajs/patterns/mvc.md +380 -0
  154. package/dist/skills/frameworks/elysia/elysiajs/plugins/bearer.md +30 -0
  155. package/dist/skills/frameworks/elysia/elysiajs/plugins/cors.md +141 -0
  156. package/dist/skills/frameworks/elysia/elysiajs/plugins/cron.md +265 -0
  157. package/dist/skills/frameworks/elysia/elysiajs/plugins/graphql-apollo.md +90 -0
  158. package/dist/skills/frameworks/elysia/elysiajs/plugins/graphql-yoga.md +87 -0
  159. package/dist/skills/frameworks/elysia/elysiajs/plugins/html.md +188 -0
  160. package/dist/skills/frameworks/elysia/elysiajs/plugins/jwt.md +197 -0
  161. package/dist/skills/frameworks/elysia/elysiajs/plugins/openapi.md +246 -0
  162. package/dist/skills/frameworks/elysia/elysiajs/plugins/opentelemetry.md +167 -0
  163. package/dist/skills/frameworks/elysia/elysiajs/plugins/server-timing.md +71 -0
  164. package/dist/skills/frameworks/elysia/elysiajs/plugins/static.md +84 -0
  165. package/dist/skills/frameworks/elysia/elysiajs/references/bun-fullstack-dev-server.md +129 -0
  166. package/dist/skills/frameworks/elysia/elysiajs/references/cookie.md +187 -0
  167. package/dist/skills/frameworks/elysia/elysiajs/references/deployment.md +413 -0
  168. package/dist/skills/frameworks/elysia/elysiajs/references/eden.md +158 -0
  169. package/dist/skills/frameworks/elysia/elysiajs/references/lifecycle.md +198 -0
  170. package/dist/skills/frameworks/elysia/elysiajs/references/macro.md +83 -0
  171. package/dist/skills/frameworks/elysia/elysiajs/references/plugin.md +207 -0
  172. package/dist/skills/frameworks/elysia/elysiajs/references/route.md +331 -0
  173. package/dist/skills/frameworks/elysia/elysiajs/references/testing.md +385 -0
  174. package/dist/skills/frameworks/elysia/elysiajs/references/validation.md +491 -0
  175. package/dist/skills/frameworks/elysia/elysiajs/references/websocket.md +250 -0
  176. package/dist/skills/frameworks/nestjs/nestjs-best-practices/.github/workflows/branch-protection.yml +24 -0
  177. package/dist/skills/frameworks/nestjs/nestjs-best-practices/.github/workflows/deploy.yml +61 -0
  178. package/dist/skills/frameworks/nestjs/nestjs-best-practices/AGENTS.md +5958 -0
  179. package/dist/skills/frameworks/nestjs/nestjs-best-practices/SKILL.md +130 -0
  180. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-use-dto-serialization.md +182 -0
  181. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-use-interceptors.md +202 -0
  182. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-use-pipes.md +205 -0
  183. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-versioning.md +191 -0
  184. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-avoid-circular-deps.md +80 -0
  185. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-feature-modules.md +82 -0
  186. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-module-sharing.md +141 -0
  187. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-single-responsibility.md +106 -0
  188. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-use-events.md +108 -0
  189. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-use-repository-pattern.md +97 -0
  190. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/db-avoid-n-plus-one.md +139 -0
  191. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/db-use-migrations.md +129 -0
  192. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/db-use-transactions.md +140 -0
  193. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/devops-graceful-shutdown.md +222 -0
  194. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/devops-use-config-module.md +167 -0
  195. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/devops-use-logging.md +232 -0
  196. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-avoid-service-locator.md +104 -0
  197. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-interface-segregation.md +165 -0
  198. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-liskov-substitution.md +221 -0
  199. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-prefer-constructor-injection.md +86 -0
  200. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-scope-awareness.md +94 -0
  201. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-use-interfaces-tokens.md +101 -0
  202. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/error-handle-async-errors.md +125 -0
  203. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/error-throw-http-exceptions.md +114 -0
  204. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/error-use-exception-filters.md +140 -0
  205. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/micro-use-health-checks.md +226 -0
  206. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/micro-use-patterns.md +167 -0
  207. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/micro-use-queues.md +252 -0
  208. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-async-hooks.md +109 -0
  209. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-lazy-loading.md +121 -0
  210. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-optimize-database.md +131 -0
  211. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-use-caching.md +128 -0
  212. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-auth-jwt.md +146 -0
  213. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-rate-limiting.md +125 -0
  214. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-sanitize-output.md +139 -0
  215. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-use-guards.md +135 -0
  216. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-validate-all-input.md +150 -0
  217. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/test-e2e-supertest.md +178 -0
  218. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/test-mock-external-services.md +179 -0
  219. package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/test-use-testing-module.md +153 -0
  220. package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/build-agents.ts +299 -0
  221. package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/build.sh +16 -0
  222. package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/package-lock.json +237 -0
  223. package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/package.json +15 -0
  224. package/dist/skills/frameworks/nestjs/nestjs-expert/SKILL.md +208 -0
  225. package/dist/skills/frameworks/nestjs/nestjs-expert/references/authentication.md +166 -0
  226. package/dist/skills/frameworks/nestjs/nestjs-expert/references/controllers-routing.md +111 -0
  227. package/dist/skills/frameworks/nestjs/nestjs-expert/references/dtos-validation.md +153 -0
  228. package/dist/skills/frameworks/nestjs/nestjs-expert/references/migration-from-express.md +1237 -0
  229. package/dist/skills/frameworks/nestjs/nestjs-expert/references/services-di.md +140 -0
  230. package/dist/skills/frameworks/nestjs/nestjs-expert/references/testing-patterns.md +186 -0
  231. package/dist/skills/frameworks/nextjs/next-best-practices/SKILL.md +153 -0
  232. package/dist/skills/frameworks/nextjs/next-best-practices/async-patterns.md +87 -0
  233. package/dist/skills/frameworks/nextjs/next-best-practices/bundling.md +180 -0
  234. package/dist/skills/frameworks/nextjs/next-best-practices/data-patterns.md +297 -0
  235. package/dist/skills/frameworks/nextjs/next-best-practices/debug-tricks.md +105 -0
  236. package/dist/skills/frameworks/nextjs/next-best-practices/directives.md +73 -0
  237. package/dist/skills/frameworks/nextjs/next-best-practices/error-handling.md +227 -0
  238. package/dist/skills/frameworks/nextjs/next-best-practices/file-conventions.md +140 -0
  239. package/dist/skills/frameworks/nextjs/next-best-practices/font.md +245 -0
  240. package/dist/skills/frameworks/nextjs/next-best-practices/functions.md +108 -0
  241. package/dist/skills/frameworks/nextjs/next-best-practices/hydration-error.md +91 -0
  242. package/dist/skills/frameworks/nextjs/next-best-practices/image.md +173 -0
  243. package/dist/skills/frameworks/nextjs/next-best-practices/metadata.md +301 -0
  244. package/dist/skills/frameworks/nextjs/next-best-practices/parallel-routes.md +287 -0
  245. package/dist/skills/frameworks/nextjs/next-best-practices/route-handlers.md +146 -0
  246. package/dist/skills/frameworks/nextjs/next-best-practices/rsc-boundaries.md +159 -0
  247. package/dist/skills/frameworks/nextjs/next-best-practices/runtime-selection.md +39 -0
  248. package/dist/skills/frameworks/nextjs/next-best-practices/scripts.md +141 -0
  249. package/dist/skills/frameworks/nextjs/next-best-practices/self-hosting.md +371 -0
  250. package/dist/skills/frameworks/nextjs/next-best-practices/suspense-boundaries.md +67 -0
  251. package/dist/skills/frameworks/nextjs/next-cache-components/SKILL.md +360 -0
  252. package/dist/skills/frameworks/react/async-react-patterns/SKILL.md +78 -0
  253. package/dist/skills/frameworks/react/vercel-composition-patterns/AGENTS.md +946 -0
  254. package/dist/skills/frameworks/react/vercel-composition-patterns/SKILL.md +89 -0
  255. package/dist/skills/frameworks/react/vercel-composition-patterns/rules/architecture-avoid-boolean-props.md +100 -0
  256. package/dist/skills/frameworks/react/vercel-composition-patterns/rules/architecture-compound-components.md +112 -0
  257. package/dist/skills/frameworks/react/vercel-composition-patterns/rules/patterns-children-over-render-props.md +87 -0
  258. package/dist/skills/frameworks/react/vercel-composition-patterns/rules/patterns-explicit-variants.md +100 -0
  259. package/dist/skills/frameworks/react/vercel-composition-patterns/rules/react19-no-forwardref.md +42 -0
  260. package/dist/skills/frameworks/react/vercel-composition-patterns/rules/state-context-interface.md +191 -0
  261. package/dist/skills/frameworks/react/vercel-composition-patterns/rules/state-decouple-implementation.md +113 -0
  262. package/dist/skills/frameworks/react/vercel-composition-patterns/rules/state-lift-state.md +125 -0
  263. package/dist/skills/frameworks/react/vercel-react-best-practices/AGENTS.md +3750 -0
  264. package/dist/skills/frameworks/react/vercel-react-best-practices/SKILL.md +148 -0
  265. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-effect-event-deps.md +56 -0
  266. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  267. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
  268. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
  269. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-api-routes.md +38 -0
  270. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-cheap-condition-before-await.md +37 -0
  271. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-defer-await.md +82 -0
  272. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-dependencies.md +51 -0
  273. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-parallel.md +28 -0
  274. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
  275. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-barrel-imports.md +60 -0
  276. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
  277. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
  278. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
  279. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-preload.md +50 -0
  280. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
  281. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
  282. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
  283. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
  284. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
  285. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
  286. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
  287. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
  288. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
  289. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-early-exit.md +50 -0
  290. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-flatmap-filter.md +60 -0
  291. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
  292. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-index-maps.md +37 -0
  293. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
  294. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
  295. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-request-idle-callback.md +105 -0
  296. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
  297. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
  298. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-activity.md +26 -0
  299. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
  300. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
  301. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
  302. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
  303. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
  304. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
  305. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-resource-hints.md +85 -0
  306. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-script-defer-async.md +68 -0
  307. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
  308. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
  309. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
  310. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
  311. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
  312. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
  313. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
  314. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
  315. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
  316. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-memo.md +44 -0
  317. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
  318. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-no-inline-components.md +82 -0
  319. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
  320. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-split-combined-hooks.md +64 -0
  321. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
  322. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-use-deferred-value.md +59 -0
  323. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
  324. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
  325. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
  326. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
  327. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-cache-react.md +76 -0
  328. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
  329. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-hoist-static-io.md +149 -0
  330. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-no-shared-module-state.md +50 -0
  331. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
  332. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-parallel-nested-fetching.md +34 -0
  333. package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-serialization.md +38 -0
  334. package/dist/skills/frameworks/tanstack-query/tanstack-query/.claude-plugin/plugin.json +12 -0
  335. package/dist/skills/frameworks/tanstack-query/tanstack-query/SKILL.md +1058 -0
  336. package/dist/skills/frameworks/tanstack-query/tanstack-query/assets/example-template.txt +14 -0
  337. package/dist/skills/frameworks/tanstack-query/tanstack-query/references/best-practices.md +304 -0
  338. package/dist/skills/frameworks/tanstack-query/tanstack-query/references/common-patterns.md +271 -0
  339. package/dist/skills/frameworks/tanstack-query/tanstack-query/references/example-reference.md +26 -0
  340. package/dist/skills/frameworks/tanstack-query/tanstack-query/references/testing.md +282 -0
  341. package/dist/skills/frameworks/tanstack-query/tanstack-query/references/top-errors.md +332 -0
  342. package/dist/skills/frameworks/tanstack-query/tanstack-query/references/typescript-patterns.md +291 -0
  343. package/dist/skills/frameworks/tanstack-query/tanstack-query/references/v4-to-v5-migration.md +231 -0
  344. package/dist/skills/frameworks/tanstack-query/tanstack-query/rules/tanstack-query.md +126 -0
  345. package/dist/skills/frameworks/tanstack-query/tanstack-query/scripts/example-script.sh +15 -0
  346. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/custom-hooks-pattern.tsx +281 -0
  347. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/devtools-setup.tsx +248 -0
  348. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/error-boundary.tsx +243 -0
  349. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/package.json +31 -0
  350. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/provider-setup.tsx +50 -0
  351. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/query-client-config.ts +72 -0
  352. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-infinite-query.tsx +214 -0
  353. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-mutation-basic.tsx +201 -0
  354. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-mutation-optimistic.tsx +234 -0
  355. package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-query-basic.tsx +119 -0
  356. package/dist/skills/frameworks/trpc/tanstack-query/.claude-plugin/plugin.json +12 -0
  357. package/dist/skills/frameworks/trpc/tanstack-query/SKILL.md +1058 -0
  358. package/dist/skills/frameworks/trpc/tanstack-query/assets/example-template.txt +14 -0
  359. package/dist/skills/frameworks/trpc/tanstack-query/references/best-practices.md +304 -0
  360. package/dist/skills/frameworks/trpc/tanstack-query/references/common-patterns.md +271 -0
  361. package/dist/skills/frameworks/trpc/tanstack-query/references/example-reference.md +26 -0
  362. package/dist/skills/frameworks/trpc/tanstack-query/references/testing.md +282 -0
  363. package/dist/skills/frameworks/trpc/tanstack-query/references/top-errors.md +332 -0
  364. package/dist/skills/frameworks/trpc/tanstack-query/references/typescript-patterns.md +291 -0
  365. package/dist/skills/frameworks/trpc/tanstack-query/references/v4-to-v5-migration.md +231 -0
  366. package/dist/skills/frameworks/trpc/tanstack-query/rules/tanstack-query.md +126 -0
  367. package/dist/skills/frameworks/trpc/tanstack-query/scripts/example-script.sh +15 -0
  368. package/dist/skills/frameworks/trpc/tanstack-query/templates/custom-hooks-pattern.tsx +281 -0
  369. package/dist/skills/frameworks/trpc/tanstack-query/templates/devtools-setup.tsx +248 -0
  370. package/dist/skills/frameworks/trpc/tanstack-query/templates/error-boundary.tsx +243 -0
  371. package/dist/skills/frameworks/trpc/tanstack-query/templates/package.json +31 -0
  372. package/dist/skills/frameworks/trpc/tanstack-query/templates/provider-setup.tsx +50 -0
  373. package/dist/skills/frameworks/trpc/tanstack-query/templates/query-client-config.ts +72 -0
  374. package/dist/skills/frameworks/trpc/tanstack-query/templates/use-infinite-query.tsx +214 -0
  375. package/dist/skills/frameworks/trpc/tanstack-query/templates/use-mutation-basic.tsx +201 -0
  376. package/dist/skills/frameworks/trpc/tanstack-query/templates/use-mutation-optimistic.tsx +234 -0
  377. package/dist/skills/frameworks/trpc/tanstack-query/templates/use-query-basic.tsx +119 -0
  378. package/dist/skills/frameworks/turborepo/turborepo/SKILL.md +914 -0
  379. package/dist/skills/frameworks/turborepo/turborepo/command/turborepo.md +70 -0
  380. package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/RULE.md +241 -0
  381. package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/dependencies.md +246 -0
  382. package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/packages.md +335 -0
  383. package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/structure.md +270 -0
  384. package/dist/skills/frameworks/turborepo/turborepo/references/boundaries/RULE.md +126 -0
  385. package/dist/skills/frameworks/turborepo/turborepo/references/caching/RULE.md +107 -0
  386. package/dist/skills/frameworks/turborepo/turborepo/references/caching/gotchas.md +169 -0
  387. package/dist/skills/frameworks/turborepo/turborepo/references/caching/remote-cache.md +127 -0
  388. package/dist/skills/frameworks/turborepo/turborepo/references/ci/RULE.md +79 -0
  389. package/dist/skills/frameworks/turborepo/turborepo/references/ci/github-actions.md +162 -0
  390. package/dist/skills/frameworks/turborepo/turborepo/references/ci/patterns.md +145 -0
  391. package/dist/skills/frameworks/turborepo/turborepo/references/ci/vercel.md +103 -0
  392. package/dist/skills/frameworks/turborepo/turborepo/references/cli/RULE.md +100 -0
  393. package/dist/skills/frameworks/turborepo/turborepo/references/cli/commands.md +297 -0
  394. package/dist/skills/frameworks/turborepo/turborepo/references/configuration/RULE.md +211 -0
  395. package/dist/skills/frameworks/turborepo/turborepo/references/configuration/global-options.md +187 -0
  396. package/dist/skills/frameworks/turborepo/turborepo/references/configuration/gotchas.md +348 -0
  397. package/dist/skills/frameworks/turborepo/turborepo/references/configuration/tasks.md +285 -0
  398. package/dist/skills/frameworks/turborepo/turborepo/references/environment/RULE.md +96 -0
  399. package/dist/skills/frameworks/turborepo/turborepo/references/environment/gotchas.md +141 -0
  400. package/dist/skills/frameworks/turborepo/turborepo/references/environment/modes.md +101 -0
  401. package/dist/skills/frameworks/turborepo/turborepo/references/filtering/RULE.md +148 -0
  402. package/dist/skills/frameworks/turborepo/turborepo/references/filtering/patterns.md +152 -0
  403. package/dist/skills/frameworks/turborepo/turborepo/references/watch/RULE.md +99 -0
  404. package/docs/README.md +20 -0
  405. package/docs/reference/dp-requirements.md +210 -0
  406. package/docs/runbooks/dp-cli-scaffolding.md +187 -0
  407. package/package.json +25 -50
  408. package/.eslintignore +0 -4
  409. package/.eslintrc +0 -127
  410. package/.prettierignore +0 -4
  411. package/.prettierrc +0 -7
  412. package/bin/abstractions/builder.d.ts +0 -4
  413. package/bin/abstractions/builder.js +0 -7
  414. package/bin/builders/dotnet/base.d.ts +0 -18
  415. package/bin/builders/dotnet/base.js +0 -47
  416. package/bin/builders/dotnet/entity-configuration/index.d.ts +0 -8
  417. package/bin/builders/dotnet/entity-configuration/index.js +0 -29
  418. package/bin/builders/dotnet/entity-converter/index.d.ts +0 -8
  419. package/bin/builders/dotnet/entity-converter/index.js +0 -29
  420. package/bin/builders/dotnet/entity-model-create/index.d.ts +0 -8
  421. package/bin/builders/dotnet/entity-model-create/index.js +0 -29
  422. package/bin/builders/dotnet/entity-model-dto/index.d.ts +0 -8
  423. package/bin/builders/dotnet/entity-model-dto/index.js +0 -29
  424. package/bin/builders/dotnet/entity-model-list-item-dto/index.d.ts +0 -8
  425. package/bin/builders/dotnet/entity-model-list-item-dto/index.js +0 -29
  426. package/bin/builders/dotnet/entity-model-update/index.d.ts +0 -8
  427. package/bin/builders/dotnet/entity-model-update/index.js +0 -29
  428. package/bin/builders/dotnet/entity-search-parameters/index.d.ts +0 -8
  429. package/bin/builders/dotnet/entity-search-parameters/index.js +0 -29
  430. package/bin/builders/dotnet/entity-search-query-builder/index.d.ts +0 -8
  431. package/bin/builders/dotnet/entity-search-query-builder/index.js +0 -29
  432. package/bin/builders/dotnet/firestore-connector/index.d.ts +0 -8
  433. package/bin/builders/dotnet/firestore-connector/index.js +0 -29
  434. package/bin/builders/dotnet/firestore-mapper/index.d.ts +0 -8
  435. package/bin/builders/dotnet/firestore-mapper/index.js +0 -29
  436. package/bin/builders/dotnet/types.d.ts +0 -10
  437. package/bin/builders/dotnet/types.js +0 -3
  438. package/bin/commands/entity-add/__test__/dotnet/common.d.ts +0 -2
  439. package/bin/commands/entity-add/__test__/dotnet/common.js +0 -11
  440. package/bin/commands/entity-add/__test__/dotnet/render.configuration.spec.d.ts +0 -1
  441. package/bin/commands/entity-add/__test__/dotnet/render.configuration.spec.js +0 -22
  442. package/bin/commands/entity-add/__test__/dotnet/render.converter.spec.d.ts +0 -1
  443. package/bin/commands/entity-add/__test__/dotnet/render.converter.spec.js +0 -22
  444. package/bin/commands/entity-add/__test__/dotnet/render.firestore-connector.spec.d.ts +0 -1
  445. package/bin/commands/entity-add/__test__/dotnet/render.firestore-connector.spec.js +0 -22
  446. package/bin/commands/entity-add/__test__/dotnet/render.firestore-mapper.spec.d.ts +0 -1
  447. package/bin/commands/entity-add/__test__/dotnet/render.firestore-mapper.spec.js +0 -22
  448. package/bin/commands/entity-add/__test__/dotnet/render.model-create.spec.d.ts +0 -1
  449. package/bin/commands/entity-add/__test__/dotnet/render.model-create.spec.js +0 -22
  450. package/bin/commands/entity-add/__test__/dotnet/render.model-dto.spec.d.ts +0 -1
  451. package/bin/commands/entity-add/__test__/dotnet/render.model-dto.spec.js +0 -22
  452. package/bin/commands/entity-add/__test__/dotnet/render.model-list-item-dto.spec.d.ts +0 -1
  453. package/bin/commands/entity-add/__test__/dotnet/render.model-list-item-dto.spec.js +0 -22
  454. package/bin/commands/entity-add/__test__/dotnet/render.model-update.spec.d.ts +0 -1
  455. package/bin/commands/entity-add/__test__/dotnet/render.model-update.spec.js +0 -22
  456. package/bin/commands/entity-add/__test__/dotnet/render.search-parameters.spec.d.ts +0 -1
  457. package/bin/commands/entity-add/__test__/dotnet/render.search-parameters.spec.js +0 -22
  458. package/bin/commands/entity-add/__test__/dotnet/render.search-query.spec.d.ts +0 -1
  459. package/bin/commands/entity-add/__test__/dotnet/render.search-query.spec.js +0 -22
  460. package/bin/commands/entity-add/index.d.ts +0 -26
  461. package/bin/commands/entity-add/index.js +0 -44
  462. package/bin/logging/index.d.ts +0 -8
  463. package/bin/logging/index.js +0 -28
  464. package/bin/providers/rendering/base.d.ts +0 -3
  465. package/bin/providers/rendering/base.js +0 -7
  466. package/bin/providers/rendering/factory.d.ts +0 -5
  467. package/bin/providers/rendering/factory.js +0 -16
  468. package/bin/providers/rendering/handlebars.d.ts +0 -4
  469. package/bin/providers/rendering/handlebars.js +0 -16
  470. package/bin/renderer/index.d.ts +0 -6
  471. package/bin/renderer/index.js +0 -27
  472. package/bin/run.d.ts +0 -2
  473. package/bin/run.js +0 -70
  474. package/bin/services/folders.d.ts +0 -1
  475. package/bin/services/folders.js +0 -31
  476. package/bin/types/commands.d.ts +0 -5
  477. package/bin/types/commands.js +0 -3
  478. package/bin/utils/collections.d.ts +0 -1
  479. package/bin/utils/collections.js +0 -6
  480. package/bin/utils/files.d.ts +0 -3
  481. package/bin/utils/files.js +0 -19
  482. package/bin/utils/strings.d.ts +0 -4
  483. package/bin/utils/strings.js +0 -22
  484. package/bin/utils/text.d.ts +0 -1
  485. package/bin/utils/text.js +0 -8
  486. package/em-cli +0 -0
  487. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.configuration.spec.ts.snap +0 -49
  488. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.converter.spec.ts.snap +0 -53
  489. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.firestore-connector.spec.ts.snap +0 -20
  490. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.firestore-mapper.spec.ts.snap +0 -29
  491. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-create.spec.ts.snap +0 -10
  492. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-dto.spec.ts.snap +0 -9
  493. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-list-item-dto.spec.ts.snap +0 -11
  494. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-update.spec.ts.snap +0 -11
  495. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.search-parameters.spec.ts.snap +0 -29
  496. package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.search-query.spec.ts.snap +0 -42
  497. package/templates/dotnet/NewEntity/Configuration/<PluralizedEntity>Configuration.cs.template +0 -48
  498. package/templates/dotnet/NewEntity/Connectors/<PluralizedEntity>FirestoreConnector.cs.template +0 -15
  499. package/templates/dotnet/NewEntity/Converters/<PluralizedEntity>Converter.cs.template +0 -48
  500. package/templates/dotnet/NewEntity/Mappers/<PluralizedEntity>FirestoreMapper.cs.template +0 -25
  501. package/templates/dotnet/NewEntity/Models/<Entity>CreateInput.cs.template +0 -6
  502. package/templates/dotnet/NewEntity/Models/<Entity>Dto.cs.template +0 -5
  503. package/templates/dotnet/NewEntity/Models/<Entity>ListItemDto.cs.template +0 -6
  504. package/templates/dotnet/NewEntity/Models/<Entity>UpdateInput.cs.template +0 -6
  505. package/templates/dotnet/NewEntity/Search/<PluralizedEntity>QueryBuilder.cs.template +0 -38
  506. package/templates/dotnet/NewEntity/Search/<PluralizedEntity>SearchParameters.cs.template +0 -24
  507. package/tsconfig.json +0 -25
@@ -0,0 +1,22 @@
1
+ export const toolCatalog = [
2
+ {
3
+ id: "agent-browser",
4
+ packageName: "agent-browser",
5
+ requiredBins: ["node"],
6
+ ensureCommands: [["agent-browser", "install"]],
7
+ },
8
+ {
9
+ id: "opensrc",
10
+ packageName: "opensrc",
11
+ requiredBins: ["node"],
12
+ ensureCommands: [],
13
+ },
14
+ {
15
+ id: "portless",
16
+ packageName: "portless",
17
+ requiredBins: ["node"],
18
+ ensureCommands: [],
19
+ },
20
+ ] as const;
21
+
22
+ export type ToolId = (typeof toolCatalog)[number]["id"];
@@ -0,0 +1,554 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { createHash } from "node:crypto";
4
+ import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
5
+ import os from "node:os";
6
+ import path from "node:path";
7
+ import { spawnSync } from "node:child_process";
8
+ import { fileURLToPath } from "node:url";
9
+
10
+ const formattableSuffixes = new Set([".ts", ".tsx", ".js", ".jsx", ".mjs", ".cjs", ".json"]);
11
+ const lintableSuffixes = new Set([".ts", ".tsx", ".js", ".jsx", ".mjs", ".cjs"]);
12
+ const ignoredParts = new Set([".git", "node_modules", ".next", "dist"]);
13
+ const productRoots = new Set(["apps", "packages"]);
14
+
15
+ function readStdinJson() {
16
+ try {
17
+ return JSON.parse(readFileSync(0, "utf8"));
18
+ } catch {
19
+ return {};
20
+ }
21
+ }
22
+
23
+ function runGit(args, cwd) {
24
+ const result = spawnSync("git", ["-C", cwd, ...args], {
25
+ encoding: "utf8",
26
+ stdio: ["ignore", "pipe", "ignore"],
27
+ });
28
+
29
+ return result.status === 0 ? result.stdout : null;
30
+ }
31
+
32
+ function repoRoot(cwd) {
33
+ return runGit(["rev-parse", "--show-toplevel"], cwd)?.trim() ?? "";
34
+ }
35
+
36
+ function normalizeRelativePath(root, filePath) {
37
+ if (!filePath) {
38
+ return null;
39
+ }
40
+
41
+ const absolutePath = path.isAbsolute(filePath) ? filePath : path.join(root, filePath);
42
+ const relativePath = path.relative(root, absolutePath);
43
+
44
+ if (!relativePath || relativePath.startsWith("..") || path.isAbsolute(relativePath)) {
45
+ return null;
46
+ }
47
+
48
+ const normalizedPath = relativePath.split(path.sep).join("/");
49
+ const extension = path.extname(normalizedPath);
50
+
51
+ if (!formattableSuffixes.has(extension)) {
52
+ return null;
53
+ }
54
+
55
+ if (normalizedPath.split("/").some((part) => ignoredParts.has(part))) {
56
+ return null;
57
+ }
58
+
59
+ if (!existsSync(path.join(root, normalizedPath))) {
60
+ return null;
61
+ }
62
+
63
+ return normalizedPath;
64
+ }
65
+
66
+ function isLintablePath(relativePath) {
67
+ const parts = relativePath.split("/");
68
+ return (
69
+ parts.length > 0 &&
70
+ productRoots.has(parts[0]) &&
71
+ lintableSuffixes.has(path.extname(relativePath))
72
+ );
73
+ }
74
+
75
+ function runCommand(root, args, stdio = "ignore") {
76
+ const result = spawnSync(args[0], args.slice(1), {
77
+ cwd: root,
78
+ stdio,
79
+ encoding: stdio === "ignore" ? undefined : "utf8",
80
+ });
81
+
82
+ return {
83
+ ok: result.status === 0,
84
+ stdout: result.stdout ?? "",
85
+ };
86
+ }
87
+
88
+ function commandExists(command) {
89
+ return (
90
+ spawnSync("which", [command], {
91
+ stdio: "ignore",
92
+ }).status === 0
93
+ );
94
+ }
95
+
96
+ function toolCommand(root, tool, args) {
97
+ if (commandExists("bunx")) {
98
+ return ["bunx", tool, ...args];
99
+ }
100
+
101
+ if (commandExists("pnpm")) {
102
+ return ["pnpm", "exec", tool, ...args];
103
+ }
104
+
105
+ return ["npx", tool, ...args];
106
+ }
107
+
108
+ function formatAndLintFiles(root, filePaths) {
109
+ const normalizedFiles = [];
110
+
111
+ for (const filePath of filePaths) {
112
+ const normalizedPath = normalizeRelativePath(root, filePath);
113
+ if (normalizedPath && !normalizedFiles.includes(normalizedPath)) {
114
+ normalizedFiles.push(normalizedPath);
115
+ }
116
+ }
117
+
118
+ const formatted = [];
119
+ const formatFailed = [];
120
+ const lintFailed = [];
121
+
122
+ for (const relativePath of normalizedFiles) {
123
+ const formattedOk = runCommand(root, toolCommand(root, "oxfmt", ["--write", relativePath])).ok;
124
+
125
+ if (!formattedOk) {
126
+ formatFailed.push(relativePath);
127
+ continue;
128
+ }
129
+
130
+ formatted.push(relativePath);
131
+
132
+ if (
133
+ isLintablePath(relativePath) &&
134
+ !runCommand(root, toolCommand(root, "oxlint", ["-c", ".oxlintrc.json", relativePath])).ok
135
+ ) {
136
+ lintFailed.push(relativePath);
137
+ }
138
+ }
139
+
140
+ return {
141
+ format_failed: formatFailed,
142
+ formatted,
143
+ lint_failed: lintFailed,
144
+ };
145
+ }
146
+
147
+ function extractSingleFilePath(payload) {
148
+ return (
149
+ payload.filePath ??
150
+ payload.file_path ??
151
+ payload.tool_input?.filePath ??
152
+ payload.tool_input?.file_path ??
153
+ payload.tool_response?.filePath ??
154
+ payload.tool_response?.file_path ??
155
+ ""
156
+ );
157
+ }
158
+
159
+ function emitClaudeFailure(message) {
160
+ process.stdout.write(
161
+ JSON.stringify({
162
+ hookSpecificOutput: {
163
+ hookEventName: "PostToolUse",
164
+ additionalContext: message,
165
+ },
166
+ }),
167
+ );
168
+ }
169
+
170
+ function emitCursorFailure(message) {
171
+ process.stdout.write(
172
+ JSON.stringify({
173
+ user_message: message,
174
+ }),
175
+ );
176
+ }
177
+
178
+ function runSingleFileMode(style) {
179
+ const payload = readStdinJson();
180
+ const root = repoRoot(process.cwd());
181
+
182
+ if (!root) {
183
+ return;
184
+ }
185
+
186
+ const filePath = extractSingleFilePath(payload);
187
+ if (!filePath) {
188
+ return;
189
+ }
190
+
191
+ const summary = formatAndLintFiles(root, [filePath]);
192
+ const formatFailed = summary.format_failed[0] ?? "";
193
+ const lintFailed = summary.lint_failed[0] ?? "";
194
+
195
+ if (formatFailed) {
196
+ const message = `Auto-format failed for ${filePath}. Review the file and format it manually if needed.`;
197
+
198
+ if (style === "claude") {
199
+ emitClaudeFailure(message);
200
+ } else {
201
+ emitCursorFailure(message);
202
+ }
203
+
204
+ return;
205
+ }
206
+
207
+ if (lintFailed) {
208
+ const message = `Auto-lint failed for ${filePath}. Review the file and fix lint errors manually if needed.`;
209
+
210
+ if (style === "claude") {
211
+ emitClaudeFailure(message);
212
+ } else {
213
+ emitCursorFailure(message);
214
+ }
215
+ }
216
+ }
217
+
218
+ function dirtyFiles(root) {
219
+ const output = runGit(["ls-files", "-m", "-o", "--exclude-standard"], root);
220
+ if (!output) {
221
+ return [];
222
+ }
223
+
224
+ return [
225
+ ...new Set(
226
+ output
227
+ .split("\n")
228
+ .map((line) => line.trim())
229
+ .filter(Boolean)
230
+ .filter((filePath) => formattableSuffixes.has(path.extname(filePath)))
231
+ .filter((filePath) => !filePath.split("/").some((part) => ignoredParts.has(part))),
232
+ ),
233
+ ].sort();
234
+ }
235
+
236
+ function fileHash(filePath) {
237
+ const hash = createHash("sha256");
238
+ hash.update(readFileSync(filePath));
239
+ return hash.digest("hex");
240
+ }
241
+
242
+ function codexStateFilePath(root, sessionId) {
243
+ const repoName = path.basename(root) || "repo";
244
+ const safeSessionId = sessionId.replaceAll("/", "_");
245
+ const stateDir = path.join(os.tmpdir(), "codex-hooks", repoName, safeSessionId);
246
+ mkdirSync(stateDir, { recursive: true });
247
+ return path.join(stateDir, "format-state.json");
248
+ }
249
+
250
+ function fingerprints(root) {
251
+ const entries = {};
252
+
253
+ for (const relativePath of dirtyFiles(root)) {
254
+ const absolutePath = path.join(root, relativePath);
255
+ if (existsSync(absolutePath)) {
256
+ entries[relativePath] = fileHash(absolutePath);
257
+ }
258
+ }
259
+
260
+ return entries;
261
+ }
262
+
263
+ function loadJson(filePath) {
264
+ if (!existsSync(filePath)) {
265
+ return null;
266
+ }
267
+
268
+ try {
269
+ return JSON.parse(readFileSync(filePath, "utf8"));
270
+ } catch {
271
+ return null;
272
+ }
273
+ }
274
+
275
+ function isFingerprintRecord(value) {
276
+ return value && typeof value === "object" && !Array.isArray(value);
277
+ }
278
+
279
+ function readFingerprintRecord(value) {
280
+ if (!isFingerprintRecord(value)) {
281
+ return {};
282
+ }
283
+
284
+ return Object.fromEntries(
285
+ Object.entries(value).filter(
286
+ ([filePath, hash]) => typeof filePath === "string" && typeof hash === "string",
287
+ ),
288
+ );
289
+ }
290
+
291
+ function loadCodexState(filePath) {
292
+ const raw = loadJson(filePath);
293
+ return {
294
+ baseline: readFingerprintRecord(raw?.baseline),
295
+ lastToolUseId: typeof raw?.lastToolUseId === "string" ? raw.lastToolUseId : "",
296
+ processed: readFingerprintRecord(raw?.processed),
297
+ };
298
+ }
299
+
300
+ function saveCodexState(filePath, state) {
301
+ writeFileSync(
302
+ filePath,
303
+ JSON.stringify({
304
+ baseline: state.baseline,
305
+ lastToolUseId: state.lastToolUseId,
306
+ processed: state.processed,
307
+ }),
308
+ );
309
+ }
310
+
311
+ function updateProcessedFingerprints(root, state, filePaths) {
312
+ for (const relativePath of filePaths) {
313
+ const absolutePath = path.join(root, relativePath);
314
+
315
+ if (existsSync(absolutePath)) {
316
+ state.processed[relativePath] = fileHash(absolutePath);
317
+ continue;
318
+ }
319
+
320
+ delete state.processed[relativePath];
321
+ }
322
+ }
323
+
324
+ function pendingCodexFiles(state, current) {
325
+ return Object.entries(current)
326
+ .filter(
327
+ ([relativePath, digest]) =>
328
+ state.baseline[relativePath] !== digest && state.processed[relativePath] !== digest,
329
+ )
330
+ .map(([relativePath]) => relativePath);
331
+ }
332
+
333
+ function pruneProcessedFingerprints(state, current) {
334
+ for (const relativePath of Object.keys(state.processed)) {
335
+ if (current[relativePath] !== state.processed[relativePath]) {
336
+ delete state.processed[relativePath];
337
+ }
338
+ }
339
+ }
340
+
341
+ function emitCodexFailure(kind, files) {
342
+ const message =
343
+ kind === "lint"
344
+ ? `Auto-lint failed for ${files.join(", ")}. Review the file and fix lint errors manually if needed.`
345
+ : `Auto-format failed for ${files.join(", ")}. Review the file and format it manually if needed.`;
346
+
347
+ process.stdout.write(JSON.stringify({ systemMessage: message }));
348
+ }
349
+
350
+ function runCodexSnapshotMode(mode) {
351
+ const payload = readStdinJson();
352
+ const cwd = String(payload.cwd ?? process.cwd());
353
+ const sessionId = String(payload.session_id ?? "");
354
+ const root = repoRoot(cwd);
355
+
356
+ if (!root || !sessionId) {
357
+ return;
358
+ }
359
+
360
+ const stateFile = codexStateFilePath(root, sessionId);
361
+
362
+ if (mode === "session-start") {
363
+ saveCodexState(stateFile, {
364
+ baseline: fingerprints(root),
365
+ lastToolUseId: "",
366
+ processed: {},
367
+ });
368
+ return;
369
+ }
370
+
371
+ if (mode !== "post") {
372
+ return;
373
+ }
374
+
375
+ const state = loadCodexState(stateFile);
376
+ const toolUseId = typeof payload.tool_use_id === "string" ? payload.tool_use_id : "";
377
+
378
+ if (toolUseId && state.lastToolUseId === toolUseId) {
379
+ return;
380
+ }
381
+
382
+ const current = fingerprints(root);
383
+ pruneProcessedFingerprints(state, current);
384
+ const touched = pendingCodexFiles(state, current);
385
+
386
+ if (toolUseId) {
387
+ state.lastToolUseId = toolUseId;
388
+ }
389
+
390
+ if (touched.length === 0) {
391
+ saveCodexState(stateFile, state);
392
+ return;
393
+ }
394
+
395
+ const summary = formatAndLintFiles(root, touched);
396
+ updateProcessedFingerprints(root, state, summary.formatted);
397
+ saveCodexState(stateFile, state);
398
+
399
+ if (summary.format_failed.length > 0) {
400
+ emitCodexFailure("format", summary.format_failed);
401
+ }
402
+
403
+ if (summary.lint_failed.length > 0) {
404
+ emitCodexFailure("lint", summary.lint_failed);
405
+ }
406
+ }
407
+
408
+ function toPosixPath(filePath) {
409
+ return filePath.split(path.sep).join("/");
410
+ }
411
+
412
+ function normalizeEditedPath(filePath, worktree) {
413
+ if (!filePath) {
414
+ return null;
415
+ }
416
+
417
+ const absolutePath = path.isAbsolute(filePath) ? filePath : path.join(worktree, filePath);
418
+ const relativePath = path.relative(worktree, absolutePath);
419
+
420
+ if (!relativePath || relativePath.startsWith("..") || path.isAbsolute(relativePath)) {
421
+ return null;
422
+ }
423
+
424
+ return toPosixPath(relativePath);
425
+ }
426
+
427
+ function extractPatchedPaths(patchText, worktree) {
428
+ if (!patchText) {
429
+ return [];
430
+ }
431
+
432
+ const paths = [];
433
+
434
+ for (const line of patchText.split("\n")) {
435
+ let relativePath = null;
436
+
437
+ if (line.startsWith("*** Add File: ")) {
438
+ relativePath = line.slice("*** Add File: ".length).trim();
439
+ } else if (line.startsWith("*** Update File: ")) {
440
+ relativePath = line.slice("*** Update File: ".length).trim();
441
+ } else if (line.startsWith("*** Move to: ")) {
442
+ relativePath = line.slice("*** Move to: ".length).trim();
443
+ }
444
+
445
+ const normalizedPath = normalizeEditedPath(relativePath, worktree);
446
+ if (normalizedPath) {
447
+ paths.push(normalizedPath);
448
+ }
449
+ }
450
+
451
+ return paths;
452
+ }
453
+
454
+ function editedPathsForTool(input, output, worktree) {
455
+ const toolName = input?.tool;
456
+ const args = output?.args ?? {};
457
+
458
+ if (toolName === "apply_patch") {
459
+ return extractPatchedPaths(args.patchText, worktree);
460
+ }
461
+
462
+ const filePath = args.filePath;
463
+ const normalizedPath = normalizeEditedPath(filePath, worktree);
464
+ return normalizedPath ? [normalizedPath] : [];
465
+ }
466
+
467
+ function parseSummary(stdout) {
468
+ try {
469
+ return JSON.parse(stdout || "{}");
470
+ } catch {
471
+ return {};
472
+ }
473
+ }
474
+
475
+ export const FormatAndLintPlugin = async ({ client, worktree }) => {
476
+ return {
477
+ "tool.execute.after": async (input, output) => {
478
+ if (!["edit", "write", "multiedit", "apply_patch"].includes(input.tool)) {
479
+ return;
480
+ }
481
+
482
+ const editedPaths = [...new Set(editedPathsForTool(input, output, worktree))].filter(Boolean);
483
+
484
+ if (editedPaths.length === 0) {
485
+ return;
486
+ }
487
+
488
+ const result = runCommand(
489
+ worktree,
490
+ ["node", ".agents/hooks/format-edited-file.mjs", "files", ...editedPaths],
491
+ ["ignore", "pipe", "ignore"],
492
+ );
493
+
494
+ const summary = result.ok ? parseSummary(result.stdout) : {};
495
+ const formatFailed = Array.isArray(summary?.format_failed) ? summary.format_failed : [];
496
+ const lintFailed = Array.isArray(summary?.lint_failed) ? summary.lint_failed : [];
497
+
498
+ for (const relativePath of formatFailed) {
499
+ await client.app.log({
500
+ body: {
501
+ service: "format-and-lint",
502
+ level: "warn",
503
+ message: "Auto-format failed after edit.",
504
+ extra: {
505
+ filePath: relativePath,
506
+ },
507
+ },
508
+ });
509
+ }
510
+
511
+ for (const relativePath of lintFailed) {
512
+ await client.app.log({
513
+ body: {
514
+ service: "format-and-lint",
515
+ level: "warn",
516
+ message: "Auto-lint failed after edit.",
517
+ extra: {
518
+ filePath: relativePath,
519
+ },
520
+ },
521
+ });
522
+ }
523
+ },
524
+ };
525
+ };
526
+
527
+ function main() {
528
+ const mode = process.argv[2] ?? "";
529
+
530
+ if (mode === "session-start" || mode === "post") {
531
+ runCodexSnapshotMode(mode);
532
+ return;
533
+ }
534
+
535
+ if (mode === "claude" || mode === "cursor") {
536
+ runSingleFileMode(mode);
537
+ return;
538
+ }
539
+
540
+ if (mode === "files") {
541
+ const root = repoRoot(process.cwd());
542
+ const summary = root
543
+ ? formatAndLintFiles(root, process.argv.slice(3))
544
+ : { format_failed: [], formatted: [], lint_failed: [] };
545
+ process.stdout.write(JSON.stringify(summary));
546
+ }
547
+ }
548
+
549
+ const invokedPath = process.argv[1] ? path.resolve(process.argv[1]) : "";
550
+ const modulePath = fileURLToPath(import.meta.url);
551
+
552
+ if (invokedPath && path.basename(invokedPath) === path.basename(modulePath)) {
553
+ main();
554
+ }