@bcelep/capint 0.4.2 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1344) hide show
  1. package/AGENT.md +11 -1
  2. package/CHANGELOG.md +124 -0
  3. package/README.md +38 -10
  4. package/bin/capint.js +22 -1
  5. package/docs/PRD-capint.md +94 -0
  6. package/docs/PRD-v0.5-agent-capability-activation.md +439 -0
  7. package/docs/architecture-decisions.md +2 -0
  8. package/docs/capint-rehber.md +439 -0
  9. package/docs/capint-stack.md +118 -0
  10. package/docs/community.md +19 -0
  11. package/docs/conventions/cli-scripting.md +60 -0
  12. package/docs/conventions/daily-use.md +146 -0
  13. package/docs/conventions/task-to-capability-cheatsheet.md +29 -0
  14. package/docs/eval/beginner-test-protocol.md +39 -0
  15. package/docs/eval/survey-template.md +16 -0
  16. package/docs/execution-intent-contract.md +31 -3
  17. package/docs/generated/README.md +6 -0
  18. package/docs/generated/execution-intent.v1.md +211 -0
  19. package/docs/generated/explanation.v1.md +127 -0
  20. package/docs/generated/explanation.v2.md +142 -0
  21. package/docs/generated/ui-api.v1.md +178 -0
  22. package/docs/kullanim-kilavuzu.md +374 -0
  23. package/docs/maintainer-dogfood.md +91 -0
  24. package/docs/recipes/memory-graph-pairing.md +200 -0
  25. package/docs/skill-audit-runbook.md +32 -0
  26. package/locales/en.json +27 -0
  27. package/locales/tr.json +27 -0
  28. package/package.json +14 -3
  29. package/projections/session-start.md +26 -6
  30. package/registry.json +117 -4
  31. package/schemas/execution-intent.v1.json +69 -0
  32. package/schemas/explanation.v1.json +48 -0
  33. package/schemas/explanation.v2.json +51 -0
  34. package/schemas/ui-api.v1.json +85 -0
  35. package/scripts/capint-task.ps1 +38 -0
  36. package/scripts/capint-task.sh +40 -0
  37. package/scripts/generate-schema-docs.mjs +104 -0
  38. package/scripts/release-check.mjs +24 -1
  39. package/scripts/validate-registry.mjs +44 -0
  40. package/skill-routing-matrix.json +50 -4
  41. package/skills/agent-browser/LICENSE +201 -0
  42. package/skills/agent-browser/SKILL.md +522 -0
  43. package/skills/agent-browser/agents/verdent.yaml +7 -0
  44. package/skills/agent-browser/assets/icon-dark.png +0 -0
  45. package/skills/agent-browser/assets/icon-light.png +0 -0
  46. package/skills/agent-browser/references/authentication.md +202 -0
  47. package/skills/agent-browser/references/commands.md +263 -0
  48. package/skills/agent-browser/references/profiling.md +120 -0
  49. package/skills/agent-browser/references/proxy-support.md +194 -0
  50. package/skills/agent-browser/references/session-management.md +193 -0
  51. package/skills/agent-browser/references/snapshot-refs.md +194 -0
  52. package/skills/agent-browser/references/video-recording.md +173 -0
  53. package/skills/agent-browser/templates/authenticated-session.sh +105 -0
  54. package/skills/agent-browser/templates/capture-workflow.sh +69 -0
  55. package/skills/agent-browser/templates/form-automation.sh +62 -0
  56. package/skills/algorithmic-art/LICENSE.txt +202 -0
  57. package/skills/algorithmic-art/SKILL.md +410 -0
  58. package/skills/algorithmic-art/agents/verdent.yaml +11 -0
  59. package/skills/algorithmic-art/assets/icon-dark.png +0 -0
  60. package/skills/algorithmic-art/assets/icon-light.png +0 -0
  61. package/skills/algorithmic-art/templates/generator_template.js +223 -0
  62. package/skills/algorithmic-art/templates/viewer.html +599 -0
  63. package/skills/api-and-interface-design/SKILL.md +294 -0
  64. package/skills/aspnet-core/LICENSE.txt +202 -0
  65. package/skills/aspnet-core/SKILL.md +67 -0
  66. package/skills/aspnet-core/agents/verdent.yaml +11 -0
  67. package/skills/aspnet-core/assets/dotnet-logo.png +0 -0
  68. package/skills/aspnet-core/assets/icon-dark.png +0 -0
  69. package/skills/aspnet-core/assets/icon-light.png +0 -0
  70. package/skills/aspnet-core/references/_sections.md +40 -0
  71. package/skills/aspnet-core/references/apis-minimal-and-controllers.md +81 -0
  72. package/skills/aspnet-core/references/data-state-and-services.md +69 -0
  73. package/skills/aspnet-core/references/program-and-pipeline.md +103 -0
  74. package/skills/aspnet-core/references/realtime-grpc-and-background-work.md +58 -0
  75. package/skills/aspnet-core/references/security-and-identity.md +75 -0
  76. package/skills/aspnet-core/references/source-map.md +43 -0
  77. package/skills/aspnet-core/references/stack-selection.md +63 -0
  78. package/skills/aspnet-core/references/testing-performance-and-operations.md +92 -0
  79. package/skills/aspnet-core/references/ui-blazor.md +53 -0
  80. package/skills/aspnet-core/references/ui-mvc.md +56 -0
  81. package/skills/aspnet-core/references/ui-razor-pages.md +55 -0
  82. package/skills/aspnet-core/references/versioning-and-upgrades.md +51 -0
  83. package/skills/auth-patterns/SKILL.md +549 -0
  84. package/skills/best-practices/SKILL.md +641 -0
  85. package/skills/better-auth-best-practices/SKILL.md +180 -0
  86. package/skills/better-auth-best-practices/agents/verdent.yaml +11 -0
  87. package/skills/better-auth-best-practices/assets/icon-dark.png +0 -0
  88. package/skills/better-auth-best-practices/assets/icon-light.png +0 -0
  89. package/skills/brainstorming/SKILL.md +164 -0
  90. package/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  91. package/skills/brainstorming/visual-companion.md +287 -0
  92. package/skills/canvas-design/LICENSE.txt +202 -0
  93. package/skills/canvas-design/SKILL.md +135 -0
  94. package/skills/canvas-design/agents/verdent.yaml +11 -0
  95. package/skills/canvas-design/assets/icon-dark.png +0 -0
  96. package/skills/canvas-design/assets/icon-light.png +0 -0
  97. package/skills/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +93 -0
  98. package/skills/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  99. package/skills/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  100. package/skills/canvas-design/canvas-fonts/BigShoulders-OFL.txt +93 -0
  101. package/skills/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  102. package/skills/canvas-design/canvas-fonts/Boldonse-OFL.txt +93 -0
  103. package/skills/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
  104. package/skills/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  105. package/skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
  106. package/skills/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  107. package/skills/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  108. package/skills/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  109. package/skills/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +93 -0
  110. package/skills/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  111. package/skills/canvas-design/canvas-fonts/DMMono-OFL.txt +93 -0
  112. package/skills/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
  113. package/skills/canvas-design/canvas-fonts/EricaOne-OFL.txt +94 -0
  114. package/skills/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
  115. package/skills/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
  116. package/skills/canvas-design/canvas-fonts/GeistMono-OFL.txt +93 -0
  117. package/skills/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
  118. package/skills/canvas-design/canvas-fonts/Gloock-OFL.txt +93 -0
  119. package/skills/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
  120. package/skills/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  121. package/skills/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
  122. package/skills/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  123. package/skills/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  124. package/skills/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  125. package/skills/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  126. package/skills/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  127. package/skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  128. package/skills/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  129. package/skills/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  130. package/skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +93 -0
  131. package/skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  132. package/skills/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  133. package/skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  134. package/skills/canvas-design/canvas-fonts/Italiana-OFL.txt +93 -0
  135. package/skills/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
  136. package/skills/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  137. package/skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
  138. package/skills/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  139. package/skills/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
  140. package/skills/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
  141. package/skills/canvas-design/canvas-fonts/Jura-OFL.txt +93 -0
  142. package/skills/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
  143. package/skills/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  144. package/skills/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
  145. package/skills/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  146. package/skills/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
  147. package/skills/canvas-design/canvas-fonts/Lora-OFL.txt +93 -0
  148. package/skills/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
  149. package/skills/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
  150. package/skills/canvas-design/canvas-fonts/NationalPark-OFL.txt +93 -0
  151. package/skills/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
  152. package/skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
  153. package/skills/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  154. package/skills/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
  155. package/skills/canvas-design/canvas-fonts/Outfit-OFL.txt +93 -0
  156. package/skills/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
  157. package/skills/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  158. package/skills/canvas-design/canvas-fonts/PixelifySans-OFL.txt +93 -0
  159. package/skills/canvas-design/canvas-fonts/PoiretOne-OFL.txt +93 -0
  160. package/skills/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  161. package/skills/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  162. package/skills/canvas-design/canvas-fonts/RedHatMono-OFL.txt +93 -0
  163. package/skills/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  164. package/skills/canvas-design/canvas-fonts/Silkscreen-OFL.txt +93 -0
  165. package/skills/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  166. package/skills/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  167. package/skills/canvas-design/canvas-fonts/SmoochSans-OFL.txt +93 -0
  168. package/skills/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
  169. package/skills/canvas-design/canvas-fonts/Tektur-OFL.txt +93 -0
  170. package/skills/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
  171. package/skills/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
  172. package/skills/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  173. package/skills/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
  174. package/skills/canvas-design/canvas-fonts/WorkSans-OFL.txt +93 -0
  175. package/skills/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
  176. package/skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt +93 -0
  177. package/skills/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  178. package/skills/ci-cd-and-automation/SKILL.md +390 -0
  179. package/skills/cloudflare/SKILL.md +233 -0
  180. package/skills/cloudflare/agents/verdent.yaml +12 -0
  181. package/skills/cloudflare/assets/icon-dark.png +0 -0
  182. package/skills/cloudflare/assets/icon-light.png +0 -0
  183. package/skills/cloudflare/references/agents-sdk/README.md +89 -0
  184. package/skills/cloudflare/references/agents-sdk/api.md +190 -0
  185. package/skills/cloudflare/references/agents-sdk/configuration.md +182 -0
  186. package/skills/cloudflare/references/agents-sdk/gotchas.md +158 -0
  187. package/skills/cloudflare/references/agents-sdk/patterns.md +192 -0
  188. package/skills/cloudflare/references/ai-gateway/README.md +175 -0
  189. package/skills/cloudflare/references/ai-gateway/configuration.md +111 -0
  190. package/skills/cloudflare/references/ai-gateway/dynamic-routing.md +82 -0
  191. package/skills/cloudflare/references/ai-gateway/features.md +96 -0
  192. package/skills/cloudflare/references/ai-gateway/sdk-integration.md +114 -0
  193. package/skills/cloudflare/references/ai-gateway/troubleshooting.md +88 -0
  194. package/skills/cloudflare/references/ai-search/README.md +138 -0
  195. package/skills/cloudflare/references/ai-search/api.md +87 -0
  196. package/skills/cloudflare/references/ai-search/configuration.md +88 -0
  197. package/skills/cloudflare/references/ai-search/gotchas.md +81 -0
  198. package/skills/cloudflare/references/ai-search/patterns.md +85 -0
  199. package/skills/cloudflare/references/analytics-engine/README.md +94 -0
  200. package/skills/cloudflare/references/analytics-engine/api.md +112 -0
  201. package/skills/cloudflare/references/analytics-engine/configuration.md +112 -0
  202. package/skills/cloudflare/references/analytics-engine/gotchas.md +85 -0
  203. package/skills/cloudflare/references/analytics-engine/patterns.md +83 -0
  204. package/skills/cloudflare/references/api/README.md +66 -0
  205. package/skills/cloudflare/references/api/api.md +204 -0
  206. package/skills/cloudflare/references/api/configuration.md +160 -0
  207. package/skills/cloudflare/references/api/gotchas.md +225 -0
  208. package/skills/cloudflare/references/api/patterns.md +204 -0
  209. package/skills/cloudflare/references/api-shield/README.md +44 -0
  210. package/skills/cloudflare/references/api-shield/api.md +141 -0
  211. package/skills/cloudflare/references/api-shield/configuration.md +192 -0
  212. package/skills/cloudflare/references/api-shield/gotchas.md +125 -0
  213. package/skills/cloudflare/references/api-shield/patterns.md +180 -0
  214. package/skills/cloudflare/references/argo-smart-routing/README.md +90 -0
  215. package/skills/cloudflare/references/argo-smart-routing/api.md +240 -0
  216. package/skills/cloudflare/references/argo-smart-routing/configuration.md +197 -0
  217. package/skills/cloudflare/references/argo-smart-routing/gotchas.md +111 -0
  218. package/skills/cloudflare/references/argo-smart-routing/patterns.md +104 -0
  219. package/skills/cloudflare/references/bindings/README.md +122 -0
  220. package/skills/cloudflare/references/bindings/api.md +203 -0
  221. package/skills/cloudflare/references/bindings/configuration.md +188 -0
  222. package/skills/cloudflare/references/bindings/gotchas.md +208 -0
  223. package/skills/cloudflare/references/bindings/patterns.md +200 -0
  224. package/skills/cloudflare/references/bot-management/README.md +94 -0
  225. package/skills/cloudflare/references/bot-management/api.md +169 -0
  226. package/skills/cloudflare/references/bot-management/configuration.md +163 -0
  227. package/skills/cloudflare/references/bot-management/gotchas.md +114 -0
  228. package/skills/cloudflare/references/bot-management/patterns.md +182 -0
  229. package/skills/cloudflare/references/browser-rendering/README.md +78 -0
  230. package/skills/cloudflare/references/browser-rendering/api.md +108 -0
  231. package/skills/cloudflare/references/browser-rendering/configuration.md +78 -0
  232. package/skills/cloudflare/references/browser-rendering/gotchas.md +88 -0
  233. package/skills/cloudflare/references/browser-rendering/patterns.md +91 -0
  234. package/skills/cloudflare/references/c3/README.md +111 -0
  235. package/skills/cloudflare/references/c3/api.md +71 -0
  236. package/skills/cloudflare/references/c3/configuration.md +81 -0
  237. package/skills/cloudflare/references/c3/gotchas.md +92 -0
  238. package/skills/cloudflare/references/c3/patterns.md +82 -0
  239. package/skills/cloudflare/references/cache-reserve/README.md +147 -0
  240. package/skills/cloudflare/references/cache-reserve/api.md +194 -0
  241. package/skills/cloudflare/references/cache-reserve/configuration.md +169 -0
  242. package/skills/cloudflare/references/cache-reserve/gotchas.md +132 -0
  243. package/skills/cloudflare/references/cache-reserve/patterns.md +197 -0
  244. package/skills/cloudflare/references/containers/README.md +85 -0
  245. package/skills/cloudflare/references/containers/api.md +187 -0
  246. package/skills/cloudflare/references/containers/configuration.md +188 -0
  247. package/skills/cloudflare/references/containers/gotchas.md +178 -0
  248. package/skills/cloudflare/references/containers/patterns.md +202 -0
  249. package/skills/cloudflare/references/cron-triggers/README.md +99 -0
  250. package/skills/cloudflare/references/cron-triggers/api.md +196 -0
  251. package/skills/cloudflare/references/cron-triggers/configuration.md +180 -0
  252. package/skills/cloudflare/references/cron-triggers/gotchas.md +199 -0
  253. package/skills/cloudflare/references/cron-triggers/patterns.md +190 -0
  254. package/skills/cloudflare/references/d1/README.md +133 -0
  255. package/skills/cloudflare/references/d1/api.md +196 -0
  256. package/skills/cloudflare/references/d1/configuration.md +188 -0
  257. package/skills/cloudflare/references/d1/gotchas.md +98 -0
  258. package/skills/cloudflare/references/d1/patterns.md +189 -0
  259. package/skills/cloudflare/references/ddos/README.md +41 -0
  260. package/skills/cloudflare/references/ddos/api.md +164 -0
  261. package/skills/cloudflare/references/ddos/configuration.md +93 -0
  262. package/skills/cloudflare/references/ddos/gotchas.md +107 -0
  263. package/skills/cloudflare/references/ddos/patterns.md +174 -0
  264. package/skills/cloudflare/references/do-storage/README.md +75 -0
  265. package/skills/cloudflare/references/do-storage/api.md +102 -0
  266. package/skills/cloudflare/references/do-storage/configuration.md +112 -0
  267. package/skills/cloudflare/references/do-storage/gotchas.md +150 -0
  268. package/skills/cloudflare/references/do-storage/patterns.md +194 -0
  269. package/skills/cloudflare/references/do-storage/testing.md +183 -0
  270. package/skills/cloudflare/references/durable-objects/README.md +185 -0
  271. package/skills/cloudflare/references/durable-objects/api.md +187 -0
  272. package/skills/cloudflare/references/durable-objects/configuration.md +160 -0
  273. package/skills/cloudflare/references/durable-objects/gotchas.md +197 -0
  274. package/skills/cloudflare/references/durable-objects/patterns.md +201 -0
  275. package/skills/cloudflare/references/email-routing/README.md +89 -0
  276. package/skills/cloudflare/references/email-routing/api.md +195 -0
  277. package/skills/cloudflare/references/email-routing/configuration.md +186 -0
  278. package/skills/cloudflare/references/email-routing/gotchas.md +196 -0
  279. package/skills/cloudflare/references/email-routing/patterns.md +229 -0
  280. package/skills/cloudflare/references/email-workers/README.md +151 -0
  281. package/skills/cloudflare/references/email-workers/api.md +237 -0
  282. package/skills/cloudflare/references/email-workers/configuration.md +112 -0
  283. package/skills/cloudflare/references/email-workers/gotchas.md +125 -0
  284. package/skills/cloudflare/references/email-workers/patterns.md +102 -0
  285. package/skills/cloudflare/references/graphql-api/README.md +147 -0
  286. package/skills/cloudflare/references/graphql-api/api.md +175 -0
  287. package/skills/cloudflare/references/graphql-api/configuration.md +118 -0
  288. package/skills/cloudflare/references/graphql-api/gotchas.md +110 -0
  289. package/skills/cloudflare/references/graphql-api/patterns.md +225 -0
  290. package/skills/cloudflare/references/hyperdrive/README.md +82 -0
  291. package/skills/cloudflare/references/hyperdrive/api.md +143 -0
  292. package/skills/cloudflare/references/hyperdrive/configuration.md +159 -0
  293. package/skills/cloudflare/references/hyperdrive/gotchas.md +77 -0
  294. package/skills/cloudflare/references/hyperdrive/patterns.md +190 -0
  295. package/skills/cloudflare/references/images/README.md +61 -0
  296. package/skills/cloudflare/references/images/api.md +96 -0
  297. package/skills/cloudflare/references/images/configuration.md +211 -0
  298. package/skills/cloudflare/references/images/gotchas.md +99 -0
  299. package/skills/cloudflare/references/images/patterns.md +115 -0
  300. package/skills/cloudflare/references/kv/README.md +89 -0
  301. package/skills/cloudflare/references/kv/api.md +160 -0
  302. package/skills/cloudflare/references/kv/configuration.md +144 -0
  303. package/skills/cloudflare/references/kv/gotchas.md +131 -0
  304. package/skills/cloudflare/references/kv/patterns.md +196 -0
  305. package/skills/cloudflare/references/miniflare/README.md +105 -0
  306. package/skills/cloudflare/references/miniflare/api.md +187 -0
  307. package/skills/cloudflare/references/miniflare/configuration.md +173 -0
  308. package/skills/cloudflare/references/miniflare/gotchas.md +160 -0
  309. package/skills/cloudflare/references/miniflare/patterns.md +181 -0
  310. package/skills/cloudflare/references/network-interconnect/README.md +99 -0
  311. package/skills/cloudflare/references/network-interconnect/api.md +199 -0
  312. package/skills/cloudflare/references/network-interconnect/configuration.md +114 -0
  313. package/skills/cloudflare/references/network-interconnect/gotchas.md +165 -0
  314. package/skills/cloudflare/references/network-interconnect/patterns.md +166 -0
  315. package/skills/cloudflare/references/observability/README.md +88 -0
  316. package/skills/cloudflare/references/observability/api.md +164 -0
  317. package/skills/cloudflare/references/observability/configuration.md +169 -0
  318. package/skills/cloudflare/references/observability/gotchas.md +115 -0
  319. package/skills/cloudflare/references/observability/patterns.md +105 -0
  320. package/skills/cloudflare/references/pages/README.md +88 -0
  321. package/skills/cloudflare/references/pages/api.md +204 -0
  322. package/skills/cloudflare/references/pages/configuration.md +201 -0
  323. package/skills/cloudflare/references/pages/gotchas.md +203 -0
  324. package/skills/cloudflare/references/pages/patterns.md +204 -0
  325. package/skills/cloudflare/references/pages-functions/README.md +98 -0
  326. package/skills/cloudflare/references/pages-functions/api.md +143 -0
  327. package/skills/cloudflare/references/pages-functions/configuration.md +122 -0
  328. package/skills/cloudflare/references/pages-functions/gotchas.md +94 -0
  329. package/skills/cloudflare/references/pages-functions/patterns.md +137 -0
  330. package/skills/cloudflare/references/pipelines/README.md +105 -0
  331. package/skills/cloudflare/references/pipelines/api.md +208 -0
  332. package/skills/cloudflare/references/pipelines/configuration.md +98 -0
  333. package/skills/cloudflare/references/pipelines/gotchas.md +80 -0
  334. package/skills/cloudflare/references/pipelines/patterns.md +87 -0
  335. package/skills/cloudflare/references/pulumi/README.md +100 -0
  336. package/skills/cloudflare/references/pulumi/api.md +200 -0
  337. package/skills/cloudflare/references/pulumi/configuration.md +198 -0
  338. package/skills/cloudflare/references/pulumi/gotchas.md +181 -0
  339. package/skills/cloudflare/references/pulumi/patterns.md +191 -0
  340. package/skills/cloudflare/references/queues/README.md +96 -0
  341. package/skills/cloudflare/references/queues/api.md +206 -0
  342. package/skills/cloudflare/references/queues/configuration.md +144 -0
  343. package/skills/cloudflare/references/queues/gotchas.md +206 -0
  344. package/skills/cloudflare/references/queues/patterns.md +220 -0
  345. package/skills/cloudflare/references/r2/README.md +95 -0
  346. package/skills/cloudflare/references/r2/api.md +200 -0
  347. package/skills/cloudflare/references/r2/configuration.md +165 -0
  348. package/skills/cloudflare/references/r2/gotchas.md +190 -0
  349. package/skills/cloudflare/references/r2/patterns.md +193 -0
  350. package/skills/cloudflare/references/r2-data-catalog/README.md +149 -0
  351. package/skills/cloudflare/references/r2-data-catalog/api.md +199 -0
  352. package/skills/cloudflare/references/r2-data-catalog/configuration.md +198 -0
  353. package/skills/cloudflare/references/r2-data-catalog/gotchas.md +170 -0
  354. package/skills/cloudflare/references/r2-data-catalog/patterns.md +191 -0
  355. package/skills/cloudflare/references/r2-sql/README.md +128 -0
  356. package/skills/cloudflare/references/r2-sql/SKILL.md.backup +512 -0
  357. package/skills/cloudflare/references/r2-sql/api.md +158 -0
  358. package/skills/cloudflare/references/r2-sql/configuration.md +147 -0
  359. package/skills/cloudflare/references/r2-sql/gotchas.md +212 -0
  360. package/skills/cloudflare/references/r2-sql/patterns.md +222 -0
  361. package/skills/cloudflare/references/realtime-sfu/README.md +65 -0
  362. package/skills/cloudflare/references/realtime-sfu/api.md +158 -0
  363. package/skills/cloudflare/references/realtime-sfu/configuration.md +137 -0
  364. package/skills/cloudflare/references/realtime-sfu/gotchas.md +133 -0
  365. package/skills/cloudflare/references/realtime-sfu/patterns.md +174 -0
  366. package/skills/cloudflare/references/realtimekit/README.md +113 -0
  367. package/skills/cloudflare/references/realtimekit/api.md +212 -0
  368. package/skills/cloudflare/references/realtimekit/configuration.md +203 -0
  369. package/skills/cloudflare/references/realtimekit/gotchas.md +169 -0
  370. package/skills/cloudflare/references/realtimekit/patterns.md +223 -0
  371. package/skills/cloudflare/references/sandbox/README.md +96 -0
  372. package/skills/cloudflare/references/sandbox/api.md +198 -0
  373. package/skills/cloudflare/references/sandbox/configuration.md +143 -0
  374. package/skills/cloudflare/references/sandbox/gotchas.md +194 -0
  375. package/skills/cloudflare/references/sandbox/patterns.md +201 -0
  376. package/skills/cloudflare/references/secrets-store/README.md +74 -0
  377. package/skills/cloudflare/references/secrets-store/api.md +200 -0
  378. package/skills/cloudflare/references/secrets-store/configuration.md +185 -0
  379. package/skills/cloudflare/references/secrets-store/gotchas.md +97 -0
  380. package/skills/cloudflare/references/secrets-store/patterns.md +207 -0
  381. package/skills/cloudflare/references/smart-placement/README.md +138 -0
  382. package/skills/cloudflare/references/smart-placement/api.md +183 -0
  383. package/skills/cloudflare/references/smart-placement/configuration.md +196 -0
  384. package/skills/cloudflare/references/smart-placement/gotchas.md +174 -0
  385. package/skills/cloudflare/references/smart-placement/patterns.md +183 -0
  386. package/skills/cloudflare/references/snippets/README.md +68 -0
  387. package/skills/cloudflare/references/snippets/api.md +198 -0
  388. package/skills/cloudflare/references/snippets/configuration.md +227 -0
  389. package/skills/cloudflare/references/snippets/gotchas.md +86 -0
  390. package/skills/cloudflare/references/snippets/patterns.md +135 -0
  391. package/skills/cloudflare/references/spectrum/README.md +52 -0
  392. package/skills/cloudflare/references/spectrum/api.md +181 -0
  393. package/skills/cloudflare/references/spectrum/configuration.md +194 -0
  394. package/skills/cloudflare/references/spectrum/gotchas.md +145 -0
  395. package/skills/cloudflare/references/spectrum/patterns.md +196 -0
  396. package/skills/cloudflare/references/static-assets/README.md +65 -0
  397. package/skills/cloudflare/references/static-assets/api.md +199 -0
  398. package/skills/cloudflare/references/static-assets/configuration.md +186 -0
  399. package/skills/cloudflare/references/static-assets/gotchas.md +162 -0
  400. package/skills/cloudflare/references/static-assets/patterns.md +189 -0
  401. package/skills/cloudflare/references/stream/README.md +114 -0
  402. package/skills/cloudflare/references/stream/api-live.md +195 -0
  403. package/skills/cloudflare/references/stream/api.md +199 -0
  404. package/skills/cloudflare/references/stream/configuration.md +141 -0
  405. package/skills/cloudflare/references/stream/gotchas.md +130 -0
  406. package/skills/cloudflare/references/stream/patterns.md +184 -0
  407. package/skills/cloudflare/references/tail-workers/README.md +89 -0
  408. package/skills/cloudflare/references/tail-workers/api.md +200 -0
  409. package/skills/cloudflare/references/tail-workers/configuration.md +176 -0
  410. package/skills/cloudflare/references/tail-workers/gotchas.md +192 -0
  411. package/skills/cloudflare/references/tail-workers/patterns.md +180 -0
  412. package/skills/cloudflare/references/terraform/README.md +102 -0
  413. package/skills/cloudflare/references/terraform/api.md +178 -0
  414. package/skills/cloudflare/references/terraform/configuration.md +197 -0
  415. package/skills/cloudflare/references/terraform/gotchas.md +150 -0
  416. package/skills/cloudflare/references/terraform/patterns.md +174 -0
  417. package/skills/cloudflare/references/tunnel/README.md +129 -0
  418. package/skills/cloudflare/references/tunnel/api.md +193 -0
  419. package/skills/cloudflare/references/tunnel/configuration.md +157 -0
  420. package/skills/cloudflare/references/tunnel/gotchas.md +147 -0
  421. package/skills/cloudflare/references/tunnel/networking.md +168 -0
  422. package/skills/cloudflare/references/tunnel/patterns.md +192 -0
  423. package/skills/cloudflare/references/turn/README.md +82 -0
  424. package/skills/cloudflare/references/turn/api.md +239 -0
  425. package/skills/cloudflare/references/turn/configuration.md +179 -0
  426. package/skills/cloudflare/references/turn/gotchas.md +231 -0
  427. package/skills/cloudflare/references/turn/patterns.md +213 -0
  428. package/skills/cloudflare/references/turnstile/README.md +99 -0
  429. package/skills/cloudflare/references/turnstile/api.md +240 -0
  430. package/skills/cloudflare/references/turnstile/configuration.md +222 -0
  431. package/skills/cloudflare/references/turnstile/gotchas.md +218 -0
  432. package/skills/cloudflare/references/turnstile/patterns.md +193 -0
  433. package/skills/cloudflare/references/vectorize/README.md +133 -0
  434. package/skills/cloudflare/references/vectorize/api.md +88 -0
  435. package/skills/cloudflare/references/vectorize/configuration.md +88 -0
  436. package/skills/cloudflare/references/vectorize/gotchas.md +76 -0
  437. package/skills/cloudflare/references/vectorize/patterns.md +90 -0
  438. package/skills/cloudflare/references/waf/README.md +113 -0
  439. package/skills/cloudflare/references/waf/api.md +202 -0
  440. package/skills/cloudflare/references/waf/configuration.md +203 -0
  441. package/skills/cloudflare/references/waf/gotchas.md +204 -0
  442. package/skills/cloudflare/references/waf/patterns.md +197 -0
  443. package/skills/cloudflare/references/web-analytics/README.md +141 -0
  444. package/skills/cloudflare/references/web-analytics/configuration.md +76 -0
  445. package/skills/cloudflare/references/web-analytics/gotchas.md +82 -0
  446. package/skills/cloudflare/references/web-analytics/integration.md +60 -0
  447. package/skills/cloudflare/references/web-analytics/patterns.md +91 -0
  448. package/skills/cloudflare/references/workerd/README.md +78 -0
  449. package/skills/cloudflare/references/workerd/api.md +185 -0
  450. package/skills/cloudflare/references/workerd/configuration.md +183 -0
  451. package/skills/cloudflare/references/workerd/gotchas.md +139 -0
  452. package/skills/cloudflare/references/workerd/patterns.md +192 -0
  453. package/skills/cloudflare/references/workers/README.md +108 -0
  454. package/skills/cloudflare/references/workers/api.md +195 -0
  455. package/skills/cloudflare/references/workers/configuration.md +185 -0
  456. package/skills/cloudflare/references/workers/frameworks.md +197 -0
  457. package/skills/cloudflare/references/workers/gotchas.md +136 -0
  458. package/skills/cloudflare/references/workers/patterns.md +198 -0
  459. package/skills/cloudflare/references/workers-ai/README.md +197 -0
  460. package/skills/cloudflare/references/workers-ai/api.md +112 -0
  461. package/skills/cloudflare/references/workers-ai/configuration.md +97 -0
  462. package/skills/cloudflare/references/workers-ai/gotchas.md +114 -0
  463. package/skills/cloudflare/references/workers-ai/patterns.md +120 -0
  464. package/skills/cloudflare/references/workers-for-platforms/README.md +89 -0
  465. package/skills/cloudflare/references/workers-for-platforms/api.md +196 -0
  466. package/skills/cloudflare/references/workers-for-platforms/configuration.md +167 -0
  467. package/skills/cloudflare/references/workers-for-platforms/gotchas.md +134 -0
  468. package/skills/cloudflare/references/workers-for-platforms/patterns.md +188 -0
  469. package/skills/cloudflare/references/workers-playground/README.md +127 -0
  470. package/skills/cloudflare/references/workers-playground/api.md +101 -0
  471. package/skills/cloudflare/references/workers-playground/configuration.md +163 -0
  472. package/skills/cloudflare/references/workers-playground/gotchas.md +88 -0
  473. package/skills/cloudflare/references/workers-playground/patterns.md +132 -0
  474. package/skills/cloudflare/references/workers-vpc/README.md +127 -0
  475. package/skills/cloudflare/references/workers-vpc/api.md +202 -0
  476. package/skills/cloudflare/references/workers-vpc/configuration.md +147 -0
  477. package/skills/cloudflare/references/workers-vpc/gotchas.md +167 -0
  478. package/skills/cloudflare/references/workers-vpc/patterns.md +209 -0
  479. package/skills/cloudflare/references/workflows/README.md +69 -0
  480. package/skills/cloudflare/references/workflows/api.md +185 -0
  481. package/skills/cloudflare/references/workflows/configuration.md +151 -0
  482. package/skills/cloudflare/references/workflows/gotchas.md +97 -0
  483. package/skills/cloudflare/references/workflows/patterns.md +175 -0
  484. package/skills/cloudflare/references/wrangler/README.md +135 -0
  485. package/skills/cloudflare/references/wrangler/api.md +188 -0
  486. package/skills/cloudflare/references/wrangler/configuration.md +197 -0
  487. package/skills/cloudflare/references/wrangler/gotchas.md +197 -0
  488. package/skills/cloudflare/references/wrangler/patterns.md +209 -0
  489. package/skills/cloudflare/references/zaraz/IMPLEMENTATION_SUMMARY.md +121 -0
  490. package/skills/cloudflare/references/zaraz/README.md +111 -0
  491. package/skills/cloudflare/references/zaraz/api.md +112 -0
  492. package/skills/cloudflare/references/zaraz/configuration.md +90 -0
  493. package/skills/cloudflare/references/zaraz/gotchas.md +81 -0
  494. package/skills/cloudflare/references/zaraz/patterns.md +74 -0
  495. package/skills/code-reviewer/SKILL.md +347 -0
  496. package/skills/code-simplifier/SKILL.md +124 -0
  497. package/skills/code-simplifier/agents/verdent.yaml +11 -0
  498. package/skills/code-simplifier/assets/icon-dark.png +0 -0
  499. package/skills/code-simplifier/assets/icon-light.png +0 -0
  500. package/skills/concept-modeler/SKILL.md +178 -0
  501. package/skills/context-engineering/SKILL.md +289 -0
  502. package/skills/copywriting/SKILL.md +252 -0
  503. package/skills/copywriting/evals/evals.json +111 -0
  504. package/skills/copywriting/references/copy-frameworks.md +344 -0
  505. package/skills/copywriting/references/natural-transitions.md +272 -0
  506. package/skills/core-web-vitals/SKILL.md +483 -0
  507. package/skills/core-web-vitals/references/LCP.md +208 -0
  508. package/skills/craft-authoring/SKILL.md +123 -0
  509. package/skills/create-design-system-rules/SKILL.md +530 -0
  510. package/skills/create-design-system-rules/agents/verdent.yaml +11 -0
  511. package/skills/create-design-system-rules/assets/icon-dark.png +0 -0
  512. package/skills/create-design-system-rules/assets/icon-light.png +0 -0
  513. package/skills/database-and-data-modeling/SKILL.md +515 -0
  514. package/skills/database-blueprints/SKILL.md +60 -0
  515. package/skills/database-blueprints/agents/verdent.yaml +13 -0
  516. package/skills/database-blueprints/assets/icon-dark.png +0 -0
  517. package/skills/database-blueprints/assets/icon-light.png +0 -0
  518. package/skills/database-blueprints/references/core-schema.md +68 -0
  519. package/skills/database-blueprints/references/migration-safety.md +55 -0
  520. package/skills/database-blueprints/references/mysql.md +50 -0
  521. package/skills/database-blueprints/references/prisma.md +47 -0
  522. package/skills/database-blueprints/references/supabase-postgres.md +63 -0
  523. package/skills/delivery-acceptance/SKILL.md +60 -0
  524. package/skills/delivery-acceptance/agents/verdent.yaml +12 -0
  525. package/skills/delivery-acceptance/assets/icon-dark.png +0 -0
  526. package/skills/delivery-acceptance/assets/icon-light.png +0 -0
  527. package/skills/delivery-acceptance/references/acceptance-checklist.md +44 -0
  528. package/skills/delivery-acceptance/references/mobile-print-file.md +19 -0
  529. package/skills/delivery-acceptance/references/playwright-smoke.md +35 -0
  530. package/skills/dependency-audit/SKILL.md +97 -0
  531. package/skills/deprecation-and-migration/SKILL.md +206 -0
  532. package/skills/design-reviewer/SKILL.md +189 -0
  533. package/skills/develop-web-game/LICENSE.txt +201 -0
  534. package/skills/develop-web-game/SKILL.md +154 -0
  535. package/skills/develop-web-game/agents/verdent.yaml +12 -0
  536. package/skills/develop-web-game/assets/game-small.svg +4 -0
  537. package/skills/develop-web-game/assets/game.png +0 -0
  538. package/skills/develop-web-game/assets/icon-dark.png +0 -0
  539. package/skills/develop-web-game/assets/icon-light.png +0 -0
  540. package/skills/develop-web-game/references/action_payloads.json +7 -0
  541. package/skills/develop-web-game/scripts/web_game_playwright_client.js +356 -0
  542. package/skills/dignified-python/SKILL.md +175 -0
  543. package/skills/dignified-python/agents/verdent.yaml +11 -0
  544. package/skills/dignified-python/assets/icon-dark.png +0 -0
  545. package/skills/dignified-python/assets/icon-light.png +0 -0
  546. package/skills/dignified-python/cli-patterns.md +156 -0
  547. package/skills/dignified-python/dignified-python-core.md +345 -0
  548. package/skills/dignified-python/references/README.md +319 -0
  549. package/skills/dignified-python/references/advanced/api-design.md +230 -0
  550. package/skills/dignified-python/references/advanced/exception-handling.md +185 -0
  551. package/skills/dignified-python/references/advanced/interfaces.md +183 -0
  552. package/skills/dignified-python/references/advanced/typing-advanced.md +158 -0
  553. package/skills/dignified-python/references/checklists.md +134 -0
  554. package/skills/dignified-python/references/module-design.md +214 -0
  555. package/skills/dignified-python/subprocess.md +99 -0
  556. package/skills/dignified-python/versions/python-3.10.md +520 -0
  557. package/skills/dignified-python/versions/python-3.11.md +538 -0
  558. package/skills/dignified-python/versions/python-3.12.md +664 -0
  559. package/skills/dignified-python/versions/python-3.13.md +657 -0
  560. package/skills/dispatching-parallel-agents/SKILL.md +182 -0
  561. package/skills/documentation-and-adrs/SKILL.md +278 -0
  562. package/skills/documentation-sync/SKILL.md +76 -0
  563. package/skills/documentation-writer/SKILL.md +50 -0
  564. package/skills/documentation-writer/agents/verdent.yaml +10 -0
  565. package/skills/documentation-writer/assets/icon-dark.png +0 -0
  566. package/skills/documentation-writer/assets/icon-light.png +0 -0
  567. package/skills/docx/SKILL.md +186 -0
  568. package/skills/docx/agents/verdent.yaml +9 -0
  569. package/skills/docx/assets/docx.png +0 -0
  570. package/skills/docx/assets/icon-dark.png +0 -0
  571. package/skills/docx/assets/icon-light.png +0 -0
  572. package/skills/docx/references/creation-guide.md +309 -0
  573. package/skills/docx/references/xml-editing-guide.md +237 -0
  574. package/skills/docx/scripts/docx_tool.py +164 -0
  575. package/skills/docx/scripts/fixtures/comments.xml +3 -0
  576. package/skills/docx/scripts/fixtures/commentsExtended.xml +3 -0
  577. package/skills/docx/scripts/fixtures/commentsExtensible.xml +3 -0
  578. package/skills/docx/scripts/fixtures/commentsIds.xml +3 -0
  579. package/skills/docx/scripts/fixtures/people.xml +3 -0
  580. package/skills/docx/scripts/internals/__init__.py +0 -0
  581. package/skills/docx/scripts/internals/content.py +307 -0
  582. package/skills/docx/scripts/internals/integrity/__init__.py +0 -0
  583. package/skills/docx/scripts/internals/integrity/foundation.py +559 -0
  584. package/skills/docx/scripts/internals/integrity/orchestrator.py +66 -0
  585. package/skills/docx/scripts/internals/integrity/revision_checker.py +181 -0
  586. package/skills/docx/scripts/internals/integrity/schema_checker.py +294 -0
  587. package/skills/docx/scripts/internals/packaging.py +193 -0
  588. package/skills/docx/scripts/internals/preprocessing/__init__.py +0 -0
  589. package/skills/docx/scripts/internals/preprocessing/revision_merger.py +193 -0
  590. package/skills/docx/scripts/internals/preprocessing/run_consolidator.py +179 -0
  591. package/skills/docx/scripts/internals/runtime/__init__.py +0 -0
  592. package/skills/docx/scripts/internals/runtime/converter.py +184 -0
  593. package/skills/docx/scripts/internals/runtime/renderer.py +60 -0
  594. package/skills/docx/scripts/internals/runtime/revision_acceptor.py +122 -0
  595. package/skills/docx/scripts/render_docx.py +296 -0
  596. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  597. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  598. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  599. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  600. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  601. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  602. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  603. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  604. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  605. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  606. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  607. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  608. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  609. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  610. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  611. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  612. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  613. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  614. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  615. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  616. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  617. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  618. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  619. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  620. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  621. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  622. package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  623. package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  624. package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  625. package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  626. package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  627. package/skills/docx/scripts/schemas/mce/mc.xsd +75 -0
  628. package/skills/docx/scripts/schemas/microsoft/wml-2010.xsd +560 -0
  629. package/skills/docx/scripts/schemas/microsoft/wml-2012.xsd +67 -0
  630. package/skills/docx/scripts/schemas/microsoft/wml-2018.xsd +14 -0
  631. package/skills/docx/scripts/schemas/microsoft/wml-cex-2018.xsd +20 -0
  632. package/skills/docx/scripts/schemas/microsoft/wml-cid-2016.xsd +13 -0
  633. package/skills/docx/scripts/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  634. package/skills/docx/scripts/schemas/microsoft/wml-symex-2015.xsd +8 -0
  635. package/skills/doubt-driven-development/SKILL.md +243 -0
  636. package/skills/e2e-testing-guide/SKILL.md +204 -0
  637. package/skills/emil-design-eng/SKILL.md +679 -0
  638. package/skills/environment-and-config/SKILL.md +849 -0
  639. package/skills/error-handling/SKILL.md +757 -0
  640. package/skills/excalidraw-diagram-generator/SKILL.md +618 -0
  641. package/skills/excalidraw-diagram-generator/agents/verdent.yaml +11 -0
  642. package/skills/excalidraw-diagram-generator/assets/icon-dark.png +0 -0
  643. package/skills/excalidraw-diagram-generator/assets/icon-light.png +0 -0
  644. package/skills/excalidraw-diagram-generator/references/element-types.md +497 -0
  645. package/skills/excalidraw-diagram-generator/references/excalidraw-schema.md +350 -0
  646. package/skills/excalidraw-diagram-generator/scripts/README.md +193 -0
  647. package/skills/excalidraw-diagram-generator/scripts/add-arrow.py +312 -0
  648. package/skills/excalidraw-diagram-generator/scripts/add-icon-to-diagram.py +404 -0
  649. package/skills/excalidraw-diagram-generator/scripts/split-excalidraw-library.py +183 -0
  650. package/skills/excalidraw-diagram-generator/templates/business-flow-swimlane-template.excalidraw +334 -0
  651. package/skills/excalidraw-diagram-generator/templates/class-diagram-template.excalidraw +558 -0
  652. package/skills/excalidraw-diagram-generator/templates/data-flow-diagram-template.excalidraw +279 -0
  653. package/skills/excalidraw-diagram-generator/templates/er-diagram-template.excalidraw +662 -0
  654. package/skills/excalidraw-diagram-generator/templates/flowchart-template.excalidraw +179 -0
  655. package/skills/excalidraw-diagram-generator/templates/mindmap-template.excalidraw +244 -0
  656. package/skills/excalidraw-diagram-generator/templates/relationship-template.excalidraw +145 -0
  657. package/skills/excalidraw-diagram-generator/templates/sequence-diagram-template.excalidraw +509 -0
  658. package/skills/executing-plans/SKILL.md +245 -0
  659. package/skills/figma/LICENSE.txt +202 -0
  660. package/skills/figma/SKILL.md +53 -0
  661. package/skills/figma/agents/verdent.yaml +7 -0
  662. package/skills/figma/assets/figma.png +0 -0
  663. package/skills/figma/assets/icon-dark.png +0 -0
  664. package/skills/figma/assets/icon-light.png +0 -0
  665. package/skills/figma/assets/icon.svg +28 -0
  666. package/skills/figma/references/figma-mcp-config.md +49 -0
  667. package/skills/figma/references/figma-tools-and-prompts.md +39 -0
  668. package/skills/figma-implement-design/LICENSE.txt +202 -0
  669. package/skills/figma-implement-design/SKILL.md +265 -0
  670. package/skills/figma-implement-design/agents/verdent.yaml +7 -0
  671. package/skills/figma-implement-design/assets/figma.png +0 -0
  672. package/skills/figma-implement-design/assets/icon-dark.png +0 -0
  673. package/skills/figma-implement-design/assets/icon-light.png +0 -0
  674. package/skills/figma-implement-design/assets/icon.svg +28 -0
  675. package/skills/find-docs/SKILL.md +164 -0
  676. package/skills/find-docs/agents/verdent.yaml +11 -0
  677. package/skills/find-docs/assets/icon-dark.png +0 -0
  678. package/skills/find-docs/assets/icon-light.png +0 -0
  679. package/skills/find-skills/SKILL.md +142 -0
  680. package/skills/firecrawl/SKILL.md +131 -0
  681. package/skills/firecrawl/agents/verdent.yaml +11 -0
  682. package/skills/firecrawl/assets/icon-dark.png +0 -0
  683. package/skills/firecrawl/assets/icon-light.png +0 -0
  684. package/skills/firecrawl/rules/install.md +63 -0
  685. package/skills/firecrawl/rules/security.md +26 -0
  686. package/skills/flutter-architecting-apps/SKILL.md +164 -0
  687. package/skills/flutter-architecting-apps/agents/verdent.yaml +11 -0
  688. package/skills/flutter-architecting-apps/assets/icon-dark.png +0 -0
  689. package/skills/flutter-architecting-apps/assets/icon-light.png +0 -0
  690. package/skills/frontend-design-pro/SKILL.md +328 -0
  691. package/skills/frontend-slides/LICENSE +21 -0
  692. package/skills/frontend-slides/SKILL.md +1169 -0
  693. package/skills/frontend-slides/STYLE_PRESETS.md +561 -0
  694. package/skills/frontend-slides/agents/verdent.yaml +7 -0
  695. package/skills/frontend-slides/assets/icon-dark.png +0 -0
  696. package/skills/frontend-slides/assets/icon-light.png +0 -0
  697. package/skills/gh-cli/SKILL.md +2192 -0
  698. package/skills/gh-cli/agents/verdent.yaml +12 -0
  699. package/skills/gh-cli/assets/icon-dark.png +0 -0
  700. package/skills/gh-cli/assets/icon-light.png +0 -0
  701. package/skills/git-commit/SKILL.md +129 -0
  702. package/skills/git-commit/agents/verdent.yaml +11 -0
  703. package/skills/git-commit/assets/icon-dark.png +0 -0
  704. package/skills/git-commit/assets/icon-light.png +0 -0
  705. package/skills/git-workflow-and-versioning/SKILL.md +300 -0
  706. package/skills/graphql-operations/SKILL.md +247 -0
  707. package/skills/graphql-operations/agents/verdent.yaml +11 -0
  708. package/skills/graphql-operations/assets/icon-dark.png +0 -0
  709. package/skills/graphql-operations/assets/icon-light.png +0 -0
  710. package/skills/graphql-operations/references/fragments.md +536 -0
  711. package/skills/graphql-operations/references/mutations.md +435 -0
  712. package/skills/graphql-operations/references/queries.md +504 -0
  713. package/skills/graphql-operations/references/tooling.md +404 -0
  714. package/skills/graphql-operations/references/variables.md +440 -0
  715. package/skills/graphql-schema/SKILL.md +175 -0
  716. package/skills/graphql-schema/agents/verdent.yaml +11 -0
  717. package/skills/graphql-schema/assets/icon-dark.png +0 -0
  718. package/skills/graphql-schema/assets/icon-light.png +0 -0
  719. package/skills/graphql-schema/references/errors.md +388 -0
  720. package/skills/graphql-schema/references/naming.md +400 -0
  721. package/skills/graphql-schema/references/pagination.md +396 -0
  722. package/skills/graphql-schema/references/security.md +484 -0
  723. package/skills/graphql-schema/references/types.md +445 -0
  724. package/skills/hugging-face-model-trainer/SKILL.md +722 -0
  725. package/skills/hugging-face-model-trainer/agents/verdent.yaml +12 -0
  726. package/skills/hugging-face-model-trainer/assets/icon-dark.png +0 -0
  727. package/skills/hugging-face-model-trainer/assets/icon-light.png +0 -0
  728. package/skills/hugging-face-model-trainer/references/gguf_conversion.md +296 -0
  729. package/skills/hugging-face-model-trainer/references/hardware_guide.md +283 -0
  730. package/skills/hugging-face-model-trainer/references/hub_saving.md +364 -0
  731. package/skills/hugging-face-model-trainer/references/local_training_macos.md +231 -0
  732. package/skills/hugging-face-model-trainer/references/reliability_principles.md +371 -0
  733. package/skills/hugging-face-model-trainer/references/trackio_guide.md +189 -0
  734. package/skills/hugging-face-model-trainer/references/training_methods.md +150 -0
  735. package/skills/hugging-face-model-trainer/references/training_patterns.md +203 -0
  736. package/skills/hugging-face-model-trainer/references/troubleshooting.md +282 -0
  737. package/skills/hugging-face-model-trainer/references/unsloth.md +313 -0
  738. package/skills/hugging-face-model-trainer/scripts/convert_to_gguf.py +424 -0
  739. package/skills/hugging-face-model-trainer/scripts/dataset_inspector.py +417 -0
  740. package/skills/hugging-face-model-trainer/scripts/estimate_cost.py +150 -0
  741. package/skills/hugging-face-model-trainer/scripts/train_dpo_example.py +106 -0
  742. package/skills/hugging-face-model-trainer/scripts/train_grpo_example.py +89 -0
  743. package/skills/hugging-face-model-trainer/scripts/train_sft_example.py +122 -0
  744. package/skills/hugging-face-model-trainer/scripts/unsloth_sft_example.py +512 -0
  745. package/skills/imagegen/LICENSE.txt +201 -0
  746. package/skills/imagegen/SKILL.md +180 -0
  747. package/skills/imagegen/agents/verdent.yaml +11 -0
  748. package/skills/imagegen/assets/icon-dark.png +0 -0
  749. package/skills/imagegen/assets/icon-light.png +0 -0
  750. package/skills/imagegen/assets/imagegen-small.svg +5 -0
  751. package/skills/imagegen/assets/imagegen.png +0 -0
  752. package/skills/imagegen/references/cli.md +132 -0
  753. package/skills/imagegen/references/image-api.md +36 -0
  754. package/skills/imagegen/references/network-notes.md +28 -0
  755. package/skills/imagegen/references/prompting.md +81 -0
  756. package/skills/imagegen/references/sample-prompts.md +384 -0
  757. package/skills/imagegen/scripts/image_gen.py +876 -0
  758. package/skills/impeccable/SKILL.md +450 -0
  759. package/skills/impeccable/reference/adapt.md +190 -0
  760. package/skills/impeccable/reference/animate.md +175 -0
  761. package/skills/impeccable/reference/audit.md +133 -0
  762. package/skills/impeccable/reference/bolder.md +113 -0
  763. package/skills/impeccable/reference/brand.md +114 -0
  764. package/skills/impeccable/reference/clarify.md +174 -0
  765. package/skills/impeccable/reference/cognitive-load.md +106 -0
  766. package/skills/impeccable/reference/color-and-contrast.md +105 -0
  767. package/skills/impeccable/reference/colorize.md +154 -0
  768. package/skills/impeccable/reference/craft.md +193 -0
  769. package/skills/impeccable/reference/critique.md +213 -0
  770. package/skills/impeccable/reference/delight.md +302 -0
  771. package/skills/impeccable/reference/distill.md +111 -0
  772. package/skills/impeccable/reference/document.md +427 -0
  773. package/skills/impeccable/reference/extract.md +69 -0
  774. package/skills/impeccable/reference/harden.md +347 -0
  775. package/skills/impeccable/reference/heuristics-scoring.md +234 -0
  776. package/skills/impeccable/reference/interaction-design.md +195 -0
  777. package/skills/impeccable/reference/layout.md +141 -0
  778. package/skills/impeccable/reference/live.md +622 -0
  779. package/skills/impeccable/reference/motion-design.md +109 -0
  780. package/skills/impeccable/reference/onboard.md +234 -0
  781. package/skills/impeccable/reference/optimize.md +258 -0
  782. package/skills/impeccable/reference/overdrive.md +130 -0
  783. package/skills/impeccable/reference/personas.md +179 -0
  784. package/skills/impeccable/reference/polish.md +233 -0
  785. package/skills/impeccable/reference/product.md +62 -0
  786. package/skills/impeccable/reference/quieter.md +99 -0
  787. package/skills/impeccable/reference/responsive-design.md +114 -0
  788. package/skills/impeccable/reference/shape.md +151 -0
  789. package/skills/impeccable/reference/spatial-design.md +100 -0
  790. package/skills/impeccable/reference/teach.md +156 -0
  791. package/skills/impeccable/reference/typeset.md +124 -0
  792. package/skills/impeccable/reference/typography.md +159 -0
  793. package/skills/impeccable/reference/ux-writing.md +107 -0
  794. package/skills/impeccable/references/A11Y-PATTERNS.md +233 -0
  795. package/skills/impeccable/references/WCAG.md +191 -0
  796. package/skills/impeccable/scripts/cleanup-deprecated.mjs +284 -0
  797. package/skills/impeccable/scripts/command-metadata.json +94 -0
  798. package/skills/impeccable/scripts/design-parser.mjs +820 -0
  799. package/skills/impeccable/scripts/detect-csp.mjs +198 -0
  800. package/skills/impeccable/scripts/impeccable-paths.mjs +105 -0
  801. package/skills/impeccable/scripts/is-generated.mjs +69 -0
  802. package/skills/impeccable/scripts/live-accept.mjs +595 -0
  803. package/skills/impeccable/scripts/live-browser-session.js +123 -0
  804. package/skills/impeccable/scripts/live-browser.js +4860 -0
  805. package/skills/impeccable/scripts/live-complete.mjs +75 -0
  806. package/skills/impeccable/scripts/live-completion.mjs +18 -0
  807. package/skills/impeccable/scripts/live-inject.mjs +446 -0
  808. package/skills/impeccable/scripts/live-poll.mjs +200 -0
  809. package/skills/impeccable/scripts/live-resume.mjs +48 -0
  810. package/skills/impeccable/scripts/live-server.mjs +836 -0
  811. package/skills/impeccable/scripts/live-session-store.mjs +254 -0
  812. package/skills/impeccable/scripts/live-status.mjs +47 -0
  813. package/skills/impeccable/scripts/live-wrap.mjs +632 -0
  814. package/skills/impeccable/scripts/live.mjs +247 -0
  815. package/skills/impeccable/scripts/load-context.mjs +141 -0
  816. package/skills/impeccable/scripts/modern-screenshot.umd.js +14 -0
  817. package/skills/impeccable/scripts/pin.mjs +214 -0
  818. package/skills/improve-codebase-architecture/DEEPENING.md +37 -0
  819. package/skills/improve-codebase-architecture/INTERFACE-DESIGN.md +44 -0
  820. package/skills/improve-codebase-architecture/LANGUAGE.md +53 -0
  821. package/skills/improve-codebase-architecture/SKILL.md +331 -0
  822. package/skills/incident-response/SKILL.md +97 -0
  823. package/skills/interview-me/SKILL.md +221 -0
  824. package/skills/knowledge-base-update/SKILL.md +90 -0
  825. package/skills/langchain-rag/SKILL.md +522 -0
  826. package/skills/langchain-rag/agents/verdent.yaml +12 -0
  827. package/skills/langchain-rag/assets/icon-dark.png +0 -0
  828. package/skills/langchain-rag/assets/icon-light.png +0 -0
  829. package/skills/linear/LICENSE.txt +202 -0
  830. package/skills/linear/SKILL.md +102 -0
  831. package/skills/linear/agents/verdent.yaml +7 -0
  832. package/skills/linear/assets/icon-dark.png +0 -0
  833. package/skills/linear/assets/icon-light.png +0 -0
  834. package/skills/linear/assets/linear.png +0 -0
  835. package/skills/localization-hub/ai-batch.md +23 -0
  836. package/skills/localization-hub/key-naming.md +15 -0
  837. package/skills/localization-hub/route-slugs.md +14 -0
  838. package/skills/mcp-builder/LICENSE.txt +202 -0
  839. package/skills/mcp-builder/SKILL.md +260 -0
  840. package/skills/mcp-builder/agents/verdent.yaml +7 -0
  841. package/skills/mcp-builder/assets/icon-dark.png +0 -0
  842. package/skills/mcp-builder/assets/icon-light.png +0 -0
  843. package/skills/mcp-builder/reference/mcp_best_practices.md +269 -0
  844. package/skills/mcp-builder/reference/node_mcp_server.md +980 -0
  845. package/skills/mcp-builder/reference/python_mcp_server.md +737 -0
  846. package/skills/mcp-builder/scripts/connections.py +151 -0
  847. package/skills/netlify-deploy/LICENSE.txt +201 -0
  848. package/skills/netlify-deploy/SKILL.md +261 -0
  849. package/skills/netlify-deploy/agents/verdent.yaml +7 -0
  850. package/skills/netlify-deploy/assets/icon-dark.png +0 -0
  851. package/skills/netlify-deploy/assets/icon-light.png +0 -0
  852. package/skills/netlify-deploy/assets/netlify.png +0 -0
  853. package/skills/netlify-deploy/references/cli-commands.md +162 -0
  854. package/skills/netlify-deploy/references/deployment-patterns.md +319 -0
  855. package/skills/netlify-deploy/references/netlify-toml.md +259 -0
  856. package/skills/nexus-mapper/SKILL.md +314 -0
  857. package/skills/nexus-mapper/references/language-customization.md +164 -0
  858. package/skills/nexus-mapper/references/output-schema.md +298 -0
  859. package/skills/nexus-mapper/references/probe-protocol.md +246 -0
  860. package/skills/nexus-mapper/scripts/extract_ast.py +705 -0
  861. package/skills/nexus-mapper/scripts/git_detective.py +194 -0
  862. package/skills/nexus-mapper/scripts/languages.json +127 -0
  863. package/skills/nexus-mapper/scripts/query_graph.py +556 -0
  864. package/skills/nexus-mapper/scripts/requirements.txt +6 -0
  865. package/skills/notion-spec-to-implementation/LICENSE.txt +7 -0
  866. package/skills/notion-spec-to-implementation/SKILL.md +67 -0
  867. package/skills/notion-spec-to-implementation/agents/verdent.yaml +7 -0
  868. package/skills/notion-spec-to-implementation/assets/icon-dark.png +0 -0
  869. package/skills/notion-spec-to-implementation/assets/icon-light.png +0 -0
  870. package/skills/notion-spec-to-implementation/assets/notion.png +0 -0
  871. package/skills/notion-spec-to-implementation/evaluations/README.md +130 -0
  872. package/skills/notion-spec-to-implementation/evaluations/basic-spec-implementation.json +31 -0
  873. package/skills/notion-spec-to-implementation/evaluations/spec-to-tasks.json +34 -0
  874. package/skills/notion-spec-to-implementation/examples/api-feature.md +511 -0
  875. package/skills/notion-spec-to-implementation/examples/database-migration.md +89 -0
  876. package/skills/notion-spec-to-implementation/examples/ui-component.md +78 -0
  877. package/skills/notion-spec-to-implementation/reference/milestone-summary-template.md +31 -0
  878. package/skills/notion-spec-to-implementation/reference/progress-tracking.md +507 -0
  879. package/skills/notion-spec-to-implementation/reference/progress-update-template.md +29 -0
  880. package/skills/notion-spec-to-implementation/reference/quick-implementation-plan.md +30 -0
  881. package/skills/notion-spec-to-implementation/reference/spec-parsing.md +406 -0
  882. package/skills/notion-spec-to-implementation/reference/standard-implementation-plan.md +170 -0
  883. package/skills/notion-spec-to-implementation/reference/task-creation-template.md +40 -0
  884. package/skills/notion-spec-to-implementation/reference/task-creation.md +467 -0
  885. package/skills/pdf/LICENSE.txt +201 -0
  886. package/skills/pdf/SKILL.md +715 -0
  887. package/skills/pdf/agents/verdent.yaml +9 -0
  888. package/skills/pdf/assets/icon-dark.png +0 -0
  889. package/skills/pdf/assets/icon-light.png +0 -0
  890. package/skills/pdf/assets/pdf.png +0 -0
  891. package/skills/pdf/reference.md +221 -0
  892. package/skills/performance/SKILL.md +400 -0
  893. package/skills/playwright/LICENSE.txt +201 -0
  894. package/skills/playwright/NOTICE.txt +14 -0
  895. package/skills/playwright/SKILL.md +151 -0
  896. package/skills/playwright/agents/verdent.yaml +7 -0
  897. package/skills/playwright/assets/icon-dark.png +0 -0
  898. package/skills/playwright/assets/icon-light.png +0 -0
  899. package/skills/playwright/assets/playwright.png +0 -0
  900. package/skills/playwright/references/cli.md +116 -0
  901. package/skills/playwright/references/workflows.md +95 -0
  902. package/skills/playwright/scripts/playwright_cli.sh +25 -0
  903. package/skills/playwriter/SKILL.md +69 -0
  904. package/skills/playwriter/agents/verdent.yaml +7 -0
  905. package/skills/playwriter/assets/icon-dark.png +0 -0
  906. package/skills/playwriter/assets/icon-light.png +0 -0
  907. package/skills/pptx/SKILL.md +302 -0
  908. package/skills/pptx/agents/verdent.yaml +9 -0
  909. package/skills/pptx/assets/icon-dark.png +0 -0
  910. package/skills/pptx/assets/icon-light.png +0 -0
  911. package/skills/pptx/references/generate-with-js.md +412 -0
  912. package/skills/pptx/references/modify-workflow.md +157 -0
  913. package/skills/pptx/references/python-charts.md +91 -0
  914. package/skills/pptx/scripts/check_env.py +207 -0
  915. package/skills/pptx/scripts/deck.py +161 -0
  916. package/skills/pptx/scripts/internals/__init__.py +0 -0
  917. package/skills/pptx/scripts/internals/cleanup.py +194 -0
  918. package/skills/pptx/scripts/internals/content.py +62 -0
  919. package/skills/pptx/scripts/internals/create.py +122 -0
  920. package/skills/pptx/scripts/internals/gridshot.py +181 -0
  921. package/skills/pptx/scripts/internals/imaging.py +77 -0
  922. package/skills/pptx/scripts/internals/integrity/__init__.py +0 -0
  923. package/skills/pptx/scripts/internals/integrity/checks.py +318 -0
  924. package/skills/pptx/scripts/internals/packaging.py +127 -0
  925. package/skills/pptx/scripts/internals/runtime/__init__.py +0 -0
  926. package/skills/pptx/scripts/internals/runtime/converter.py +154 -0
  927. package/skills/pptx/scripts/internals/structure.py +162 -0
  928. package/skills/pr-creator/SKILL.md +98 -0
  929. package/skills/pr-creator/agents/verdent.yaml +11 -0
  930. package/skills/pr-creator/assets/icon-dark.png +0 -0
  931. package/skills/pr-creator/assets/icon-light.png +0 -0
  932. package/skills/prd/SKILL.md +148 -0
  933. package/skills/prd/agents/verdent.yaml +11 -0
  934. package/skills/prd/assets/icon-dark.png +0 -0
  935. package/skills/prd/assets/icon-light.png +0 -0
  936. package/skills/prismx-skill-gateway/SKILL.md +186 -0
  937. package/skills/prismx-skill-gateway/references/installed-skills.md +38 -0
  938. package/skills/prismx-skills-catalog/SKILL.md +51 -0
  939. package/skills/prismx-skills-catalog/references/inventory.json +1092 -0
  940. package/skills/prompt-enhancer/SKILL.md +90 -0
  941. package/skills/react-native-best-practices/SKILL.md +241 -0
  942. package/skills/react-native-best-practices/agents/verdent.yaml +11 -0
  943. package/skills/react-native-best-practices/assets/icon-dark.png +0 -0
  944. package/skills/react-native-best-practices/assets/icon-light.png +0 -0
  945. package/skills/react-native-best-practices/references/bundle-analyze-app.md +211 -0
  946. package/skills/react-native-best-practices/references/bundle-analyze-js.md +262 -0
  947. package/skills/react-native-best-practices/references/bundle-barrel-exports.md +248 -0
  948. package/skills/react-native-best-practices/references/bundle-code-splitting.md +224 -0
  949. package/skills/react-native-best-practices/references/bundle-hermes-mmap.md +167 -0
  950. package/skills/react-native-best-practices/references/bundle-library-size.md +177 -0
  951. package/skills/react-native-best-practices/references/bundle-native-assets.md +214 -0
  952. package/skills/react-native-best-practices/references/bundle-r8-android.md +225 -0
  953. package/skills/react-native-best-practices/references/bundle-tree-shaking.md +214 -0
  954. package/skills/react-native-best-practices/references/images/bundle-treemap-source-map-explorer.png +0 -0
  955. package/skills/react-native-best-practices/references/images/controlled-textinput-pingpong.png +0 -0
  956. package/skills/react-native-best-practices/references/images/devtools-flamegraph.png +0 -0
  957. package/skills/react-native-best-practices/references/images/emerge-xray-ios.png +0 -0
  958. package/skills/react-native-best-practices/references/images/expo-atlas-treemap.png +0 -0
  959. package/skills/react-native-best-practices/references/images/flashlight-flatlist-vs-flashlist.png +0 -0
  960. package/skills/react-native-best-practices/references/images/fps-drop-graph.png +0 -0
  961. package/skills/react-native-best-practices/references/images/memory-heap-snapshot.png +0 -0
  962. package/skills/react-native-best-practices/references/images/tti-warm-start-diagram.png +0 -0
  963. package/skills/react-native-best-practices/references/images/view-hierarchy-flattening.png +0 -0
  964. package/skills/react-native-best-practices/references/images/xcode-instruments-templates.png +0 -0
  965. package/skills/react-native-best-practices/references/images/xcode-thread-view.png +0 -0
  966. package/skills/react-native-best-practices/references/js-animations-reanimated.md +254 -0
  967. package/skills/react-native-best-practices/references/js-atomic-state.md +245 -0
  968. package/skills/react-native-best-practices/references/js-concurrent-react.md +236 -0
  969. package/skills/react-native-best-practices/references/js-lists-flatlist-flashlist.md +236 -0
  970. package/skills/react-native-best-practices/references/js-measure-fps.md +180 -0
  971. package/skills/react-native-best-practices/references/js-memory-leaks.md +205 -0
  972. package/skills/react-native-best-practices/references/js-profile-react.md +161 -0
  973. package/skills/react-native-best-practices/references/js-react-compiler.md +368 -0
  974. package/skills/react-native-best-practices/references/js-uncontrolled-components.md +216 -0
  975. package/skills/react-native-best-practices/references/native-android-16kb-alignment.md +113 -0
  976. package/skills/react-native-best-practices/references/native-measure-tti.md +262 -0
  977. package/skills/react-native-best-practices/references/native-memory-leaks.md +240 -0
  978. package/skills/react-native-best-practices/references/native-memory-patterns.md +274 -0
  979. package/skills/react-native-best-practices/references/native-platform-setup.md +110 -0
  980. package/skills/react-native-best-practices/references/native-profiling.md +176 -0
  981. package/skills/react-native-best-practices/references/native-sdks-over-polyfills.md +183 -0
  982. package/skills/react-native-best-practices/references/native-threading-model.md +234 -0
  983. package/skills/react-native-best-practices/references/native-turbo-modules.md +292 -0
  984. package/skills/react-native-best-practices/references/native-view-flattening.md +201 -0
  985. package/skills/redis-development/FULL_GUIDE.md +2216 -0
  986. package/skills/redis-development/SKILL.md +124 -0
  987. package/skills/redis-development/agents/verdent.yaml +12 -0
  988. package/skills/redis-development/assets/icon-dark.png +0 -0
  989. package/skills/redis-development/assets/icon-light.png +0 -0
  990. package/skills/redis-development/assets/logo.png +0 -0
  991. package/skills/redis-development/rules/_contributing.md +97 -0
  992. package/skills/redis-development/rules/_sections.md +50 -0
  993. package/skills/redis-development/rules/_template.md +52 -0
  994. package/skills/redis-development/rules/cluster-hash-tags.md +78 -0
  995. package/skills/redis-development/rules/cluster-read-replicas.md +55 -0
  996. package/skills/redis-development/rules/conn-blocking.md +75 -0
  997. package/skills/redis-development/rules/conn-client-cache.md +70 -0
  998. package/skills/redis-development/rules/conn-pipelining.md +58 -0
  999. package/skills/redis-development/rules/conn-pooling.md +71 -0
  1000. package/skills/redis-development/rules/conn-timeouts.md +41 -0
  1001. package/skills/redis-development/rules/data-choose-structure.md +76 -0
  1002. package/skills/redis-development/rules/data-hash-field-expiry.md +62 -0
  1003. package/skills/redis-development/rules/data-incr.md +76 -0
  1004. package/skills/redis-development/rules/data-key-naming.md +62 -0
  1005. package/skills/redis-development/rules/data-transactions.md +74 -0
  1006. package/skills/redis-development/rules/json-partial-updates.md +49 -0
  1007. package/skills/redis-development/rules/json-vs-hash.md +105 -0
  1008. package/skills/redis-development/rules/observe-commands.md +53 -0
  1009. package/skills/redis-development/rules/observe-metrics.md +39 -0
  1010. package/skills/redis-development/rules/ram-limits.md +42 -0
  1011. package/skills/redis-development/rules/ram-ttl.md +55 -0
  1012. package/skills/redis-development/rules/rqe-dialect.md +47 -0
  1013. package/skills/redis-development/rules/rqe-field-types.md +81 -0
  1014. package/skills/redis-development/rules/rqe-index-creation.md +73 -0
  1015. package/skills/redis-development/rules/rqe-index-management.md +49 -0
  1016. package/skills/redis-development/rules/rqe-query-optimization.md +49 -0
  1017. package/skills/redis-development/rules/rqe-skip-initial-scan.md +82 -0
  1018. package/skills/redis-development/rules/security-acls.md +41 -0
  1019. package/skills/redis-development/rules/security-auth.md +78 -0
  1020. package/skills/redis-development/rules/security-network.md +52 -0
  1021. package/skills/redis-development/rules/semantic-cache-best-practices.md +72 -0
  1022. package/skills/redis-development/rules/semantic-cache-langcache-usage.md +86 -0
  1023. package/skills/redis-development/rules/stream-choosing-pattern.md +44 -0
  1024. package/skills/redis-development/rules/vector-algorithm-choice.md +60 -0
  1025. package/skills/redis-development/rules/vector-hybrid-search.md +49 -0
  1026. package/skills/redis-development/rules/vector-index-creation.md +83 -0
  1027. package/skills/redis-development/rules/vector-rag-pattern.md +51 -0
  1028. package/skills/refactor/agents/verdent.yaml +11 -0
  1029. package/skills/refactor/assets/icon-dark.png +0 -0
  1030. package/skills/refactor/assets/icon-light.png +0 -0
  1031. package/skills/runtime-inspector/SKILL.md +99 -0
  1032. package/skills/schema-markup/SKILL.md +179 -0
  1033. package/skills/schema-markup/evals/evals.json +87 -0
  1034. package/skills/schema-markup/references/schema-examples.md +398 -0
  1035. package/skills/screenshot/LICENSE.txt +201 -0
  1036. package/skills/screenshot/SKILL.md +271 -0
  1037. package/skills/screenshot/agents/verdent.yaml +7 -0
  1038. package/skills/screenshot/assets/icon-dark.png +0 -0
  1039. package/skills/screenshot/assets/icon-light.png +0 -0
  1040. package/skills/screenshot/assets/screenshot.png +0 -0
  1041. package/skills/screenshot/scripts/ensure_macos_permissions.sh +54 -0
  1042. package/skills/screenshot/scripts/macos_display_info.swift +22 -0
  1043. package/skills/screenshot/scripts/macos_permissions.swift +40 -0
  1044. package/skills/screenshot/scripts/macos_window_info.swift +126 -0
  1045. package/skills/screenshot/scripts/take_screenshot.ps1 +163 -0
  1046. package/skills/screenshot/scripts/take_screenshot.py +585 -0
  1047. package/skills/security-and-hardening/SKILL.md +349 -0
  1048. package/skills/security-best-practices/LICENSE.txt +201 -0
  1049. package/skills/security-best-practices/SKILL.md +91 -0
  1050. package/skills/security-best-practices/agents/verdent.yaml +7 -0
  1051. package/skills/security-best-practices/assets/icon-dark.png +0 -0
  1052. package/skills/security-best-practices/assets/icon-light.png +0 -0
  1053. package/skills/security-best-practices/references/golang-general-backend-security.md +988 -0
  1054. package/skills/security-best-practices/references/javascript-express-web-server-security.md +1151 -0
  1055. package/skills/security-best-practices/references/javascript-general-web-frontend-security.md +725 -0
  1056. package/skills/security-best-practices/references/javascript-jquery-web-frontend-security.md +672 -0
  1057. package/skills/security-best-practices/references/javascript-typescript-nextjs-web-server-security.md +1138 -0
  1058. package/skills/security-best-practices/references/javascript-typescript-react-web-frontend-security.md +975 -0
  1059. package/skills/security-best-practices/references/javascript-typescript-vue-web-frontend-security.md +789 -0
  1060. package/skills/security-best-practices/references/python-django-web-server-security.md +880 -0
  1061. package/skills/security-best-practices/references/python-fastapi-web-server-security.md +1030 -0
  1062. package/skills/security-best-practices/references/python-flask-web-server-security.md +835 -0
  1063. package/skills/security-ownership-map/LICENSE.txt +201 -0
  1064. package/skills/security-ownership-map/SKILL.md +212 -0
  1065. package/skills/security-ownership-map/agents/verdent.yaml +12 -0
  1066. package/skills/security-ownership-map/assets/icon-dark.png +0 -0
  1067. package/skills/security-ownership-map/assets/icon-light.png +0 -0
  1068. package/skills/security-ownership-map/references/neo4j-import.md +60 -0
  1069. package/skills/security-ownership-map/scripts/build_ownership_map.py +956 -0
  1070. package/skills/security-ownership-map/scripts/community_maintainers.py +544 -0
  1071. package/skills/security-ownership-map/scripts/query_ownership.py +483 -0
  1072. package/skills/security-ownership-map/scripts/run_ownership_map.py +200 -0
  1073. package/skills/security-threat-model/LICENSE.txt +201 -0
  1074. package/skills/security-threat-model/SKILL.md +94 -0
  1075. package/skills/security-threat-model/agents/verdent.yaml +7 -0
  1076. package/skills/security-threat-model/assets/icon-dark.png +0 -0
  1077. package/skills/security-threat-model/assets/icon-light.png +0 -0
  1078. package/skills/security-threat-model/references/prompt-template.md +254 -0
  1079. package/skills/security-threat-model/references/security-controls-and-assets.md +35 -0
  1080. package/skills/seo-audit/SKILL.md +527 -0
  1081. package/skills/seo-audit/evals/evals.json +136 -0
  1082. package/skills/seo-audit/references/ai-writing-detection.md +200 -0
  1083. package/skills/seo-audit/references/international-seo.md +230 -0
  1084. package/skills/sequential-thinking/SKILL.md +224 -0
  1085. package/skills/session-context-primer/SKILL.md +69 -0
  1086. package/skills/shipping-and-launch/SKILL.md +309 -0
  1087. package/skills/source-driven-development/SKILL.md +194 -0
  1088. package/skills/spec-writer/SKILL.md +200 -0
  1089. package/skills/speech/LICENSE.txt +201 -0
  1090. package/skills/speech/SKILL.md +150 -0
  1091. package/skills/speech/agents/verdent.yaml +12 -0
  1092. package/skills/speech/assets/icon-dark.png +0 -0
  1093. package/skills/speech/assets/icon-light.png +0 -0
  1094. package/skills/speech/assets/speech-small.svg +3 -0
  1095. package/skills/speech/assets/speech.png +0 -0
  1096. package/skills/speech/references/accessibility.md +32 -0
  1097. package/skills/speech/references/audio-api.md +31 -0
  1098. package/skills/speech/references/cli.md +99 -0
  1099. package/skills/speech/references/ivr.md +32 -0
  1100. package/skills/speech/references/narration.md +31 -0
  1101. package/skills/speech/references/network-notes.md +28 -0
  1102. package/skills/speech/references/prompting.md +38 -0
  1103. package/skills/speech/references/sample-prompts.md +44 -0
  1104. package/skills/speech/references/voice-directions.md +80 -0
  1105. package/skills/speech/references/voiceover.md +31 -0
  1106. package/skills/speech/scripts/text_to_speech.py +528 -0
  1107. package/skills/system-architect/SKILL.md +677 -0
  1108. package/skills/system-designer/SKILL.md +601 -0
  1109. package/skills/systematic-debugging/CREATION-LOG.md +119 -0
  1110. package/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  1111. package/skills/systematic-debugging/condition-based-waiting.md +115 -0
  1112. package/skills/systematic-debugging/defense-in-depth.md +122 -0
  1113. package/skills/systematic-debugging/find-polluter.sh +63 -0
  1114. package/skills/systematic-debugging/root-cause-tracing.md +169 -0
  1115. package/skills/systematic-debugging/test-academic.md +14 -0
  1116. package/skills/systematic-debugging/test-pressure-1.md +58 -0
  1117. package/skills/systematic-debugging/test-pressure-2.md +68 -0
  1118. package/skills/systematic-debugging/test-pressure-3.md +69 -0
  1119. package/skills/task-planner/SKILL.md +699 -0
  1120. package/skills/task-reviewer/SKILL.md +387 -0
  1121. package/skills/task-skill-router/SKILL.md +105 -0
  1122. package/skills/tech-evaluator/SKILL.md +181 -0
  1123. package/skills/tech-evaluator/references/ADR_TEMPLATE.md +80 -0
  1124. package/skills/tech-evaluator/scripts/evaluate_matrix.py +190 -0
  1125. package/skills/test-driven-development/SKILL.md +383 -0
  1126. package/skills/test-driven-development/testing-anti-patterns.md +299 -0
  1127. package/skills/theme-factory/LICENSE.txt +202 -0
  1128. package/skills/theme-factory/SKILL.md +64 -0
  1129. package/skills/theme-factory/agents/verdent.yaml +11 -0
  1130. package/skills/theme-factory/assets/icon-dark.png +0 -0
  1131. package/skills/theme-factory/assets/icon-light.png +0 -0
  1132. package/skills/theme-factory/theme-showcase.pdf +0 -0
  1133. package/skills/theme-factory/themes/arctic-frost.md +19 -0
  1134. package/skills/theme-factory/themes/botanical-garden.md +19 -0
  1135. package/skills/theme-factory/themes/desert-rose.md +19 -0
  1136. package/skills/theme-factory/themes/forest-canopy.md +19 -0
  1137. package/skills/theme-factory/themes/golden-hour.md +19 -0
  1138. package/skills/theme-factory/themes/midnight-galaxy.md +19 -0
  1139. package/skills/theme-factory/themes/modern-minimalist.md +19 -0
  1140. package/skills/theme-factory/themes/ocean-depths.md +19 -0
  1141. package/skills/theme-factory/themes/sunset-boulevard.md +19 -0
  1142. package/skills/theme-factory/themes/tech-innovation.md +19 -0
  1143. package/skills/transcribe/LICENSE.txt +201 -0
  1144. package/skills/transcribe/SKILL.md +86 -0
  1145. package/skills/transcribe/agents/verdent.yaml +12 -0
  1146. package/skills/transcribe/assets/icon-dark.png +0 -0
  1147. package/skills/transcribe/assets/icon-light.png +0 -0
  1148. package/skills/transcribe/assets/transcribe-small.svg +3 -0
  1149. package/skills/transcribe/assets/transcribe.png +0 -0
  1150. package/skills/transcribe/references/api.md +8 -0
  1151. package/skills/transcribe/scripts/transcribe_diarize.py +276 -0
  1152. package/skills/vercel-composition-patterns/FULL_GUIDE.md +946 -0
  1153. package/skills/vercel-composition-patterns/SKILL.md +92 -0
  1154. package/skills/vercel-composition-patterns/agents/verdent.yaml +12 -0
  1155. package/skills/vercel-composition-patterns/assets/icon-dark.png +0 -0
  1156. package/skills/vercel-composition-patterns/assets/icon-light.png +0 -0
  1157. package/skills/vercel-composition-patterns/rules/_sections.md +29 -0
  1158. package/skills/vercel-composition-patterns/rules/_template.md +24 -0
  1159. package/skills/vercel-composition-patterns/rules/architecture-avoid-boolean-props.md +100 -0
  1160. package/skills/vercel-composition-patterns/rules/architecture-compound-components.md +112 -0
  1161. package/skills/vercel-composition-patterns/rules/patterns-children-over-render-props.md +87 -0
  1162. package/skills/vercel-composition-patterns/rules/patterns-explicit-variants.md +100 -0
  1163. package/skills/vercel-composition-patterns/rules/react19-no-forwardref.md +42 -0
  1164. package/skills/vercel-composition-patterns/rules/state-context-interface.md +191 -0
  1165. package/skills/vercel-composition-patterns/rules/state-decouple-implementation.md +113 -0
  1166. package/skills/vercel-composition-patterns/rules/state-lift-state.md +125 -0
  1167. package/skills/vercel-deploy/LICENSE.txt +21 -0
  1168. package/skills/vercel-deploy/SKILL.md +75 -0
  1169. package/skills/vercel-deploy/agents/verdent.yaml +7 -0
  1170. package/skills/vercel-deploy/assets/icon-dark.png +0 -0
  1171. package/skills/vercel-deploy/assets/icon-light.png +0 -0
  1172. package/skills/vercel-deploy/assets/vercel.png +0 -0
  1173. package/skills/vercel-deploy/scripts/deploy.sh +301 -0
  1174. package/skills/vercel-react-best-practices/FULL_GUIDE.md +3254 -0
  1175. package/skills/vercel-react-best-practices/SKILL.md +144 -0
  1176. package/skills/vercel-react-best-practices/agents/verdent.yaml +12 -0
  1177. package/skills/vercel-react-best-practices/assets/icon-dark.png +0 -0
  1178. package/skills/vercel-react-best-practices/assets/icon-light.png +0 -0
  1179. package/skills/vercel-react-best-practices/rules/_sections.md +46 -0
  1180. package/skills/vercel-react-best-practices/rules/_template.md +28 -0
  1181. package/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  1182. package/skills/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
  1183. package/skills/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
  1184. package/skills/vercel-react-best-practices/rules/async-api-routes.md +38 -0
  1185. package/skills/vercel-react-best-practices/rules/async-defer-await.md +80 -0
  1186. package/skills/vercel-react-best-practices/rules/async-dependencies.md +51 -0
  1187. package/skills/vercel-react-best-practices/rules/async-parallel.md +28 -0
  1188. package/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
  1189. package/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +59 -0
  1190. package/skills/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
  1191. package/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
  1192. package/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
  1193. package/skills/vercel-react-best-practices/rules/bundle-preload.md +50 -0
  1194. package/skills/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
  1195. package/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
  1196. package/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
  1197. package/skills/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
  1198. package/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
  1199. package/skills/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
  1200. package/skills/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
  1201. package/skills/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
  1202. package/skills/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
  1203. package/skills/vercel-react-best-practices/rules/js-early-exit.md +50 -0
  1204. package/skills/vercel-react-best-practices/rules/js-flatmap-filter.md +60 -0
  1205. package/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
  1206. package/skills/vercel-react-best-practices/rules/js-index-maps.md +37 -0
  1207. package/skills/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
  1208. package/skills/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
  1209. package/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
  1210. package/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
  1211. package/skills/vercel-react-best-practices/rules/rendering-activity.md +26 -0
  1212. package/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
  1213. package/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
  1214. package/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
  1215. package/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
  1216. package/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
  1217. package/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
  1218. package/skills/vercel-react-best-practices/rules/rendering-resource-hints.md +85 -0
  1219. package/skills/vercel-react-best-practices/rules/rendering-script-defer-async.md +68 -0
  1220. package/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
  1221. package/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
  1222. package/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
  1223. package/skills/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
  1224. package/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
  1225. package/skills/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
  1226. package/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
  1227. package/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
  1228. package/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
  1229. package/skills/vercel-react-best-practices/rules/rerender-memo.md +44 -0
  1230. package/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
  1231. package/skills/vercel-react-best-practices/rules/rerender-no-inline-components.md +82 -0
  1232. package/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
  1233. package/skills/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
  1234. package/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
  1235. package/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
  1236. package/skills/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
  1237. package/skills/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
  1238. package/skills/vercel-react-best-practices/rules/server-cache-react.md +76 -0
  1239. package/skills/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
  1240. package/skills/vercel-react-best-practices/rules/server-hoist-static-io.md +142 -0
  1241. package/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
  1242. package/skills/vercel-react-best-practices/rules/server-serialization.md +38 -0
  1243. package/skills/verdent-image-cli/SKILL.md +218 -0
  1244. package/skills/verdent-image-cli/agents/verdent.yaml +11 -0
  1245. package/skills/verdent-image-cli/assets/icon-dark.png +0 -0
  1246. package/skills/verdent-image-cli/assets/icon-light.png +0 -0
  1247. package/skills/verdent-skills-catalog/SKILL.md +72 -0
  1248. package/skills/verdent-skills-catalog/references/categories.json +158 -0
  1249. package/skills/verdent-skills-catalog/references/inventory.json +493 -0
  1250. package/skills/verification-before-completion/SKILL.md +139 -0
  1251. package/skills/web-quality-audit/SKILL.md +172 -0
  1252. package/skills/web-quality-audit/scripts/analyze.sh +113 -0
  1253. package/skills/webapp-testing/LICENSE.txt +202 -0
  1254. package/skills/webapp-testing/SKILL.md +302 -0
  1255. package/skills/webapp-testing/examples/console_logging.py +35 -0
  1256. package/skills/webapp-testing/examples/element_discovery.py +40 -0
  1257. package/skills/webapp-testing/examples/static_html_automation.py +33 -0
  1258. package/skills/webapp-testing/scripts/with_server.py +110 -0
  1259. package/skills/workers-best-practices/SKILL.md +132 -0
  1260. package/skills/workers-best-practices/agents/verdent.yaml +11 -0
  1261. package/skills/workers-best-practices/assets/icon-dark.png +0 -0
  1262. package/skills/workers-best-practices/assets/icon-light.png +0 -0
  1263. package/skills/workers-best-practices/references/review.md +174 -0
  1264. package/skills/workers-best-practices/references/rules.md +463 -0
  1265. package/skills/xlsx/SKILL.md +318 -0
  1266. package/skills/xlsx/agents/verdent.yaml +9 -0
  1267. package/skills/xlsx/assets/icon-dark.png +0 -0
  1268. package/skills/xlsx/assets/icon-light.png +0 -0
  1269. package/skills/xlsx/assets/spreadsheet.png +0 -0
  1270. package/skills/xlsx/references/advanced-analysis.md +272 -0
  1271. package/skills/xlsx/references/examples/openpyxl/create_basic_spreadsheet.py +51 -0
  1272. package/skills/xlsx/references/examples/openpyxl/create_spreadsheet_with_styling.py +96 -0
  1273. package/skills/xlsx/references/examples/openpyxl/read_existing_spreadsheet.py +59 -0
  1274. package/skills/xlsx/references/examples/openpyxl/styling_spreadsheet.py +79 -0
  1275. package/skills/xlsx/scripts/formula_engine.py +219 -0
  1276. package/skills/xlsx/scripts/profile.py +62 -0
  1277. package/src/commands/doctor.js +9 -0
  1278. package/src/commands/feedback.js +29 -0
  1279. package/src/commands/init.js +39 -3
  1280. package/src/commands/pipeline.js +31 -0
  1281. package/src/commands/providers.js +54 -0
  1282. package/src/commands/recover.js +62 -0
  1283. package/src/commands/route.js +7 -0
  1284. package/src/commands/scaffold.js +7 -1
  1285. package/src/commands/skill.js +141 -0
  1286. package/src/commands/stack.js +97 -0
  1287. package/src/commands/ui.js +50 -0
  1288. package/src/commands/upgrade.js +2 -2
  1289. package/src/lib/audit.js +9 -1
  1290. package/src/lib/capability-router.js +4 -3
  1291. package/src/lib/contract.js +58 -0
  1292. package/src/lib/disabled-skills.js +86 -0
  1293. package/src/lib/doctor.js +100 -3
  1294. package/src/lib/env-flags.js +35 -0
  1295. package/src/lib/execution-policy.js +80 -4
  1296. package/src/lib/explanation-plain.js +72 -0
  1297. package/src/lib/explanation.js +183 -0
  1298. package/src/lib/feedback.js +65 -0
  1299. package/src/lib/i18n.js +43 -0
  1300. package/src/lib/ide-sync.js +4 -3
  1301. package/src/lib/pipeline.js +68 -0
  1302. package/src/lib/providers/doctor.js +205 -0
  1303. package/src/lib/recover.js +93 -0
  1304. package/src/lib/registry.js +79 -0
  1305. package/src/lib/route-engine.js +21 -1
  1306. package/src/lib/scaffold/index.js +24 -7
  1307. package/src/lib/scaffold/presets.js +213 -24
  1308. package/src/lib/skill-audit.js +141 -0
  1309. package/src/lib/stack/index.js +259 -0
  1310. package/src/lib/ui-server.js +226 -0
  1311. package/src/lib/upgrade-matrix.js +16 -1
  1312. package/src/lib/workspace-boundary.js +60 -0
  1313. package/templates/minimal/AGENT.md +10 -1
  1314. package/templates/minimal/DONE.md +10 -0
  1315. package/templates/minimal/GUNLUK.md +26 -0
  1316. package/templates/minimal/docs/conventions/daily-use.md +132 -0
  1317. package/templates/minimal/docs/conventions/task-to-capability-cheatsheet.md +29 -0
  1318. package/templates/minimal/docs/kullanim-kilavuzu.md +374 -0
  1319. package/ui/app.js +257 -0
  1320. package/ui/index.html +96 -0
  1321. package/ui/styles.css +227 -0
  1322. package/workflows/audit.md +143 -0
  1323. package/workflows/blueprint.md +374 -0
  1324. package/workflows/challenge.md +322 -0
  1325. package/workflows/change.md +162 -0
  1326. package/workflows/craft.md +135 -0
  1327. package/workflows/design-system.md +248 -0
  1328. package/workflows/explore.md +226 -0
  1329. package/workflows/forge.md +570 -34
  1330. package/workflows/genesis.md +307 -0
  1331. package/workflows/ingest.md +145 -0
  1332. package/workflows/init.md +216 -0
  1333. package/workflows/probe.md +181 -0
  1334. package/workflows/query-to-page.md +134 -0
  1335. package/workflows/quickstart.md +111 -0
  1336. package/workflows/retro.md +78 -0
  1337. package/workflows/upgrade.md +146 -0
  1338. package/workflows/wiki-lint.md +159 -0
  1339. package/templates/bundle/skills/capability-router/SKILL.md +0 -12
  1340. package/templates/bundle/skills/context-memory-bridge/SKILL.md +0 -17
  1341. package/templates/bundle/skills/localization-hub/SKILL.md +0 -17
  1342. package/templates/bundle/skills/refactor/SKILL.md +0 -17
  1343. package/templates/bundle/skills/systematic-debugging/SKILL.md +0 -19
  1344. package/templates/bundle/workflows/forge.md +0 -51
@@ -0,0 +1,200 @@
1
+ ---
2
+ name: spec-writer
3
+ description: Creates specs before coding. Use when starting a new project, feature, or significant change and no specification exists yet. Use when requirements are unclear, ambiguous, or only exist as a vague idea.
4
+ ---
5
+
6
+ # Spec-Driven Development
7
+
8
+ ## Overview
9
+
10
+ Write a structured specification before writing any code. The spec is the shared source of truth between you and the human engineer — it defines what we're building, why, and how we'll know it's done. Code without a spec is guessing.
11
+
12
+ ## When to Use
13
+
14
+ - Starting a new project or feature
15
+ - Requirements are ambiguous or incomplete
16
+ - The change touches multiple files or modules
17
+ - You're about to make an architectural decision
18
+ - The task would take more than 30 minutes to implement
19
+
20
+ **When NOT to use:** Single-line fixes, typo corrections, or changes where requirements are unambiguous and self-contained.
21
+
22
+ ## The Gated Workflow
23
+
24
+ Spec-driven development has four phases. Do not advance to the next phase until the current one is validated.
25
+
26
+ ```
27
+ SPECIFY ──→ PLAN ──→ TASKS ──→ IMPLEMENT
28
+ │ │ │ │
29
+ ▼ ▼ ▼ ▼
30
+ Human Human Human Human
31
+ reviews reviews reviews reviews
32
+ ```
33
+
34
+ ### Phase 1: Specify
35
+
36
+ Start with a high-level vision. Ask the human clarifying questions until requirements are concrete.
37
+
38
+ **Surface assumptions immediately.** Before writing any spec content, list what you're assuming:
39
+
40
+ ```
41
+ ASSUMPTIONS I'M MAKING:
42
+ 1. This is a web application (not native mobile)
43
+ 2. Authentication uses session-based cookies (not JWT)
44
+ 3. The database is PostgreSQL (based on existing Prisma schema)
45
+ 4. We're targeting modern browsers only (no IE11)
46
+ → Correct me now or I'll proceed with these.
47
+ ```
48
+
49
+ Don't silently fill in ambiguous requirements. The spec's entire purpose is to surface misunderstandings *before* code gets written — assumptions are the most dangerous form of misunderstanding.
50
+
51
+ **Write a spec document covering these six core areas:**
52
+
53
+ 1. **Objective** — What are we building and why? Who is the user? What does success look like?
54
+
55
+ 2. **Commands** — Full executable commands with flags, not just tool names.
56
+ ```
57
+ Build: npm run build
58
+ Test: npm test -- --coverage
59
+ Lint: npm run lint --fix
60
+ Dev: npm run dev
61
+ ```
62
+
63
+ 3. **Project Structure** — Where source code lives, where tests go, where docs belong.
64
+ ```
65
+ src/ → Application source code
66
+ src/components → React components
67
+ src/lib → Shared utilities
68
+ tests/ → Unit and integration tests
69
+ e2e/ → End-to-end tests
70
+ docs/ → Documentation
71
+ ```
72
+
73
+ 4. **Code Style** — One real code snippet showing your style beats three paragraphs describing it. Include naming conventions, formatting rules, and examples of good output.
74
+
75
+ 5. **Testing Strategy** — What framework, where tests live, coverage expectations, which test levels for which concerns.
76
+
77
+ 6. **Boundaries** — Three-tier system:
78
+ - **Always do:** Run tests before commits, follow naming conventions, validate inputs
79
+ - **Ask first:** Database schema changes, adding dependencies, changing CI config
80
+ - **Never do:** Commit secrets, edit vendor directories, remove failing tests without approval
81
+
82
+ **Spec template:**
83
+
84
+ ```markdown
85
+ # Spec: [Project/Feature Name]
86
+
87
+ ## Objective
88
+ [What we're building and why. User stories or acceptance criteria.]
89
+
90
+ ## Tech Stack
91
+ [Framework, language, key dependencies with versions]
92
+
93
+ ## Commands
94
+ [Build, test, lint, dev — full commands]
95
+
96
+ ## Project Structure
97
+ [Directory layout with descriptions]
98
+
99
+ ## Code Style
100
+ [Example snippet + key conventions]
101
+
102
+ ## Testing Strategy
103
+ [Framework, test locations, coverage requirements, test levels]
104
+
105
+ ## Boundaries
106
+ - Always: [...]
107
+ - Ask first: [...]
108
+ - Never: [...]
109
+
110
+ ## Success Criteria
111
+ [How we'll know this is done — specific, testable conditions]
112
+
113
+ ## Open Questions
114
+ [Anything unresolved that needs human input]
115
+ ```
116
+
117
+ **Reframe instructions as success criteria.** When receiving vague requirements, translate them into concrete conditions:
118
+
119
+ ```
120
+ REQUIREMENT: "Make the dashboard faster"
121
+
122
+ REFRAMED SUCCESS CRITERIA:
123
+ - Dashboard LCP < 2.5s on 4G connection
124
+ - Initial data load completes in < 500ms
125
+ - No layout shift during load (CLS < 0.1)
126
+ → Are these the right targets?
127
+ ```
128
+
129
+ This lets you loop, retry, and problem-solve toward a clear goal rather than guessing what "faster" means.
130
+
131
+ ### Phase 2: Plan
132
+
133
+ With the validated spec, generate a technical implementation plan:
134
+
135
+ 1. Identify the major components and their dependencies
136
+ 2. Determine the implementation order (what must be built first)
137
+ 3. Note risks and mitigation strategies
138
+ 4. Identify what can be built in parallel vs. what must be sequential
139
+ 5. Define verification checkpoints between phases
140
+
141
+ The plan should be reviewable: the human should be able to read it and say "yes, that's the right approach" or "no, change X."
142
+
143
+ ### Phase 3: Tasks
144
+
145
+ Break the plan into discrete, implementable tasks:
146
+
147
+ - Each task should be completable in a single focused session
148
+ - Each task has explicit acceptance criteria
149
+ - Each task includes a verification step (test, build, manual check)
150
+ - Tasks are ordered by dependency, not by perceived importance
151
+ - No task should require changing more than ~5 files
152
+
153
+ **Task template:**
154
+ ```markdown
155
+ - [ ] Task: [Description]
156
+ - Acceptance: [What must be true when done]
157
+ - Verify: [How to confirm — test command, build, manual check]
158
+ - Files: [Which files will be touched]
159
+ ```
160
+
161
+ ### Phase 4: Implement
162
+
163
+ Execute tasks one at a time following `skills/incremental-implementation/SKILL.md` (`incremental-implementation`) and `skills/test-driven-development/SKILL.md` (`test-driven-development`). Use `skills/context-engineering/SKILL.md` (`context-engineering`) to load the right spec sections and source files at each step rather than flooding the agent with the entire spec.
164
+
165
+ ## Keeping the Spec Alive
166
+
167
+ The spec is a living document, not a one-time artifact:
168
+
169
+ - **Update when decisions change** — If you discover the data model needs to change, update the spec first, then implement.
170
+ - **Update when scope changes** — Features added or cut should be reflected in the spec.
171
+ - **Commit the spec** — The spec belongs in version control alongside the code.
172
+ - **Reference the spec in PRs** — Link back to the spec section that each PR implements.
173
+
174
+ ## Common Rationalizations
175
+
176
+ | Rationalization | Reality |
177
+ |---|---|
178
+ | "This is simple, I don't need a spec" | Simple tasks don't need *long* specs, but they still need acceptance criteria. A two-line spec is fine. |
179
+ | "I'll write the spec after I code it" | That's documentation, not specification. The spec's value is in forcing clarity *before* code. |
180
+ | "The spec will slow us down" | A 15-minute spec prevents hours of rework. Waterfall in 15 minutes beats debugging in 15 hours. |
181
+ | "Requirements will change anyway" | That's why the spec is a living document. An outdated spec is still better than no spec. |
182
+ | "The user knows what they want" | Even clear requests have implicit assumptions. The spec surfaces those assumptions. |
183
+
184
+ ## Red Flags
185
+
186
+ - Starting to write code without any written requirements
187
+ - Asking "should I just start building?" before clarifying what "done" means
188
+ - Implementing features not mentioned in any spec or task list
189
+ - Making architectural decisions without documenting them
190
+ - Skipping the spec because "it's obvious what to build"
191
+
192
+ ## Verification
193
+
194
+ Before proceeding to implementation, confirm:
195
+
196
+ - [ ] The spec covers all six core areas
197
+ - [ ] The human has reviewed and approved the spec
198
+ - [ ] Success criteria are specific and testable
199
+ - [ ] Boundaries (Always/Ask First/Never) are defined
200
+ - [ ] The spec is saved to a file in the repository
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf of
171
+ any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don\'t include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,150 @@
1
+ ---
2
+ name: "speech"
3
+ description: "Use when the user asks for text-to-speech narration or voiceover, accessibility reads, audio prompts, or batch speech generation via the OpenAI Audio API; run the bundled CLI (`scripts/text_to_speech.py`) with built-in voices and require `OPENAI_API_KEY` for live calls. Custom voice creation is out of scope."
4
+ license: Apache-2.0
5
+ metadata:
6
+ version: '1.0.1'
7
+ origin: verdent
8
+ prismx_bundle: verdent
9
+ prismx_imported_at: 2026-05-27
10
+ ---
11
+
12
+
13
+ # Speech Generation Skill
14
+
15
+ Generate spoken audio for the current project (narration, product demo voiceover, IVR prompts, accessibility reads). Defaults to `gpt-4o-mini-tts-2025-12-15` and built-in voices, and prefers the bundled CLI for deterministic, reproducible runs.
16
+
17
+ ## When to use
18
+ - Generate a single spoken clip from text
19
+ - Generate a batch of prompts (many lines, many files)
20
+
21
+ ## Decision tree (single vs batch)
22
+ - If the user provides multiple lines/prompts or wants many outputs -> **batch**
23
+ - Else -> **single**
24
+
25
+ ## Workflow
26
+ 1. Decide intent: single vs batch (see decision tree above).
27
+ 2. Collect inputs up front: exact text (verbatim), desired voice, delivery style, format, and any constraints.
28
+ 3. If batch: write a temporary JSONL under tmp/ (one job per line), run once, then delete the JSONL.
29
+ 4. Augment instructions into a short labeled spec without rewriting the input text.
30
+ 5. Run the bundled CLI (`scripts/text_to_speech.py`) with sensible defaults (see references/cli.md).
31
+ 6. For important clips, validate: intelligibility, pacing, pronunciation, and adherence to constraints.
32
+ 7. Iterate with a single targeted change (voice, speed, or instructions), then re-check.
33
+ 8. Save/return final outputs and note the final text + instructions + flags used.
34
+
35
+ ## Temp and output conventions
36
+ - Use `tmp/speech/` for intermediate files (for example JSONL batches); delete when done.
37
+ - Write final artifacts under `output/speech/` when working in this repo.
38
+ - Use `--out` or `--out-dir` to control output paths; keep filenames stable and descriptive.
39
+
40
+ ## Dependencies (install if missing)
41
+ Prefer `uv` for dependency management.
42
+
43
+ Python packages:
44
+ ```
45
+ uv pip install openai
46
+ ```
47
+ If `uv` is unavailable:
48
+ ```
49
+ python3 -m pip install openai
50
+ ```
51
+
52
+ ## Environment
53
+ - `OPENAI_API_KEY` must be set for live API calls.
54
+
55
+ If the key is missing, give the user these steps:
56
+ 1. Create an API key in the OpenAI platform UI: https://platform.openai.com/api-keys
57
+ 2. Set `OPENAI_API_KEY` as an environment variable in their system.
58
+ 3. Offer to guide them through setting the environment variable for their OS/shell if needed.
59
+ - Never ask the user to paste the full key in chat. Ask them to set it locally and confirm when ready.
60
+
61
+ If installation isn't possible in this environment, tell the user which dependency is missing and how to install it locally.
62
+
63
+ ## Defaults & rules
64
+ - Use `gpt-4o-mini-tts-2025-12-15` unless the user requests another model.
65
+ - Default voice: `cedar`. If the user wants a brighter tone, prefer `marin`.
66
+ - Built-in voices only. Custom voices are out of scope for this skill.
67
+ - `instructions` are supported for GPT-4o mini TTS models, but not for `tts-1` or `tts-1-hd`.
68
+ - Input length must be <= 4096 characters per request. Split longer text into chunks.
69
+ - Enforce 50 requests/minute. The CLI caps `--rpm` at 50.
70
+ - Require `OPENAI_API_KEY` before any live API call.
71
+ - Provide a clear disclosure to end users that the voice is AI-generated.
72
+ - Use the OpenAI Python SDK (`openai` package) for all API calls; do not use raw HTTP.
73
+ - Prefer the bundled CLI (`scripts/text_to_speech.py`) over writing new one-off scripts.
74
+ - Never modify `scripts/text_to_speech.py`. If something is missing, ask the user before doing anything else.
75
+
76
+ ## Instruction augmentation
77
+ Reformat user direction into a short, labeled spec. Only make implicit details explicit; do not invent new requirements.
78
+
79
+ Quick clarification (augmentation vs invention):
80
+ - If the user says "narration for a demo", you may add implied delivery constraints (clear, steady pacing, friendly tone).
81
+ - Do not introduce a new persona, accent, or emotional style the user did not request.
82
+
83
+ Template (include only relevant lines):
84
+ ```
85
+ Voice Affect: <overall character and texture of the voice>
86
+ Tone: <attitude, formality, warmth>
87
+ Pacing: <slow, steady, brisk>
88
+ Emotion: <key emotions to convey>
89
+ Pronunciation: <words to enunciate or emphasize>
90
+ Pauses: <where to add intentional pauses>
91
+ Emphasis: <key words or phrases to stress>
92
+ Delivery: <cadence or rhythm notes>
93
+ ```
94
+
95
+ Augmentation rules:
96
+ - Keep it short; add only details the user already implied or provided elsewhere.
97
+ - Do not rewrite the input text.
98
+ - If any critical detail is missing and blocks success, ask a question; otherwise proceed.
99
+
100
+ ## Examples
101
+
102
+ ### Single example (narration)
103
+ ```
104
+ Input text: "Welcome to the demo. Today we'll show how it works."
105
+ Instructions:
106
+ Voice Affect: Warm and composed.
107
+ Tone: Friendly and confident.
108
+ Pacing: Steady and moderate.
109
+ Emphasis: Stress "demo" and "show".
110
+ ```
111
+
112
+ ### Batch example (IVR prompts)
113
+ ```
114
+ {"input":"Thank you for calling. Please hold.","voice":"cedar","response_format":"mp3","out":"hold.mp3"}
115
+ {"input":"For sales, press 1. For support, press 2.","voice":"marin","instructions":"Tone: Clear and neutral. Pacing: Slow.","response_format":"wav"}
116
+ ```
117
+
118
+ ## Instructioning best practices (short list)
119
+ - Structure directions as: affect -> tone -> pacing -> emotion -> pronunciation/pauses -> emphasis.
120
+ - Keep 4 to 8 short lines; avoid conflicting guidance.
121
+ - For names/acronyms, add pronunciation hints (e.g., "enunciate A-I") or supply a phonetic spelling in the text.
122
+ - For edits/iterations, repeat invariants (e.g., "keep pacing steady") to reduce drift.
123
+ - Iterate with single-change follow-ups.
124
+
125
+ More principles: `references/prompting.md`. Copy/paste specs: `references/sample-prompts.md`.
126
+
127
+ ## Guidance by use case
128
+ Use these modules when the request is for a specific delivery style. They provide targeted defaults and templates.
129
+ - Narration / explainer: `references/narration.md`
130
+ - Product demo / voiceover: `references/voiceover.md`
131
+ - IVR / phone prompts: `references/ivr.md`
132
+ - Accessibility reads: `references/accessibility.md`
133
+
134
+ ## CLI + environment notes
135
+ - CLI commands + examples: `references/cli.md`
136
+ - API parameter quick reference: `references/audio-api.md`
137
+ - Instruction patterns + examples: `references/voice-directions.md`
138
+ - If network approvals / sandbox settings are getting in the way: `references/the agent-network.md`
139
+
140
+ ## Reference map
141
+ - **`references/cli.md`**: how to run speech generation/batches via `scripts/text_to_speech.py` (commands, flags, recipes).
142
+ - **`references/audio-api.md`**: API parameters, limits, voice list.
143
+ - **`references/voice-directions.md`**: instruction patterns and examples.
144
+ - **`references/prompting.md`**: instruction best practices (structure, constraints, iteration patterns).
145
+ - **`references/sample-prompts.md`**: copy/paste instruction recipes (examples only; no extra theory).
146
+ - **`references/narration.md`**: templates + defaults for narration and explainers.
147
+ - **`references/voiceover.md`**: templates + defaults for product demo voiceovers.
148
+ - **`references/ivr.md`**: templates + defaults for IVR/phone prompts.
149
+ - **`references/accessibility.md`**: templates + defaults for accessibility reads.
150
+ - **`references/the agent-network.md`**: environment/sandbox/network-approval troubleshooting.
@@ -0,0 +1,12 @@
1
+ category: Media & Files
2
+ interface:
3
+ display_name: Text to Speech
4
+ short_description: Convert text to speech via OpenAI Audio API
5
+ icon_dark: ./assets/icon-dark.png
6
+ icon_light: ./assets/icon-light.png
7
+ default_prompt: Convert this text to speech using the OpenAI Audio API.
8
+ label:
9
+ - ai
10
+ - text-to-speech
11
+ - openai
12
+ - accessibility
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="currentColor" viewBox="0 0 14 14">
2
+ <path d="M7.78 4.001c.245 0 .444.199.444.444v6.666a.444.444 0 0 1-.887 0V4.445c0-.245.199-.444.444-.444ZM5.836 7.89c.245 0 .443.199.443.443v1.112a.444.444 0 0 1-.886 0V8.333c0-.244.198-.443.443-.443Zm3.889-2.222c.244 0 .443.199.443.443v3.334a.444.444 0 0 1-.887 0V6.11c0-.244.199-.443.444-.443ZM11.67 6.78c.244 0 .443.198.443.443v1.11a.444.444 0 0 1-.887 0v-1.11c0-.245.198-.444.443-.444ZM6.114 1.779c.245 0 .443.198.443.443v.988a.444.444 0 0 1-.886 0v-.545H4.335v3.558h.297l.09.01a.444.444 0 0 1 0 .868l-.09.009h-1.48a.444.444 0 0 1-.001-.887h.297V2.665H2.113v.545a.444.444 0 0 1-.887 0v-.988c0-.245.199-.443.443-.443h4.445Z"/>
3
+ </svg>
Binary file
@@ -0,0 +1,32 @@
1
+ # Accessibility read defaults
2
+
3
+ ## Suggested defaults
4
+ - Voice: `cedar`
5
+ - Format: `mp3` or `wav`
6
+ - Speed: `0.95` to `1.0`
7
+
8
+ ## Guidance
9
+ - Keep delivery steady and neutral.
10
+ - Enunciate acronyms and numbers.
11
+ - Avoid dramatic or stylized delivery.
12
+
13
+ ## Instruction template
14
+ ```
15
+ Voice Affect: Neutral and clear.
16
+ Tone: Informational and steady.
17
+ Pacing: Slow and consistent.
18
+ Pronunciation: Enunciate acronyms and numbers.
19
+ Emphasis: Stress key warnings or labels.
20
+ ```
21
+
22
+ ## Example (short)
23
+ Input text:
24
+ "Warning: High voltage. Keep hands clear."
25
+
26
+ Instructions:
27
+ ```
28
+ Voice Affect: Neutral and clear.
29
+ Tone: Informational and steady.
30
+ Pacing: Slow and consistent.
31
+ Emphasis: Stress "Warning" and "High voltage".
32
+ ```
@@ -0,0 +1,31 @@
1
+ # Audio Speech API quick reference
2
+
3
+ ## Endpoint
4
+ - Create speech: `POST /v1/audio/speech`
5
+
6
+ ## Default model
7
+ - `gpt-4o-mini-tts-2025-12-15`
8
+
9
+ ## Other speech models (if requested)
10
+ - `gpt-4o-mini-tts`
11
+ - `tts-1`
12
+ - `tts-1-hd`
13
+
14
+ ## Core parameters
15
+ - `model`: speech model
16
+ - `input`: text to synthesize (max 4096 characters)
17
+ - `voice`: built-in voice name
18
+ - `instructions`: optional style directions (not supported for `tts-1` or `tts-1-hd`)
19
+ - `response_format`: `mp3`, `opus`, `aac`, `flac`, `wav`, or `pcm`
20
+ - `speed`: 0.25 to 4.0
21
+
22
+ ## Built-in voices
23
+ - `alloy`, `ash`, `ballad`, `cedar`, `coral`, `echo`, `fable`, `marin`, `nova`, `onyx`, `sage`, `shimmer`, `verse`
24
+
25
+ ## Output notes
26
+ - Default format is `mp3`.
27
+ - `pcm` is raw 24 kHz 16-bit little-endian samples (no header).
28
+ - `wav` includes a header (better for quick playback).
29
+
30
+ ## Compliance note
31
+ - Provide a clear disclosure that the voice is AI-generated.