@amrhas82/agentic-kit 1.2.1 → 1.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 (1036) hide show
  1. package/README.md +5 -5
  2. package/VARIANTS.md +16 -85
  3. package/package.json +1 -1
  4. package/packages/ampcode/AGENT.md +511 -0
  5. package/packages/ampcode/agents/1-create-prd.md +1 -0
  6. package/packages/ampcode/agents/2-generate-tasks.md +1 -0
  7. package/packages/ampcode/agents/3-process-task-list.md +1 -5
  8. package/packages/ampcode/agents/context-initializer.md +291 -0
  9. package/packages/ampcode/agents/master.md +1 -5
  10. package/packages/ampcode/agents/orchestrator.md +116 -81
  11. package/packages/ampcode/{skills/brainstorming/SKILL.md → commands/brainstorming.md} +1 -1
  12. package/packages/{droid/skills/brand-guidelines/SKILL.md → ampcode/commands/brand-guidelines.md} +1 -1
  13. package/packages/{opencode/skills/code-review/code-reviewer.md → ampcode/commands/code-review.md} +109 -1
  14. package/packages/{droid/skills/condition-based-waiting/SKILL.md → ampcode/commands/condition-based-waiting.md} +2 -2
  15. package/packages/ampcode/commands/docx.md +1163 -0
  16. package/packages/ampcode/{skills/internal-comms/SKILL.md → commands/internal-comms.md} +1 -1
  17. package/packages/{droid/skills/mcp-builder/SKILL.md → ampcode/commands/mcp-builder.md} +1 -1
  18. package/packages/{opencode/skills/pdf/reference.md → ampcode/commands/pdf.md} +505 -0
  19. package/packages/ampcode/commands/pptx.md +1542 -0
  20. package/packages/{opencode/skills/root-cause-tracing/SKILL.md → ampcode/commands/root-cause-tracing.md} +2 -2
  21. package/packages/{droid/skills/skill-creator/SKILL.md → ampcode/commands/skill-creator.md} +1 -1
  22. package/packages/{opencode/skills/slack-gif-creator/SKILL.md → ampcode/commands/slack-gif-creator.md} +1 -1
  23. package/packages/ampcode/commands/systematic-debugging.md +638 -0
  24. package/packages/{droid/skills/test-driven-development/SKILL.md → ampcode/commands/test-driven-development.md} +1 -1
  25. package/packages/{opencode/skills/testing-anti-patterns/SKILL.md → ampcode/commands/testing-anti-patterns.md} +1 -1
  26. package/packages/{droid/skills/theme-factory/SKILL.md → ampcode/commands/theme-factory.md} +1 -2
  27. package/packages/{droid/skills/verification-before-completion/SKILL.md → ampcode/commands/verification-before-completion.md} +1 -1
  28. package/packages/{opencode/skills/xlsx/SKILL.md → ampcode/commands/xlsx.md} +5 -5
  29. package/packages/ampcode/subagentic-manual.md +170 -0
  30. package/packages/ampcode/variants.json +13 -11
  31. package/packages/claude/.claude-plugin/plugin-lite.json +7 -6
  32. package/packages/claude/.claude-plugin/plugin-pro.json +7 -6
  33. package/packages/claude/.claude-plugin/plugin-standard.json +7 -6
  34. package/packages/claude/.claude-plugin/plugin.json +1 -6
  35. package/packages/claude/CLAUDE.md +521 -0
  36. package/packages/claude/agents/1-create-prd.md +1 -0
  37. package/packages/claude/agents/2-generate-tasks.md +1 -0
  38. package/packages/claude/agents/3-process-task-list.md +0 -3
  39. package/packages/claude/agents/context-initializer.md +291 -0
  40. package/packages/claude/agents/master.md +1 -4
  41. package/packages/claude/agents/orchestrator.md +116 -81
  42. package/packages/claude/hooks/session-start.js +7 -0
  43. package/packages/claude/resources/data.md +3 -3
  44. package/packages/claude/subagentic-manual.md +170 -0
  45. package/packages/claude/variants.json +4 -2
  46. package/packages/droid/AGENTS.md +525 -0
  47. package/packages/droid/change_settings.json +61 -0
  48. package/packages/droid/{agents → droids}/1-create-prd.md +1 -0
  49. package/packages/droid/{agents → droids}/2-generate-tasks.md +1 -0
  50. package/packages/droid/{agents → droids}/3-process-task-list.md +0 -3
  51. package/packages/droid/droids/context-initializer.md +291 -0
  52. package/packages/droid/{agents → droids}/master.md +1 -5
  53. package/packages/droid/droids/orchestrator.md +138 -0
  54. package/packages/droid/resources/data.md +3 -3
  55. package/packages/droid/subagentic-manual.md +170 -0
  56. package/packages/droid/variants.json +13 -11
  57. package/packages/opencode/AGENTS.md +206 -64
  58. package/packages/opencode/{agents → agent}/1-create-prd.md +7 -2
  59. package/packages/opencode/{agents → agent}/2-generate-tasks.md +7 -2
  60. package/packages/opencode/{agents → agent}/3-process-task-list.md +6 -6
  61. package/packages/opencode/{agents → agent}/business-analyst.md +6 -2
  62. package/packages/opencode/agent/context-initializer.md +295 -0
  63. package/packages/opencode/{agents → agent}/full-stack-dev.md +6 -2
  64. package/packages/opencode/{agents → agent}/holistic-architect.md +6 -2
  65. package/packages/opencode/{agents → agent}/master.md +7 -7
  66. package/packages/opencode/agent/orchestrator.md +142 -0
  67. package/packages/opencode/{agents → agent}/product-manager.md +6 -2
  68. package/packages/opencode/{agents → agent}/product-owner.md +6 -2
  69. package/packages/opencode/{agents → agent}/qa-test-architect.md +6 -2
  70. package/packages/opencode/{agents → agent}/scrum-master.md +6 -2
  71. package/packages/opencode/{agents → agent}/ux-expert.md +6 -2
  72. package/packages/opencode/command/algorithmic-art.md +159 -0
  73. package/packages/opencode/command/artifacts-builder.md +285 -0
  74. package/packages/{droid/skills/brainstorming/SKILL.md → opencode/command/brainstorming.md} +5 -10
  75. package/packages/opencode/command/brand-guidelines.md +123 -0
  76. package/packages/opencode/command/canvas-design.md +155 -0
  77. package/packages/opencode/command/code-review.md +92 -0
  78. package/packages/{ampcode/skills/condition-based-waiting/SKILL.md → opencode/command/condition-based-waiting.md} +52 -39
  79. package/packages/opencode/command/docx.md +255 -0
  80. package/packages/opencode/command/internal-comms.md +142 -0
  81. package/packages/opencode/command/mcp-builder.md +282 -0
  82. package/packages/opencode/command/pdf.md +194 -0
  83. package/packages/opencode/command/pptx.md +272 -0
  84. package/packages/{ampcode/skills/root-cause-tracing/SKILL.md → opencode/command/root-cause-tracing.md} +99 -62
  85. package/packages/opencode/command/skill-creator.md +196 -0
  86. package/packages/opencode/command/slack-gif-creator.md +340 -0
  87. package/packages/opencode/command/systematic-debugging.md +215 -0
  88. package/packages/opencode/command/test-driven-development.md +231 -0
  89. package/packages/opencode/command/testing-anti-patterns.md +248 -0
  90. package/packages/opencode/command/theme-factory.md +146 -0
  91. package/packages/opencode/command/verification-before-completion.md +151 -0
  92. package/packages/opencode/command/webapp-testing.md +275 -0
  93. package/packages/opencode/command/xlsx.md +254 -0
  94. package/packages/opencode/opencode.jsonc +44 -34
  95. package/packages/opencode/subagentic-manual.md +170 -0
  96. package/packages/opencode/variants.json +13 -11
  97. package/packages/subagentic-manual.md +170 -0
  98. package/packages/ampcode/AGENTS.md +0 -109
  99. package/packages/ampcode/hooks/register-agents.js +0 -128
  100. package/packages/ampcode/hooks/session-start.js +0 -168
  101. package/packages/ampcode/skills/algorithmic-art/LICENSE.txt +0 -202
  102. package/packages/ampcode/skills/artifacts-builder/LICENSE.txt +0 -202
  103. package/packages/ampcode/skills/brand-guidelines/LICENSE.txt +0 -202
  104. package/packages/ampcode/skills/brand-guidelines/SKILL.md +0 -73
  105. package/packages/ampcode/skills/canvas-design/LICENSE.txt +0 -202
  106. package/packages/ampcode/skills/code-review/SKILL.md +0 -105
  107. package/packages/ampcode/skills/code-review/code-reviewer.md +0 -146
  108. package/packages/ampcode/skills/docx/LICENSE.txt +0 -30
  109. package/packages/ampcode/skills/docx/SKILL.md +0 -197
  110. package/packages/ampcode/skills/docx/docx-js.md +0 -350
  111. package/packages/ampcode/skills/docx/ooxml.md +0 -610
  112. package/packages/ampcode/skills/internal-comms/LICENSE.txt +0 -202
  113. package/packages/ampcode/skills/mcp-builder/LICENSE.txt +0 -202
  114. package/packages/ampcode/skills/mcp-builder/SKILL.md +0 -328
  115. package/packages/ampcode/skills/pdf/LICENSE.txt +0 -30
  116. package/packages/ampcode/skills/pdf/SKILL.md +0 -294
  117. package/packages/ampcode/skills/pdf/forms.md +0 -205
  118. package/packages/ampcode/skills/pdf/reference.md +0 -612
  119. package/packages/ampcode/skills/pptx/LICENSE.txt +0 -30
  120. package/packages/ampcode/skills/pptx/SKILL.md +0 -484
  121. package/packages/ampcode/skills/pptx/html2pptx.md +0 -625
  122. package/packages/ampcode/skills/pptx/ooxml.md +0 -427
  123. package/packages/ampcode/skills/skill-creator/LICENSE.txt +0 -202
  124. package/packages/ampcode/skills/skill-creator/SKILL.md +0 -209
  125. package/packages/ampcode/skills/slack-gif-creator/LICENSE.txt +0 -202
  126. package/packages/ampcode/skills/slack-gif-creator/SKILL.md +0 -646
  127. package/packages/ampcode/skills/slack-gif-creator/requirements.txt +0 -4
  128. package/packages/ampcode/skills/systematic-debugging/CREATION-LOG.md +0 -119
  129. package/packages/ampcode/skills/systematic-debugging/SKILL.md +0 -295
  130. package/packages/ampcode/skills/systematic-debugging/test-academic.md +0 -14
  131. package/packages/ampcode/skills/systematic-debugging/test-pressure-1.md +0 -58
  132. package/packages/ampcode/skills/systematic-debugging/test-pressure-2.md +0 -68
  133. package/packages/ampcode/skills/systematic-debugging/test-pressure-3.md +0 -69
  134. package/packages/ampcode/skills/test-driven-development/SKILL.md +0 -364
  135. package/packages/ampcode/skills/testing-anti-patterns/SKILL.md +0 -302
  136. package/packages/ampcode/skills/theme-factory/LICENSE.txt +0 -202
  137. package/packages/ampcode/skills/theme-factory/SKILL.md +0 -59
  138. package/packages/ampcode/skills/theme-factory/theme-showcase.pdf +0 -0
  139. package/packages/ampcode/skills/verification-before-completion/SKILL.md +0 -139
  140. package/packages/ampcode/skills/webapp-testing/LICENSE.txt +0 -202
  141. package/packages/ampcode/skills/xlsx/LICENSE.txt +0 -30
  142. package/packages/ampcode/skills/xlsx/SKILL.md +0 -289
  143. package/packages/ampcode/subagents-and-skills.md +0 -79
  144. package/packages/claude/AGENTS.md +0 -243
  145. package/packages/claude/subagents-and-skills.md +0 -79
  146. package/packages/droid/agents/orchestrator.md +0 -103
  147. package/packages/droid/hooks/register-agents.js +0 -128
  148. package/packages/droid/hooks/session-start.js +0 -168
  149. package/packages/droid/skills/algorithmic-art/LICENSE.txt +0 -202
  150. package/packages/droid/skills/algorithmic-art/SKILL.md +0 -405
  151. package/packages/droid/skills/artifacts-builder/LICENSE.txt +0 -202
  152. package/packages/droid/skills/artifacts-builder/SKILL.md +0 -74
  153. package/packages/droid/skills/brand-guidelines/LICENSE.txt +0 -202
  154. package/packages/droid/skills/canvas-design/LICENSE.txt +0 -202
  155. package/packages/droid/skills/canvas-design/SKILL.md +0 -130
  156. package/packages/droid/skills/code-review/SKILL.md +0 -105
  157. package/packages/droid/skills/code-review/code-reviewer.md +0 -146
  158. package/packages/droid/skills/docx/LICENSE.txt +0 -30
  159. package/packages/droid/skills/docx/SKILL.md +0 -197
  160. package/packages/droid/skills/docx/docx-js.md +0 -350
  161. package/packages/droid/skills/docx/ooxml.md +0 -610
  162. package/packages/droid/skills/internal-comms/LICENSE.txt +0 -202
  163. package/packages/droid/skills/internal-comms/SKILL.md +0 -32
  164. package/packages/droid/skills/mcp-builder/LICENSE.txt +0 -202
  165. package/packages/droid/skills/pdf/LICENSE.txt +0 -30
  166. package/packages/droid/skills/pdf/SKILL.md +0 -294
  167. package/packages/droid/skills/pdf/forms.md +0 -205
  168. package/packages/droid/skills/pdf/reference.md +0 -612
  169. package/packages/droid/skills/pptx/LICENSE.txt +0 -30
  170. package/packages/droid/skills/pptx/SKILL.md +0 -484
  171. package/packages/droid/skills/pptx/html2pptx.md +0 -625
  172. package/packages/droid/skills/pptx/ooxml.md +0 -427
  173. package/packages/droid/skills/root-cause-tracing/SKILL.md +0 -174
  174. package/packages/droid/skills/skill-creator/LICENSE.txt +0 -202
  175. package/packages/droid/skills/slack-gif-creator/LICENSE.txt +0 -202
  176. package/packages/droid/skills/slack-gif-creator/SKILL.md +0 -646
  177. package/packages/droid/skills/slack-gif-creator/requirements.txt +0 -4
  178. package/packages/droid/skills/systematic-debugging/CREATION-LOG.md +0 -119
  179. package/packages/droid/skills/systematic-debugging/SKILL.md +0 -295
  180. package/packages/droid/skills/systematic-debugging/test-academic.md +0 -14
  181. package/packages/droid/skills/systematic-debugging/test-pressure-1.md +0 -58
  182. package/packages/droid/skills/systematic-debugging/test-pressure-2.md +0 -68
  183. package/packages/droid/skills/systematic-debugging/test-pressure-3.md +0 -69
  184. package/packages/droid/skills/testing-anti-patterns/SKILL.md +0 -302
  185. package/packages/droid/skills/theme-factory/LICENSE.txt +0 -202
  186. package/packages/droid/skills/theme-factory/theme-showcase.pdf +0 -0
  187. package/packages/droid/skills/webapp-testing/LICENSE.txt +0 -202
  188. package/packages/droid/skills/webapp-testing/SKILL.md +0 -96
  189. package/packages/droid/skills/xlsx/LICENSE.txt +0 -30
  190. package/packages/droid/skills/xlsx/SKILL.md +0 -289
  191. package/packages/droid/subagents-and-skills.md +0 -79
  192. package/packages/opencode/agents/orchestrator.md +0 -103
  193. package/packages/opencode/hooks/register-agents.js +0 -128
  194. package/packages/opencode/hooks/session-start.js +0 -168
  195. package/packages/opencode/skills/README.md +0 -76
  196. package/packages/opencode/skills/algorithmic-art/LICENSE.txt +0 -202
  197. package/packages/opencode/skills/algorithmic-art/SKILL.md +0 -405
  198. package/packages/opencode/skills/artifacts-builder/LICENSE.txt +0 -202
  199. package/packages/opencode/skills/artifacts-builder/SKILL.md +0 -74
  200. package/packages/opencode/skills/brainstorming/SKILL.md +0 -54
  201. package/packages/opencode/skills/brand-guidelines/LICENSE.txt +0 -202
  202. package/packages/opencode/skills/brand-guidelines/SKILL.md +0 -73
  203. package/packages/opencode/skills/canvas-design/LICENSE.txt +0 -202
  204. package/packages/opencode/skills/canvas-design/SKILL.md +0 -130
  205. package/packages/opencode/skills/code-review/SKILL.md +0 -105
  206. package/packages/opencode/skills/condition-based-waiting/SKILL.md +0 -120
  207. package/packages/opencode/skills/docx/LICENSE.txt +0 -30
  208. package/packages/opencode/skills/docx/SKILL.md +0 -197
  209. package/packages/opencode/skills/docx/docx-js.md +0 -350
  210. package/packages/opencode/skills/docx/ooxml.md +0 -610
  211. package/packages/opencode/skills/internal-comms/LICENSE.txt +0 -202
  212. package/packages/opencode/skills/internal-comms/SKILL.md +0 -32
  213. package/packages/opencode/skills/mcp-builder/LICENSE.txt +0 -202
  214. package/packages/opencode/skills/mcp-builder/SKILL.md +0 -328
  215. package/packages/opencode/skills/pdf/LICENSE.txt +0 -30
  216. package/packages/opencode/skills/pdf/SKILL.md +0 -294
  217. package/packages/opencode/skills/pdf/forms.md +0 -205
  218. package/packages/opencode/skills/pptx/LICENSE.txt +0 -30
  219. package/packages/opencode/skills/pptx/SKILL.md +0 -484
  220. package/packages/opencode/skills/pptx/html2pptx.md +0 -625
  221. package/packages/opencode/skills/pptx/ooxml.md +0 -427
  222. package/packages/opencode/skills/skill-creator/LICENSE.txt +0 -202
  223. package/packages/opencode/skills/skill-creator/SKILL.md +0 -209
  224. package/packages/opencode/skills/slack-gif-creator/LICENSE.txt +0 -202
  225. package/packages/opencode/skills/slack-gif-creator/requirements.txt +0 -4
  226. package/packages/opencode/skills/systematic-debugging/CREATION-LOG.md +0 -119
  227. package/packages/opencode/skills/systematic-debugging/SKILL.md +0 -295
  228. package/packages/opencode/skills/systematic-debugging/test-academic.md +0 -14
  229. package/packages/opencode/skills/systematic-debugging/test-pressure-1.md +0 -58
  230. package/packages/opencode/skills/systematic-debugging/test-pressure-2.md +0 -68
  231. package/packages/opencode/skills/systematic-debugging/test-pressure-3.md +0 -69
  232. package/packages/opencode/skills/test-driven-development/SKILL.md +0 -364
  233. package/packages/opencode/skills/theme-factory/LICENSE.txt +0 -202
  234. package/packages/opencode/skills/theme-factory/SKILL.md +0 -59
  235. package/packages/opencode/skills/theme-factory/theme-showcase.pdf +0 -0
  236. package/packages/opencode/skills/verification-before-completion/SKILL.md +0 -139
  237. package/packages/opencode/skills/webapp-testing/LICENSE.txt +0 -202
  238. package/packages/opencode/skills/webapp-testing/SKILL.md +0 -96
  239. package/packages/opencode/skills/xlsx/LICENSE.txt +0 -30
  240. package/packages/opencode/skills-backup/README.md +0 -76
  241. package/packages/opencode/subagents-and-skills.md +0 -79
  242. /package/packages/ampcode/{skills → commands}/README.md +0 -0
  243. /package/packages/ampcode/{skills → commands}/algorithmic-art/templates/generator_template.js +0 -0
  244. /package/packages/ampcode/{skills → commands}/algorithmic-art/templates/viewer.html +0 -0
  245. /package/packages/ampcode/{skills/algorithmic-art/SKILL.md → commands/algorithmic-art.md} +0 -0
  246. /package/packages/ampcode/{skills → commands}/artifacts-builder/scripts/bundle-artifact.sh +0 -0
  247. /package/packages/ampcode/{skills → commands}/artifacts-builder/scripts/init-artifact.sh +0 -0
  248. /package/packages/ampcode/{skills → commands}/artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
  249. /package/packages/ampcode/{skills/artifacts-builder/SKILL.md → commands/artifacts-builder.md} +0 -0
  250. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +0 -0
  251. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  252. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  253. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/BigShoulders-OFL.txt +0 -0
  254. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  255. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Boldonse-OFL.txt +0 -0
  256. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
  257. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  258. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
  259. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  260. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  261. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  262. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +0 -0
  263. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  264. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/DMMono-OFL.txt +0 -0
  265. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
  266. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/EricaOne-OFL.txt +0 -0
  267. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
  268. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
  269. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/GeistMono-OFL.txt +0 -0
  270. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
  271. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Gloock-OFL.txt +0 -0
  272. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
  273. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  274. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
  275. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  276. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  277. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  278. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  279. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  280. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  281. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  282. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  283. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +0 -0
  284. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  285. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  286. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  287. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Italiana-OFL.txt +0 -0
  288. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
  289. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  290. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
  291. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  292. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
  293. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
  294. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Jura-OFL.txt +0 -0
  295. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
  296. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  297. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
  298. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  299. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
  300. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Lora-OFL.txt +0 -0
  301. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
  302. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
  303. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/NationalPark-OFL.txt +0 -0
  304. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
  305. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
  306. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  307. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
  308. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Outfit-OFL.txt +0 -0
  309. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
  310. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  311. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/PixelifySans-OFL.txt +0 -0
  312. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/PoiretOne-OFL.txt +0 -0
  313. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  314. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  315. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/RedHatMono-OFL.txt +0 -0
  316. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  317. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Silkscreen-OFL.txt +0 -0
  318. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  319. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  320. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/SmoochSans-OFL.txt +0 -0
  321. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
  322. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Tektur-OFL.txt +0 -0
  323. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
  324. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
  325. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  326. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
  327. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/WorkSans-OFL.txt +0 -0
  328. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
  329. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/YoungSerif-OFL.txt +0 -0
  330. /package/packages/ampcode/{skills → commands}/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  331. /package/packages/ampcode/{skills/canvas-design/SKILL.md → commands/canvas-design.md} +0 -0
  332. /package/packages/ampcode/{skills → commands}/condition-based-waiting/example.ts +0 -0
  333. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +0 -0
  334. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +0 -0
  335. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +0 -0
  336. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +0 -0
  337. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +0 -0
  338. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +0 -0
  339. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +0 -0
  340. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +0 -0
  341. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +0 -0
  342. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +0 -0
  343. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +0 -0
  344. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +0 -0
  345. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +0 -0
  346. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +0 -0
  347. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +0 -0
  348. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +0 -0
  349. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +0 -0
  350. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +0 -0
  351. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +0 -0
  352. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +0 -0
  353. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +0 -0
  354. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +0 -0
  355. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +0 -0
  356. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +0 -0
  357. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +0 -0
  358. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +0 -0
  359. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +0 -0
  360. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +0 -0
  361. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +0 -0
  362. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +0 -0
  363. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +0 -0
  364. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/mce/mc.xsd +0 -0
  365. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/microsoft/wml-2010.xsd +0 -0
  366. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/microsoft/wml-2012.xsd +0 -0
  367. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/microsoft/wml-2018.xsd +0 -0
  368. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +0 -0
  369. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +0 -0
  370. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +0 -0
  371. /package/packages/ampcode/{skills → commands}/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +0 -0
  372. /package/packages/ampcode/{skills → commands}/docx/ooxml/scripts/pack.py +0 -0
  373. /package/packages/ampcode/{skills → commands}/docx/ooxml/scripts/unpack.py +0 -0
  374. /package/packages/ampcode/{skills → commands}/docx/ooxml/scripts/validate.py +0 -0
  375. /package/packages/ampcode/{skills → commands}/docx/ooxml/scripts/validation/__init__.py +0 -0
  376. /package/packages/ampcode/{skills → commands}/docx/ooxml/scripts/validation/base.py +0 -0
  377. /package/packages/ampcode/{skills → commands}/docx/ooxml/scripts/validation/docx.py +0 -0
  378. /package/packages/ampcode/{skills → commands}/docx/ooxml/scripts/validation/pptx.py +0 -0
  379. /package/packages/ampcode/{skills → commands}/docx/ooxml/scripts/validation/redlining.py +0 -0
  380. /package/packages/ampcode/{skills → commands}/docx/scripts/__init__.py +0 -0
  381. /package/packages/ampcode/{skills → commands}/docx/scripts/document.py +0 -0
  382. /package/packages/ampcode/{skills → commands}/docx/scripts/templates/comments.xml +0 -0
  383. /package/packages/ampcode/{skills → commands}/docx/scripts/templates/commentsExtended.xml +0 -0
  384. /package/packages/ampcode/{skills → commands}/docx/scripts/templates/commentsExtensible.xml +0 -0
  385. /package/packages/ampcode/{skills → commands}/docx/scripts/templates/commentsIds.xml +0 -0
  386. /package/packages/ampcode/{skills → commands}/docx/scripts/templates/people.xml +0 -0
  387. /package/packages/ampcode/{skills → commands}/docx/scripts/utilities.py +0 -0
  388. /package/packages/ampcode/{skills → commands}/internal-comms/examples/3p-updates.md +0 -0
  389. /package/packages/ampcode/{skills → commands}/internal-comms/examples/company-newsletter.md +0 -0
  390. /package/packages/ampcode/{skills → commands}/internal-comms/examples/faq-answers.md +0 -0
  391. /package/packages/ampcode/{skills → commands}/internal-comms/examples/general-comms.md +0 -0
  392. /package/packages/ampcode/{skills → commands}/mcp-builder/reference/evaluation.md +0 -0
  393. /package/packages/ampcode/{skills → commands}/mcp-builder/reference/mcp_best_practices.md +0 -0
  394. /package/packages/ampcode/{skills → commands}/mcp-builder/reference/node_mcp_server.md +0 -0
  395. /package/packages/ampcode/{skills → commands}/mcp-builder/reference/python_mcp_server.md +0 -0
  396. /package/packages/ampcode/{skills → commands}/mcp-builder/scripts/connections.py +0 -0
  397. /package/packages/ampcode/{skills → commands}/mcp-builder/scripts/evaluation.py +0 -0
  398. /package/packages/ampcode/{skills → commands}/mcp-builder/scripts/example_evaluation.xml +0 -0
  399. /package/packages/ampcode/{skills → commands}/mcp-builder/scripts/requirements.txt +0 -0
  400. /package/packages/ampcode/{skills → commands}/pdf/scripts/check_bounding_boxes.py +0 -0
  401. /package/packages/ampcode/{skills → commands}/pdf/scripts/check_bounding_boxes_test.py +0 -0
  402. /package/packages/ampcode/{skills → commands}/pdf/scripts/check_fillable_fields.py +0 -0
  403. /package/packages/ampcode/{skills → commands}/pdf/scripts/convert_pdf_to_images.py +0 -0
  404. /package/packages/ampcode/{skills → commands}/pdf/scripts/create_validation_image.py +0 -0
  405. /package/packages/ampcode/{skills → commands}/pdf/scripts/extract_form_field_info.py +0 -0
  406. /package/packages/ampcode/{skills → commands}/pdf/scripts/fill_fillable_fields.py +0 -0
  407. /package/packages/ampcode/{skills → commands}/pdf/scripts/fill_pdf_form_with_annotations.py +0 -0
  408. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +0 -0
  409. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +0 -0
  410. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +0 -0
  411. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +0 -0
  412. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +0 -0
  413. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +0 -0
  414. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +0 -0
  415. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +0 -0
  416. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +0 -0
  417. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +0 -0
  418. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +0 -0
  419. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +0 -0
  420. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +0 -0
  421. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +0 -0
  422. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +0 -0
  423. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +0 -0
  424. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +0 -0
  425. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +0 -0
  426. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +0 -0
  427. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +0 -0
  428. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +0 -0
  429. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +0 -0
  430. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +0 -0
  431. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +0 -0
  432. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +0 -0
  433. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +0 -0
  434. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +0 -0
  435. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +0 -0
  436. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +0 -0
  437. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +0 -0
  438. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +0 -0
  439. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/mce/mc.xsd +0 -0
  440. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-2010.xsd +0 -0
  441. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-2012.xsd +0 -0
  442. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-2018.xsd +0 -0
  443. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +0 -0
  444. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +0 -0
  445. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +0 -0
  446. /package/packages/ampcode/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +0 -0
  447. /package/packages/ampcode/{skills → commands}/pptx/ooxml/scripts/pack.py +0 -0
  448. /package/packages/ampcode/{skills → commands}/pptx/ooxml/scripts/unpack.py +0 -0
  449. /package/packages/ampcode/{skills → commands}/pptx/ooxml/scripts/validate.py +0 -0
  450. /package/packages/ampcode/{skills → commands}/pptx/ooxml/scripts/validation/__init__.py +0 -0
  451. /package/packages/ampcode/{skills → commands}/pptx/ooxml/scripts/validation/base.py +0 -0
  452. /package/packages/ampcode/{skills → commands}/pptx/ooxml/scripts/validation/docx.py +0 -0
  453. /package/packages/ampcode/{skills → commands}/pptx/ooxml/scripts/validation/pptx.py +0 -0
  454. /package/packages/ampcode/{skills → commands}/pptx/ooxml/scripts/validation/redlining.py +0 -0
  455. /package/packages/ampcode/{skills → commands}/pptx/scripts/html2pptx.js +0 -0
  456. /package/packages/ampcode/{skills → commands}/pptx/scripts/inventory.py +0 -0
  457. /package/packages/ampcode/{skills → commands}/pptx/scripts/rearrange.py +0 -0
  458. /package/packages/ampcode/{skills → commands}/pptx/scripts/replace.py +0 -0
  459. /package/packages/ampcode/{skills → commands}/pptx/scripts/thumbnail.py +0 -0
  460. /package/packages/ampcode/{skills → commands}/root-cause-tracing/find-polluter.sh +0 -0
  461. /package/packages/ampcode/{skills → commands}/skill-creator/scripts/init_skill.py +0 -0
  462. /package/packages/ampcode/{skills → commands}/skill-creator/scripts/package_skill.py +0 -0
  463. /package/packages/ampcode/{skills → commands}/skill-creator/scripts/quick_validate.py +0 -0
  464. /package/packages/ampcode/{skills → commands}/slack-gif-creator/core/color_palettes.py +0 -0
  465. /package/packages/ampcode/{skills → commands}/slack-gif-creator/core/easing.py +0 -0
  466. /package/packages/ampcode/{skills → commands}/slack-gif-creator/core/frame_composer.py +0 -0
  467. /package/packages/ampcode/{skills → commands}/slack-gif-creator/core/gif_builder.py +0 -0
  468. /package/packages/ampcode/{skills → commands}/slack-gif-creator/core/typography.py +0 -0
  469. /package/packages/ampcode/{skills → commands}/slack-gif-creator/core/validators.py +0 -0
  470. /package/packages/ampcode/{skills → commands}/slack-gif-creator/core/visual_effects.py +0 -0
  471. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/bounce.py +0 -0
  472. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/explode.py +0 -0
  473. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/fade.py +0 -0
  474. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/flip.py +0 -0
  475. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/kaleidoscope.py +0 -0
  476. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/morph.py +0 -0
  477. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/move.py +0 -0
  478. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/pulse.py +0 -0
  479. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/shake.py +0 -0
  480. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/slide.py +0 -0
  481. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/spin.py +0 -0
  482. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/wiggle.py +0 -0
  483. /package/packages/ampcode/{skills → commands}/slack-gif-creator/templates/zoom.py +0 -0
  484. /package/packages/ampcode/{skills → commands}/theme-factory/themes/arctic-frost.md +0 -0
  485. /package/packages/ampcode/{skills → commands}/theme-factory/themes/botanical-garden.md +0 -0
  486. /package/packages/ampcode/{skills → commands}/theme-factory/themes/desert-rose.md +0 -0
  487. /package/packages/ampcode/{skills → commands}/theme-factory/themes/forest-canopy.md +0 -0
  488. /package/packages/ampcode/{skills → commands}/theme-factory/themes/golden-hour.md +0 -0
  489. /package/packages/ampcode/{skills → commands}/theme-factory/themes/midnight-galaxy.md +0 -0
  490. /package/packages/ampcode/{skills → commands}/theme-factory/themes/modern-minimalist.md +0 -0
  491. /package/packages/ampcode/{skills → commands}/theme-factory/themes/ocean-depths.md +0 -0
  492. /package/packages/ampcode/{skills → commands}/theme-factory/themes/sunset-boulevard.md +0 -0
  493. /package/packages/ampcode/{skills → commands}/theme-factory/themes/tech-innovation.md +0 -0
  494. /package/packages/ampcode/{skills → commands}/webapp-testing/examples/console_logging.py +0 -0
  495. /package/packages/ampcode/{skills → commands}/webapp-testing/examples/element_discovery.py +0 -0
  496. /package/packages/ampcode/{skills → commands}/webapp-testing/examples/static_html_automation.py +0 -0
  497. /package/packages/ampcode/{skills → commands}/webapp-testing/scripts/with_server.py +0 -0
  498. /package/packages/ampcode/{skills/webapp-testing/SKILL.md → commands/webapp-testing.md} +0 -0
  499. /package/packages/ampcode/{skills → commands}/xlsx/recalc.py +0 -0
  500. /package/packages/{opencode/skills-backup → droid/commands/algorithmic-art}/algorithmic-art.md +0 -0
  501. /package/packages/droid/{skills → commands}/algorithmic-art/templates/generator_template.js +0 -0
  502. /package/packages/droid/{skills → commands}/algorithmic-art/templates/viewer.html +0 -0
  503. /package/packages/{opencode/skills-backup → droid/commands/artifacts-builder}/artifacts-builder.md +0 -0
  504. /package/packages/droid/{skills → commands}/artifacts-builder/scripts/bundle-artifact.sh +0 -0
  505. /package/packages/droid/{skills → commands}/artifacts-builder/scripts/init-artifact.sh +0 -0
  506. /package/packages/droid/{skills → commands}/artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
  507. /package/packages/{opencode/skills-backup → droid/commands}/brainstorming.md +0 -0
  508. /package/packages/{opencode/skills-backup → droid/commands}/brand-guidelines.md +0 -0
  509. /package/packages/{opencode/skills-backup → droid/commands/canvas-design}/canvas-design.md +0 -0
  510. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +0 -0
  511. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  512. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  513. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/BigShoulders-OFL.txt +0 -0
  514. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  515. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Boldonse-OFL.txt +0 -0
  516. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
  517. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  518. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
  519. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  520. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  521. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  522. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +0 -0
  523. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  524. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/DMMono-OFL.txt +0 -0
  525. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
  526. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/EricaOne-OFL.txt +0 -0
  527. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
  528. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
  529. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/GeistMono-OFL.txt +0 -0
  530. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
  531. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Gloock-OFL.txt +0 -0
  532. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
  533. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  534. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
  535. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  536. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  537. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  538. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  539. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  540. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  541. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  542. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  543. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +0 -0
  544. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  545. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  546. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  547. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Italiana-OFL.txt +0 -0
  548. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
  549. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  550. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
  551. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  552. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
  553. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
  554. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Jura-OFL.txt +0 -0
  555. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
  556. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  557. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
  558. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  559. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
  560. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Lora-OFL.txt +0 -0
  561. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
  562. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
  563. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/NationalPark-OFL.txt +0 -0
  564. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
  565. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
  566. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  567. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
  568. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Outfit-OFL.txt +0 -0
  569. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
  570. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  571. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/PixelifySans-OFL.txt +0 -0
  572. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/PoiretOne-OFL.txt +0 -0
  573. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  574. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  575. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/RedHatMono-OFL.txt +0 -0
  576. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  577. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Silkscreen-OFL.txt +0 -0
  578. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  579. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  580. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/SmoochSans-OFL.txt +0 -0
  581. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
  582. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Tektur-OFL.txt +0 -0
  583. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
  584. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
  585. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  586. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
  587. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/WorkSans-OFL.txt +0 -0
  588. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
  589. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/YoungSerif-OFL.txt +0 -0
  590. /package/packages/droid/{skills → commands}/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  591. /package/packages/{opencode/skills-backup → droid/commands}/code-review.md +0 -0
  592. /package/packages/{opencode/skills-backup → droid/commands/condition-based-waiting}/condition-based-waiting.md +0 -0
  593. /package/packages/droid/{skills → commands}/condition-based-waiting/example.ts +0 -0
  594. /package/packages/{opencode/skills-backup → droid/commands/docx}/docx.md +0 -0
  595. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +0 -0
  596. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +0 -0
  597. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +0 -0
  598. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +0 -0
  599. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +0 -0
  600. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +0 -0
  601. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +0 -0
  602. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +0 -0
  603. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +0 -0
  604. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +0 -0
  605. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +0 -0
  606. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +0 -0
  607. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +0 -0
  608. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +0 -0
  609. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +0 -0
  610. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +0 -0
  611. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +0 -0
  612. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +0 -0
  613. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +0 -0
  614. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +0 -0
  615. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +0 -0
  616. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +0 -0
  617. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +0 -0
  618. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +0 -0
  619. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +0 -0
  620. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +0 -0
  621. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +0 -0
  622. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +0 -0
  623. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +0 -0
  624. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +0 -0
  625. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +0 -0
  626. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/mce/mc.xsd +0 -0
  627. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/microsoft/wml-2010.xsd +0 -0
  628. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/microsoft/wml-2012.xsd +0 -0
  629. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/microsoft/wml-2018.xsd +0 -0
  630. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +0 -0
  631. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +0 -0
  632. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +0 -0
  633. /package/packages/droid/{skills → commands}/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +0 -0
  634. /package/packages/droid/{skills → commands}/docx/ooxml/scripts/pack.py +0 -0
  635. /package/packages/droid/{skills → commands}/docx/ooxml/scripts/unpack.py +0 -0
  636. /package/packages/droid/{skills → commands}/docx/ooxml/scripts/validate.py +0 -0
  637. /package/packages/droid/{skills → commands}/docx/ooxml/scripts/validation/__init__.py +0 -0
  638. /package/packages/droid/{skills → commands}/docx/ooxml/scripts/validation/base.py +0 -0
  639. /package/packages/droid/{skills → commands}/docx/ooxml/scripts/validation/docx.py +0 -0
  640. /package/packages/droid/{skills → commands}/docx/ooxml/scripts/validation/pptx.py +0 -0
  641. /package/packages/droid/{skills → commands}/docx/ooxml/scripts/validation/redlining.py +0 -0
  642. /package/packages/droid/{skills → commands}/docx/scripts/__init__.py +0 -0
  643. /package/packages/droid/{skills → commands}/docx/scripts/document.py +0 -0
  644. /package/packages/droid/{skills → commands}/docx/scripts/templates/comments.xml +0 -0
  645. /package/packages/droid/{skills → commands}/docx/scripts/templates/commentsExtended.xml +0 -0
  646. /package/packages/droid/{skills → commands}/docx/scripts/templates/commentsExtensible.xml +0 -0
  647. /package/packages/droid/{skills → commands}/docx/scripts/templates/commentsIds.xml +0 -0
  648. /package/packages/droid/{skills → commands}/docx/scripts/templates/people.xml +0 -0
  649. /package/packages/droid/{skills → commands}/docx/scripts/utilities.py +0 -0
  650. /package/packages/droid/{skills → commands}/internal-comms/examples/3p-updates.md +0 -0
  651. /package/packages/droid/{skills → commands}/internal-comms/examples/company-newsletter.md +0 -0
  652. /package/packages/droid/{skills → commands}/internal-comms/examples/faq-answers.md +0 -0
  653. /package/packages/droid/{skills → commands}/internal-comms/examples/general-comms.md +0 -0
  654. /package/packages/{opencode/skills-backup → droid/commands/internal-comms}/internal-comms.md +0 -0
  655. /package/packages/{opencode/skills-backup → droid/commands/mcp-builder}/mcp-builder.md +0 -0
  656. /package/packages/droid/{skills → commands}/mcp-builder/reference/evaluation.md +0 -0
  657. /package/packages/droid/{skills → commands}/mcp-builder/reference/mcp_best_practices.md +0 -0
  658. /package/packages/droid/{skills → commands}/mcp-builder/reference/node_mcp_server.md +0 -0
  659. /package/packages/droid/{skills → commands}/mcp-builder/reference/python_mcp_server.md +0 -0
  660. /package/packages/droid/{skills → commands}/mcp-builder/scripts/connections.py +0 -0
  661. /package/packages/droid/{skills → commands}/mcp-builder/scripts/evaluation.py +0 -0
  662. /package/packages/droid/{skills → commands}/mcp-builder/scripts/example_evaluation.xml +0 -0
  663. /package/packages/droid/{skills → commands}/mcp-builder/scripts/requirements.txt +0 -0
  664. /package/packages/{opencode/skills-backup → droid/commands/pdf}/pdf.md +0 -0
  665. /package/packages/droid/{skills → commands}/pdf/scripts/check_bounding_boxes.py +0 -0
  666. /package/packages/droid/{skills → commands}/pdf/scripts/check_bounding_boxes_test.py +0 -0
  667. /package/packages/droid/{skills → commands}/pdf/scripts/check_fillable_fields.py +0 -0
  668. /package/packages/droid/{skills → commands}/pdf/scripts/convert_pdf_to_images.py +0 -0
  669. /package/packages/droid/{skills → commands}/pdf/scripts/create_validation_image.py +0 -0
  670. /package/packages/droid/{skills → commands}/pdf/scripts/extract_form_field_info.py +0 -0
  671. /package/packages/droid/{skills → commands}/pdf/scripts/fill_fillable_fields.py +0 -0
  672. /package/packages/droid/{skills → commands}/pdf/scripts/fill_pdf_form_with_annotations.py +0 -0
  673. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +0 -0
  674. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +0 -0
  675. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +0 -0
  676. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +0 -0
  677. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +0 -0
  678. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +0 -0
  679. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +0 -0
  680. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +0 -0
  681. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +0 -0
  682. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +0 -0
  683. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +0 -0
  684. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +0 -0
  685. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +0 -0
  686. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +0 -0
  687. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +0 -0
  688. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +0 -0
  689. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +0 -0
  690. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +0 -0
  691. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +0 -0
  692. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +0 -0
  693. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +0 -0
  694. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +0 -0
  695. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +0 -0
  696. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +0 -0
  697. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +0 -0
  698. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +0 -0
  699. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +0 -0
  700. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +0 -0
  701. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +0 -0
  702. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +0 -0
  703. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +0 -0
  704. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/mce/mc.xsd +0 -0
  705. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-2010.xsd +0 -0
  706. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-2012.xsd +0 -0
  707. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-2018.xsd +0 -0
  708. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +0 -0
  709. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +0 -0
  710. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +0 -0
  711. /package/packages/droid/{skills → commands}/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +0 -0
  712. /package/packages/droid/{skills → commands}/pptx/ooxml/scripts/pack.py +0 -0
  713. /package/packages/droid/{skills → commands}/pptx/ooxml/scripts/unpack.py +0 -0
  714. /package/packages/droid/{skills → commands}/pptx/ooxml/scripts/validate.py +0 -0
  715. /package/packages/droid/{skills → commands}/pptx/ooxml/scripts/validation/__init__.py +0 -0
  716. /package/packages/droid/{skills → commands}/pptx/ooxml/scripts/validation/base.py +0 -0
  717. /package/packages/droid/{skills → commands}/pptx/ooxml/scripts/validation/docx.py +0 -0
  718. /package/packages/droid/{skills → commands}/pptx/ooxml/scripts/validation/pptx.py +0 -0
  719. /package/packages/droid/{skills → commands}/pptx/ooxml/scripts/validation/redlining.py +0 -0
  720. /package/packages/{opencode/skills-backup → droid/commands/pptx}/pptx.md +0 -0
  721. /package/packages/droid/{skills → commands}/pptx/scripts/html2pptx.js +0 -0
  722. /package/packages/droid/{skills → commands}/pptx/scripts/inventory.py +0 -0
  723. /package/packages/droid/{skills → commands}/pptx/scripts/rearrange.py +0 -0
  724. /package/packages/droid/{skills → commands}/pptx/scripts/replace.py +0 -0
  725. /package/packages/droid/{skills → commands}/pptx/scripts/thumbnail.py +0 -0
  726. /package/packages/droid/{skills → commands}/root-cause-tracing/find-polluter.sh +0 -0
  727. /package/packages/{opencode/skills-backup → droid/commands/root-cause-tracing}/root-cause-tracing.md +0 -0
  728. /package/packages/droid/{skills → commands}/skill-creator/scripts/init_skill.py +0 -0
  729. /package/packages/droid/{skills → commands}/skill-creator/scripts/package_skill.py +0 -0
  730. /package/packages/droid/{skills → commands}/skill-creator/scripts/quick_validate.py +0 -0
  731. /package/packages/{opencode/skills-backup → droid/commands/skill-creator}/skill-creator.md +0 -0
  732. /package/packages/droid/{skills → commands}/slack-gif-creator/core/color_palettes.py +0 -0
  733. /package/packages/droid/{skills → commands}/slack-gif-creator/core/easing.py +0 -0
  734. /package/packages/droid/{skills → commands}/slack-gif-creator/core/frame_composer.py +0 -0
  735. /package/packages/droid/{skills → commands}/slack-gif-creator/core/gif_builder.py +0 -0
  736. /package/packages/droid/{skills → commands}/slack-gif-creator/core/typography.py +0 -0
  737. /package/packages/droid/{skills → commands}/slack-gif-creator/core/validators.py +0 -0
  738. /package/packages/droid/{skills → commands}/slack-gif-creator/core/visual_effects.py +0 -0
  739. /package/packages/{opencode/skills-backup → droid/commands/slack-gif-creator}/slack-gif-creator.md +0 -0
  740. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/bounce.py +0 -0
  741. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/explode.py +0 -0
  742. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/fade.py +0 -0
  743. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/flip.py +0 -0
  744. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/kaleidoscope.py +0 -0
  745. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/morph.py +0 -0
  746. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/move.py +0 -0
  747. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/pulse.py +0 -0
  748. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/shake.py +0 -0
  749. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/slide.py +0 -0
  750. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/spin.py +0 -0
  751. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/wiggle.py +0 -0
  752. /package/packages/droid/{skills → commands}/slack-gif-creator/templates/zoom.py +0 -0
  753. /package/packages/{opencode/skills-backup → droid/commands}/systematic-debugging.md +0 -0
  754. /package/packages/{opencode/skills-backup → droid/commands}/test-driven-development.md +0 -0
  755. /package/packages/{opencode/skills-backup → droid/commands}/testing-anti-patterns.md +0 -0
  756. /package/packages/{opencode/skills-backup → droid/commands/theme-factory}/theme-factory.md +0 -0
  757. /package/packages/droid/{skills → commands}/theme-factory/themes/arctic-frost.md +0 -0
  758. /package/packages/droid/{skills → commands}/theme-factory/themes/botanical-garden.md +0 -0
  759. /package/packages/droid/{skills → commands}/theme-factory/themes/desert-rose.md +0 -0
  760. /package/packages/droid/{skills → commands}/theme-factory/themes/forest-canopy.md +0 -0
  761. /package/packages/droid/{skills → commands}/theme-factory/themes/golden-hour.md +0 -0
  762. /package/packages/droid/{skills → commands}/theme-factory/themes/midnight-galaxy.md +0 -0
  763. /package/packages/droid/{skills → commands}/theme-factory/themes/modern-minimalist.md +0 -0
  764. /package/packages/droid/{skills → commands}/theme-factory/themes/ocean-depths.md +0 -0
  765. /package/packages/droid/{skills → commands}/theme-factory/themes/sunset-boulevard.md +0 -0
  766. /package/packages/droid/{skills → commands}/theme-factory/themes/tech-innovation.md +0 -0
  767. /package/packages/{opencode/skills-backup → droid/commands}/verification-before-completion.md +0 -0
  768. /package/packages/droid/{skills → commands}/webapp-testing/examples/console_logging.py +0 -0
  769. /package/packages/droid/{skills → commands}/webapp-testing/examples/element_discovery.py +0 -0
  770. /package/packages/droid/{skills → commands}/webapp-testing/examples/static_html_automation.py +0 -0
  771. /package/packages/droid/{skills → commands}/webapp-testing/scripts/with_server.py +0 -0
  772. /package/packages/{opencode/skills-backup → droid/commands/webapp-testing}/webapp-testing.md +0 -0
  773. /package/packages/droid/{skills → commands}/xlsx/recalc.py +0 -0
  774. /package/packages/{opencode/skills-backup → droid/commands/xlsx}/xlsx.md +0 -0
  775. /package/packages/droid/{agents → droids}/business-analyst.md +0 -0
  776. /package/packages/droid/{agents → droids}/full-stack-dev.md +0 -0
  777. /package/packages/droid/{agents → droids}/holistic-architect.md +0 -0
  778. /package/packages/droid/{agents → droids}/product-manager.md +0 -0
  779. /package/packages/droid/{agents → droids}/product-owner.md +0 -0
  780. /package/packages/droid/{agents → droids}/qa-test-architect.md +0 -0
  781. /package/packages/droid/{agents → droids}/scrum-master.md +0 -0
  782. /package/packages/droid/{agents → droids}/ux-expert.md +0 -0
  783. /package/packages/{droid/skills → opencode/command}/README.md +0 -0
  784. /package/packages/opencode/{skills → command}/algorithmic-art/templates/generator_template.js +0 -0
  785. /package/packages/opencode/{skills → command}/algorithmic-art/templates/viewer.html +0 -0
  786. /package/packages/opencode/{skills → command}/artifacts-builder/scripts/bundle-artifact.sh +0 -0
  787. /package/packages/opencode/{skills → command}/artifacts-builder/scripts/init-artifact.sh +0 -0
  788. /package/packages/opencode/{skills → command}/artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
  789. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +0 -0
  790. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  791. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  792. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/BigShoulders-OFL.txt +0 -0
  793. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  794. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Boldonse-OFL.txt +0 -0
  795. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
  796. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  797. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
  798. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  799. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  800. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  801. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +0 -0
  802. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  803. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/DMMono-OFL.txt +0 -0
  804. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
  805. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/EricaOne-OFL.txt +0 -0
  806. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
  807. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
  808. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/GeistMono-OFL.txt +0 -0
  809. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
  810. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Gloock-OFL.txt +0 -0
  811. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
  812. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  813. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
  814. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  815. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  816. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  817. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  818. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  819. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  820. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  821. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  822. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +0 -0
  823. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  824. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  825. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  826. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Italiana-OFL.txt +0 -0
  827. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
  828. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  829. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
  830. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  831. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
  832. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
  833. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Jura-OFL.txt +0 -0
  834. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
  835. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  836. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
  837. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  838. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
  839. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Lora-OFL.txt +0 -0
  840. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
  841. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
  842. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/NationalPark-OFL.txt +0 -0
  843. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
  844. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
  845. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  846. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
  847. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Outfit-OFL.txt +0 -0
  848. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
  849. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  850. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/PixelifySans-OFL.txt +0 -0
  851. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/PoiretOne-OFL.txt +0 -0
  852. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  853. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  854. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/RedHatMono-OFL.txt +0 -0
  855. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  856. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Silkscreen-OFL.txt +0 -0
  857. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  858. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  859. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/SmoochSans-OFL.txt +0 -0
  860. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
  861. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Tektur-OFL.txt +0 -0
  862. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
  863. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
  864. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  865. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
  866. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/WorkSans-OFL.txt +0 -0
  867. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
  868. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/YoungSerif-OFL.txt +0 -0
  869. /package/packages/opencode/{skills → command}/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  870. /package/packages/opencode/{skills → command}/condition-based-waiting/example.ts +0 -0
  871. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +0 -0
  872. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +0 -0
  873. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +0 -0
  874. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +0 -0
  875. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +0 -0
  876. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +0 -0
  877. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +0 -0
  878. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +0 -0
  879. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +0 -0
  880. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +0 -0
  881. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +0 -0
  882. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +0 -0
  883. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +0 -0
  884. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +0 -0
  885. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +0 -0
  886. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +0 -0
  887. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +0 -0
  888. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +0 -0
  889. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +0 -0
  890. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +0 -0
  891. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +0 -0
  892. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +0 -0
  893. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +0 -0
  894. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +0 -0
  895. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +0 -0
  896. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +0 -0
  897. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +0 -0
  898. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +0 -0
  899. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +0 -0
  900. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +0 -0
  901. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +0 -0
  902. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/mce/mc.xsd +0 -0
  903. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/microsoft/wml-2010.xsd +0 -0
  904. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/microsoft/wml-2012.xsd +0 -0
  905. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/microsoft/wml-2018.xsd +0 -0
  906. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +0 -0
  907. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +0 -0
  908. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +0 -0
  909. /package/packages/opencode/{skills → command}/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +0 -0
  910. /package/packages/opencode/{skills → command}/docx/ooxml/scripts/pack.py +0 -0
  911. /package/packages/opencode/{skills → command}/docx/ooxml/scripts/unpack.py +0 -0
  912. /package/packages/opencode/{skills → command}/docx/ooxml/scripts/validate.py +0 -0
  913. /package/packages/opencode/{skills → command}/docx/ooxml/scripts/validation/__init__.py +0 -0
  914. /package/packages/opencode/{skills → command}/docx/ooxml/scripts/validation/base.py +0 -0
  915. /package/packages/opencode/{skills → command}/docx/ooxml/scripts/validation/docx.py +0 -0
  916. /package/packages/opencode/{skills → command}/docx/ooxml/scripts/validation/pptx.py +0 -0
  917. /package/packages/opencode/{skills → command}/docx/ooxml/scripts/validation/redlining.py +0 -0
  918. /package/packages/opencode/{skills → command}/docx/scripts/__init__.py +0 -0
  919. /package/packages/opencode/{skills → command}/docx/scripts/document.py +0 -0
  920. /package/packages/opencode/{skills → command}/docx/scripts/templates/comments.xml +0 -0
  921. /package/packages/opencode/{skills → command}/docx/scripts/templates/commentsExtended.xml +0 -0
  922. /package/packages/opencode/{skills → command}/docx/scripts/templates/commentsExtensible.xml +0 -0
  923. /package/packages/opencode/{skills → command}/docx/scripts/templates/commentsIds.xml +0 -0
  924. /package/packages/opencode/{skills → command}/docx/scripts/templates/people.xml +0 -0
  925. /package/packages/opencode/{skills → command}/docx/scripts/utilities.py +0 -0
  926. /package/packages/opencode/{skills → command}/internal-comms/examples/3p-updates.md +0 -0
  927. /package/packages/opencode/{skills → command}/internal-comms/examples/company-newsletter.md +0 -0
  928. /package/packages/opencode/{skills → command}/internal-comms/examples/faq-answers.md +0 -0
  929. /package/packages/opencode/{skills → command}/internal-comms/examples/general-comms.md +0 -0
  930. /package/packages/opencode/{skills → command}/mcp-builder/reference/evaluation.md +0 -0
  931. /package/packages/opencode/{skills → command}/mcp-builder/reference/mcp_best_practices.md +0 -0
  932. /package/packages/opencode/{skills → command}/mcp-builder/reference/node_mcp_server.md +0 -0
  933. /package/packages/opencode/{skills → command}/mcp-builder/reference/python_mcp_server.md +0 -0
  934. /package/packages/opencode/{skills → command}/mcp-builder/scripts/connections.py +0 -0
  935. /package/packages/opencode/{skills → command}/mcp-builder/scripts/evaluation.py +0 -0
  936. /package/packages/opencode/{skills → command}/mcp-builder/scripts/example_evaluation.xml +0 -0
  937. /package/packages/opencode/{skills → command}/mcp-builder/scripts/requirements.txt +0 -0
  938. /package/packages/opencode/{skills → command}/pdf/scripts/check_bounding_boxes.py +0 -0
  939. /package/packages/opencode/{skills → command}/pdf/scripts/check_bounding_boxes_test.py +0 -0
  940. /package/packages/opencode/{skills → command}/pdf/scripts/check_fillable_fields.py +0 -0
  941. /package/packages/opencode/{skills → command}/pdf/scripts/convert_pdf_to_images.py +0 -0
  942. /package/packages/opencode/{skills → command}/pdf/scripts/create_validation_image.py +0 -0
  943. /package/packages/opencode/{skills → command}/pdf/scripts/extract_form_field_info.py +0 -0
  944. /package/packages/opencode/{skills → command}/pdf/scripts/fill_fillable_fields.py +0 -0
  945. /package/packages/opencode/{skills → command}/pdf/scripts/fill_pdf_form_with_annotations.py +0 -0
  946. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +0 -0
  947. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +0 -0
  948. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +0 -0
  949. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +0 -0
  950. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +0 -0
  951. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +0 -0
  952. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +0 -0
  953. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +0 -0
  954. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +0 -0
  955. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +0 -0
  956. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +0 -0
  957. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +0 -0
  958. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +0 -0
  959. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +0 -0
  960. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +0 -0
  961. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +0 -0
  962. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +0 -0
  963. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +0 -0
  964. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +0 -0
  965. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +0 -0
  966. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +0 -0
  967. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +0 -0
  968. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +0 -0
  969. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +0 -0
  970. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +0 -0
  971. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +0 -0
  972. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +0 -0
  973. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +0 -0
  974. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +0 -0
  975. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +0 -0
  976. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +0 -0
  977. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/mce/mc.xsd +0 -0
  978. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/microsoft/wml-2010.xsd +0 -0
  979. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/microsoft/wml-2012.xsd +0 -0
  980. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/microsoft/wml-2018.xsd +0 -0
  981. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +0 -0
  982. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +0 -0
  983. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +0 -0
  984. /package/packages/opencode/{skills → command}/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +0 -0
  985. /package/packages/opencode/{skills → command}/pptx/ooxml/scripts/pack.py +0 -0
  986. /package/packages/opencode/{skills → command}/pptx/ooxml/scripts/unpack.py +0 -0
  987. /package/packages/opencode/{skills → command}/pptx/ooxml/scripts/validate.py +0 -0
  988. /package/packages/opencode/{skills → command}/pptx/ooxml/scripts/validation/__init__.py +0 -0
  989. /package/packages/opencode/{skills → command}/pptx/ooxml/scripts/validation/base.py +0 -0
  990. /package/packages/opencode/{skills → command}/pptx/ooxml/scripts/validation/docx.py +0 -0
  991. /package/packages/opencode/{skills → command}/pptx/ooxml/scripts/validation/pptx.py +0 -0
  992. /package/packages/opencode/{skills → command}/pptx/ooxml/scripts/validation/redlining.py +0 -0
  993. /package/packages/opencode/{skills → command}/pptx/scripts/html2pptx.js +0 -0
  994. /package/packages/opencode/{skills → command}/pptx/scripts/inventory.py +0 -0
  995. /package/packages/opencode/{skills → command}/pptx/scripts/rearrange.py +0 -0
  996. /package/packages/opencode/{skills → command}/pptx/scripts/replace.py +0 -0
  997. /package/packages/opencode/{skills → command}/pptx/scripts/thumbnail.py +0 -0
  998. /package/packages/opencode/{skills → command}/root-cause-tracing/find-polluter.sh +0 -0
  999. /package/packages/opencode/{skills → command}/skill-creator/scripts/init_skill.py +0 -0
  1000. /package/packages/opencode/{skills → command}/skill-creator/scripts/package_skill.py +0 -0
  1001. /package/packages/opencode/{skills → command}/skill-creator/scripts/quick_validate.py +0 -0
  1002. /package/packages/opencode/{skills → command}/slack-gif-creator/core/color_palettes.py +0 -0
  1003. /package/packages/opencode/{skills → command}/slack-gif-creator/core/easing.py +0 -0
  1004. /package/packages/opencode/{skills → command}/slack-gif-creator/core/frame_composer.py +0 -0
  1005. /package/packages/opencode/{skills → command}/slack-gif-creator/core/gif_builder.py +0 -0
  1006. /package/packages/opencode/{skills → command}/slack-gif-creator/core/typography.py +0 -0
  1007. /package/packages/opencode/{skills → command}/slack-gif-creator/core/validators.py +0 -0
  1008. /package/packages/opencode/{skills → command}/slack-gif-creator/core/visual_effects.py +0 -0
  1009. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/bounce.py +0 -0
  1010. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/explode.py +0 -0
  1011. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/fade.py +0 -0
  1012. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/flip.py +0 -0
  1013. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/kaleidoscope.py +0 -0
  1014. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/morph.py +0 -0
  1015. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/move.py +0 -0
  1016. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/pulse.py +0 -0
  1017. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/shake.py +0 -0
  1018. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/slide.py +0 -0
  1019. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/spin.py +0 -0
  1020. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/wiggle.py +0 -0
  1021. /package/packages/opencode/{skills → command}/slack-gif-creator/templates/zoom.py +0 -0
  1022. /package/packages/opencode/{skills → command}/theme-factory/themes/arctic-frost.md +0 -0
  1023. /package/packages/opencode/{skills → command}/theme-factory/themes/botanical-garden.md +0 -0
  1024. /package/packages/opencode/{skills → command}/theme-factory/themes/desert-rose.md +0 -0
  1025. /package/packages/opencode/{skills → command}/theme-factory/themes/forest-canopy.md +0 -0
  1026. /package/packages/opencode/{skills → command}/theme-factory/themes/golden-hour.md +0 -0
  1027. /package/packages/opencode/{skills → command}/theme-factory/themes/midnight-galaxy.md +0 -0
  1028. /package/packages/opencode/{skills → command}/theme-factory/themes/modern-minimalist.md +0 -0
  1029. /package/packages/opencode/{skills → command}/theme-factory/themes/ocean-depths.md +0 -0
  1030. /package/packages/opencode/{skills → command}/theme-factory/themes/sunset-boulevard.md +0 -0
  1031. /package/packages/opencode/{skills → command}/theme-factory/themes/tech-innovation.md +0 -0
  1032. /package/packages/opencode/{skills → command}/webapp-testing/examples/console_logging.py +0 -0
  1033. /package/packages/opencode/{skills → command}/webapp-testing/examples/element_discovery.py +0 -0
  1034. /package/packages/opencode/{skills → command}/webapp-testing/examples/static_html_automation.py +0 -0
  1035. /package/packages/opencode/{skills → command}/webapp-testing/scripts/with_server.py +0 -0
  1036. /package/packages/opencode/{skills → command}/xlsx/recalc.py +0 -0
@@ -1,202 +0,0 @@
1
-
2
- Apache License
3
- Version 2.0, January 2004
4
- http://www.apache.org/licenses/
5
-
6
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
-
8
- 1. Definitions.
9
-
10
- "License" shall mean the terms and conditions for use, reproduction,
11
- and distribution as defined by Sections 1 through 9 of this document.
12
-
13
- "Licensor" shall mean the copyright owner or entity authorized by
14
- the copyright owner that is granting the License.
15
-
16
- "Legal Entity" shall mean the union of the acting entity and all
17
- other entities that control, are controlled by, or are under common
18
- control with that entity. For the purposes of this definition,
19
- "control" means (i) the power, direct or indirect, to cause the
20
- direction or management of such entity, whether by contract or
21
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
- outstanding shares, or (iii) beneficial ownership of such entity.
23
-
24
- "You" (or "Your") shall mean an individual or Legal Entity
25
- exercising permissions granted by this License.
26
-
27
- "Source" form shall mean the preferred form for making modifications,
28
- including but not limited to software source code, documentation
29
- source, and configuration files.
30
-
31
- "Object" form shall mean any form resulting from mechanical
32
- transformation or translation of a Source form, including but
33
- not limited to compiled object code, generated documentation,
34
- and conversions to other media types.
35
-
36
- "Work" shall mean the work of authorship, whether in Source or
37
- Object form, made available under the License, as indicated by a
38
- copyright notice that is included in or attached to the work
39
- (an example is provided in the Appendix below).
40
-
41
- "Derivative Works" shall mean any work, whether in Source or Object
42
- form, that is based on (or derived from) the Work and for which the
43
- editorial revisions, annotations, elaborations, or other modifications
44
- represent, as a whole, an original work of authorship. For the purposes
45
- of this License, Derivative Works shall not include works that remain
46
- separable from, or merely link (or bind by name) to the interfaces of,
47
- the Work and Derivative Works thereof.
48
-
49
- "Contribution" shall mean any work of authorship, including
50
- the original version of the Work and any modifications or additions
51
- to that Work or Derivative Works thereof, that is intentionally
52
- submitted to Licensor for inclusion in the Work by the copyright owner
53
- or by an individual or Legal Entity authorized to submit on behalf of
54
- the copyright owner. For the purposes of this definition, "submitted"
55
- means any form of electronic, verbal, or written communication sent
56
- to the Licensor or its representatives, including but not limited to
57
- communication on electronic mailing lists, source code control systems,
58
- and issue tracking systems that are managed by, or on behalf of, the
59
- Licensor for the purpose of discussing and improving the Work, but
60
- excluding communication that is conspicuously marked or otherwise
61
- designated in writing by the copyright owner as "Not a Contribution."
62
-
63
- "Contributor" shall mean Licensor and any individual or Legal Entity
64
- on behalf of whom a Contribution has been received by Licensor and
65
- subsequently incorporated within the Work.
66
-
67
- 2. Grant of Copyright License. Subject to the terms and conditions of
68
- this License, each Contributor hereby grants to You a perpetual,
69
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
- copyright license to reproduce, prepare Derivative Works of,
71
- publicly display, publicly perform, sublicense, and distribute the
72
- Work and such Derivative Works in Source or Object form.
73
-
74
- 3. Grant of Patent License. Subject to the terms and conditions of
75
- this License, each Contributor hereby grants to You a perpetual,
76
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
- (except as stated in this section) patent license to make, have made,
78
- use, offer to sell, sell, import, and otherwise transfer the Work,
79
- where such license applies only to those patent claims licensable
80
- by such Contributor that are necessarily infringed by their
81
- Contribution(s) alone or by combination of their Contribution(s)
82
- with the Work to which such Contribution(s) was submitted. If You
83
- institute patent litigation against any entity (including a
84
- cross-claim or counterclaim in a lawsuit) alleging that the Work
85
- or a Contribution incorporated within the Work constitutes direct
86
- or contributory patent infringement, then any patent licenses
87
- granted to You under this License for that Work shall terminate
88
- as of the date such litigation is filed.
89
-
90
- 4. Redistribution. You may reproduce and distribute copies of the
91
- Work or Derivative Works thereof in any medium, with or without
92
- modifications, and in Source or Object form, provided that You
93
- meet the following conditions:
94
-
95
- (a) You must give any other recipients of the Work or
96
- Derivative Works a copy of this License; and
97
-
98
- (b) You must cause any modified files to carry prominent notices
99
- stating that You changed the files; and
100
-
101
- (c) You must retain, in the Source form of any Derivative Works
102
- that You distribute, all copyright, patent, trademark, and
103
- attribution notices from the Source form of the Work,
104
- excluding those notices that do not pertain to any part of
105
- the Derivative Works; and
106
-
107
- (d) If the Work includes a "NOTICE" text file as part of its
108
- distribution, then any Derivative Works that You distribute must
109
- include a readable copy of the attribution notices contained
110
- within such NOTICE file, excluding those notices that do not
111
- pertain to any part of the Derivative Works, in at least one
112
- of the following places: within a NOTICE text file distributed
113
- as part of the Derivative Works; within the Source form or
114
- documentation, if provided along with the Derivative Works; or,
115
- within a display generated by the Derivative Works, if and
116
- wherever such third-party notices normally appear. The contents
117
- of the NOTICE file are for informational purposes only and
118
- do not modify the License. You may add Your own attribution
119
- notices within Derivative Works that You distribute, alongside
120
- or as an addendum to the NOTICE text from the Work, provided
121
- that such additional attribution notices cannot be construed
122
- as modifying the License.
123
-
124
- You may add Your own copyright statement to Your modifications and
125
- may provide additional or different license terms and conditions
126
- for use, reproduction, or distribution of Your modifications, or
127
- for any such Derivative Works as a whole, provided Your use,
128
- reproduction, and distribution of the Work otherwise complies with
129
- the conditions stated in this License.
130
-
131
- 5. Submission of Contributions. Unless You explicitly state otherwise,
132
- any Contribution intentionally submitted for inclusion in the Work
133
- by You to the Licensor shall be under the terms and conditions of
134
- this License, without any additional terms or conditions.
135
- Notwithstanding the above, nothing herein shall supersede or modify
136
- the terms of any separate license agreement you may have executed
137
- with Licensor regarding such Contributions.
138
-
139
- 6. Trademarks. This License does not grant permission to use the trade
140
- names, trademarks, service marks, or product names of the Licensor,
141
- except as required for reasonable and customary use in describing the
142
- origin of the Work and reproducing the content of the NOTICE file.
143
-
144
- 7. Disclaimer of Warranty. Unless required by applicable law or
145
- agreed to in writing, Licensor provides the Work (and each
146
- Contributor provides its Contributions) on an "AS IS" BASIS,
147
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
- implied, including, without limitation, any warranties or conditions
149
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
- PARTICULAR PURPOSE. You are solely responsible for determining the
151
- appropriateness of using or redistributing the Work and assume any
152
- risks associated with Your exercise of permissions under this License.
153
-
154
- 8. Limitation of Liability. In no event and under no legal theory,
155
- whether in tort (including negligence), contract, or otherwise,
156
- unless required by applicable law (such as deliberate and grossly
157
- negligent acts) or agreed to in writing, shall any Contributor be
158
- liable to You for damages, including any direct, indirect, special,
159
- incidental, or consequential damages of any character arising as a
160
- result of this License or out of the use or inability to use the
161
- Work (including but not limited to damages for loss of goodwill,
162
- work stoppage, computer failure or malfunction, or any and all
163
- other commercial damages or losses), even if such Contributor
164
- has been advised of the possibility of such damages.
165
-
166
- 9. Accepting Warranty or Additional Liability. While redistributing
167
- the Work or Derivative Works thereof, You may choose to offer,
168
- and charge a fee for, acceptance of support, warranty, indemnity,
169
- or other liability obligations and/or rights consistent with this
170
- License. However, in accepting such obligations, You may act only
171
- on Your own behalf and on Your sole responsibility, not on behalf
172
- of any other Contributor, and only if You agree to indemnify,
173
- defend, and hold each Contributor harmless for any liability
174
- incurred by, or claims asserted against, such Contributor by reason
175
- of your accepting any such warranty or additional liability.
176
-
177
- END OF TERMS AND CONDITIONS
178
-
179
- APPENDIX: How to apply the Apache License to your work.
180
-
181
- To apply the Apache License to your work, attach the following
182
- boilerplate notice, with the fields enclosed by brackets "[]"
183
- replaced with your own identifying information. (Don't include
184
- the brackets!) The text should be enclosed in the appropriate
185
- comment syntax for the file format. We also recommend that a
186
- file or class name and description of purpose be included on the
187
- same "printed page" as the copyright notice for easier
188
- identification within third-party archives.
189
-
190
- Copyright [yyyy] [name of copyright owner]
191
-
192
- Licensed under the Apache License, Version 2.0 (the "License");
193
- you may not use this file except in compliance with the License.
194
- You may obtain a copy of the License at
195
-
196
- http://www.apache.org/licenses/LICENSE-2.0
197
-
198
- Unless required by applicable law or agreed to in writing, software
199
- distributed under the License is distributed on an "AS IS" BASIS,
200
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
- See the License for the specific language governing permissions and
202
- limitations under the License.
@@ -1,130 +0,0 @@
1
- ---
2
- name: canvas-design
3
- description: Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.
4
- license: Complete terms in LICENSE.txt
5
- ---
6
-
7
- These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files.
8
-
9
- Complete this in two steps:
10
- 1. Design Philosophy Creation (.md file)
11
- 2. Express by creating it on a canvas (.pdf file or .png file)
12
-
13
- First, undertake this task:
14
-
15
- ## DESIGN PHILOSOPHY CREATION
16
-
17
- To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through:
18
- - Form, space, color, composition
19
- - Images, graphics, shapes, patterns
20
- - Minimal text as visual accent
21
-
22
- ### THE CRITICAL UNDERSTANDING
23
- - What is received: Some subtle input or instructions by the user that should be taken into account, but used as a foundation; it should not constrain creative freedom.
24
- - What is created: A design philosophy/aesthetic movement.
25
- - What happens next: Then, the same version receives the philosophy and EXPRESSES IT VISUALLY - creating artifacts that are 90% visual design, 10% essential text.
26
-
27
- Consider this approach:
28
- - Write a manifesto for an art movement
29
- - The next phase involves making the artwork
30
-
31
- The philosophy must emphasize: Visual expression. Spatial communication. Artistic interpretation. Minimal words.
32
-
33
- ### HOW TO GENERATE A VISUAL PHILOSOPHY
34
-
35
- **Name the movement** (1-2 words): "Brutalist Joy" / "Chromatic Silence" / "Metabolist Dreams"
36
-
37
- **Articulate the philosophy** (4-6 paragraphs - concise but complete):
38
-
39
- To capture the VISUAL essence, express how the philosophy manifests through:
40
- - Space and form
41
- - Color and material
42
- - Scale and rhythm
43
- - Composition and balance
44
- - Visual hierarchy
45
-
46
- **CRITICAL GUIDELINES:**
47
- - **Avoid redundancy**: Each design aspect should be mentioned once. Avoid repeating points about color theory, spatial relationships, or typographic principles unless adding new depth.
48
- - **Emphasize craftsmanship REPEATEDLY**: The philosophy MUST stress multiple times that the final work should appear as though it took countless hours to create, was labored over with care, and comes from someone at the absolute top of their field. This framing is essential - repeat phrases like "meticulously crafted," "the product of deep expertise," "painstaking attention," "master-level execution."
49
- - **Leave creative space**: Remain specific about the aesthetic direction, but concise enough that the next Claude has room to make interpretive choices also at a extremely high level of craftmanship.
50
-
51
- The philosophy must guide the next version to express ideas VISUALLY, not through text. Information lives in design, not paragraphs.
52
-
53
- ### PHILOSOPHY EXAMPLES
54
-
55
- **"Concrete Poetry"**
56
- Philosophy: Communication through monumental form and bold geometry.
57
- Visual expression: Massive color blocks, sculptural typography (huge single words, tiny labels), Brutalist spatial divisions, Polish poster energy meets Le Corbusier. Ideas expressed through visual weight and spatial tension, not explanation. Text as rare, powerful gesture - never paragraphs, only essential words integrated into the visual architecture. Every element placed with the precision of a master craftsman.
58
-
59
- **"Chromatic Language"**
60
- Philosophy: Color as the primary information system.
61
- Visual expression: Geometric precision where color zones create meaning. Typography minimal - small sans-serif labels letting chromatic fields communicate. Think Josef Albers' interaction meets data visualization. Information encoded spatially and chromatically. Words only to anchor what color already shows. The result of painstaking chromatic calibration.
62
-
63
- **"Analog Meditation"**
64
- Philosophy: Quiet visual contemplation through texture and breathing room.
65
- Visual expression: Paper grain, ink bleeds, vast negative space. Photography and illustration dominate. Typography whispered (small, restrained, serving the visual). Japanese photobook aesthetic. Images breathe across pages. Text appears sparingly - short phrases, never explanatory blocks. Each composition balanced with the care of a meditation practice.
66
-
67
- **"Organic Systems"**
68
- Philosophy: Natural clustering and modular growth patterns.
69
- Visual expression: Rounded forms, organic arrangements, color from nature through architecture. Information shown through visual diagrams, spatial relationships, iconography. Text only for key labels floating in space. The composition tells the story through expert spatial orchestration.
70
-
71
- **"Geometric Silence"**
72
- Philosophy: Pure order and restraint.
73
- Visual expression: Grid-based precision, bold photography or stark graphics, dramatic negative space. Typography precise but minimal - small essential text, large quiet zones. Swiss formalism meets Brutalist material honesty. Structure communicates, not words. Every alignment the work of countless refinements.
74
-
75
- *These are condensed examples. The actual design philosophy should be 4-6 substantial paragraphs.*
76
-
77
- ### ESSENTIAL PRINCIPLES
78
- - **VISUAL PHILOSOPHY**: Create an aesthetic worldview to be expressed through design
79
- - **MINIMAL TEXT**: Always emphasize that text is sparse, essential-only, integrated as visual element - never lengthy
80
- - **SPATIAL EXPRESSION**: Ideas communicate through space, form, color, composition - not paragraphs
81
- - **ARTISTIC FREEDOM**: The next Claude interprets the philosophy visually - provide creative room
82
- - **PURE DESIGN**: This is about making ART OBJECTS, not documents with decoration
83
- - **EXPERT CRAFTSMANSHIP**: Repeatedly emphasize the final work must look meticulously crafted, labored over with care, the product of countless hours by someone at the top of their field
84
-
85
- **The design philosophy should be 4-6 paragraphs long.** Fill it with poetic design philosophy that brings together the core vision. Avoid repeating the same points. Keep the design philosophy generic without mentioning the intention of the art, as if it can be used wherever. Output the design philosophy as a .md file.
86
-
87
- ---
88
-
89
- ## DEDUCING THE SUBTLE REFERENCE
90
-
91
- **CRITICAL STEP**: Before creating the canvas, identify the subtle conceptual thread from the original request.
92
-
93
- **THE ESSENTIAL PRINCIPLE**:
94
- The topic is a **subtle, niche reference embedded within the art itself** - not always literal, always sophisticated. Someone familiar with the subject should feel it intuitively, while others simply experience a masterful abstract composition. The design philosophy provides the aesthetic language. The deduced topic provides the soul - the quiet conceptual DNA woven invisibly into form, color, and composition.
95
-
96
- This is **VERY IMPORTANT**: The reference must be refined so it enhances the work's depth without announcing itself. Think like a jazz musician quoting another song - only those who know will catch it, but everyone appreciates the music.
97
-
98
- ---
99
-
100
- ## CANVAS CREATION
101
-
102
- With both the philosophy and the conceptual framework established, express it on a canvas. Take a moment to gather thoughts and clear the mind. Use the design philosophy created and the instructions below to craft a masterpiece, embodying all aspects of the philosophy with expert craftsmanship.
103
-
104
- **IMPORTANT**: For any type of content, even if the user requests something for a movie/game/book, the approach should still be sophisticated. Never lose sight of the idea that this should be art, not something that's cartoony or amateur.
105
-
106
- To create museum or magazine quality work, use the design philosophy as the foundation. Create one single page, highly visual, design-forward PDF or PNG output (unless asked for more pages). Generally use repeating patterns and perfect shapes. Treat the abstract philosophical design as if it were a scientific bible, borrowing the visual language of systematic observation—dense accumulation of marks, repeated elements, or layered patterns that build meaning through patient repetition and reward sustained viewing. Add sparse, clinical typography and systematic reference markers that suggest this could be a diagram from an imaginary discipline, treating the invisible subject with the same reverence typically reserved for documenting observable phenomena. Anchor the piece with simple phrase(s) or details positioned subtly, using a limited color palette that feels intentional and cohesive. Embrace the paradox of using analytical visual language to express ideas about human experience: the result should feel like an artifact that proves something ephemeral can be studied, mapped, and understood through careful attention. This is true art.
107
-
108
- **Text as a contextual element**: Text is always minimal and visual-first, but let context guide whether that means whisper-quiet labels or bold typographic gestures. A punk venue poster might have larger, more aggressive type than a minimalist ceramics studio identity. Most of the time, font should be thin. All use of fonts must be design-forward and prioritize visual communication. Regardless of text scale, nothing falls off the page and nothing overlaps. Every element must be contained within the canvas boundaries with proper margins. Check carefully that all text, graphics, and visual elements have breathing room and clear separation. This is non-negotiable for professional execution. **IMPORTANT: Use different fonts if writing text. Search the `./canvas-fonts` directory. Regardless of approach, sophistication is non-negotiable.**
109
-
110
- Download and use whatever fonts are needed to make this a reality. Get creative by making the typography actually part of the art itself -- if the art is abstract, bring the font onto the canvas, not typeset digitally.
111
-
112
- To push boundaries, follow design instinct/intuition while using the philosophy as a guiding principle. Embrace ultimate design freedom and choice. Push aesthetics and design to the frontier.
113
-
114
- **CRITICAL**: To achieve human-crafted quality (not AI-generated), create work that looks like it took countless hours. Make it appear as though someone at the absolute top of their field labored over every detail with painstaking care. Ensure the composition, spacing, color choices, typography - everything screams expert-level craftsmanship. Double-check that nothing overlaps, formatting is flawless, every detail perfect. Create something that could be shown to people to prove expertise and rank as undeniably impressive.
115
-
116
- Output the final result as a single, downloadable .pdf or .png file, alongside the design philosophy used as a .md file.
117
-
118
- ---
119
-
120
- ## FINAL STEP
121
-
122
- **IMPORTANT**: The user ALREADY said "It isn't perfect enough. It must be pristine, a masterpiece if craftsmanship, as if it were about to be displayed in a museum."
123
-
124
- **CRITICAL**: To refine the work, avoid adding more graphics; instead refine what has been created and make it extremely crisp, respecting the design philosophy and the principles of minimalism entirely. Rather than adding a fun filter or refactoring a font, consider how to make the existing composition more cohesive with the art. If the instinct is to call a new function or draw a new shape, STOP and instead ask: "How can I make what's already here more of a piece of art?"
125
-
126
- Take a second pass. Go back to the code and refine/polish further to make this a philosophically designed masterpiece.
127
-
128
- ## MULTI-PAGE OPTION
129
-
130
- To create additional pages when requested, create more creative pages along the same lines as the design philosophy but distinctly different as well. Bundle those pages in the same .pdf or many .pngs. Treat the first page as just a single page in a whole coffee table book waiting to be filled. Make the next pages unique twists and memories of the original. Have them almost tell a story in a very tasteful way. Exercise full creative freedom.
@@ -1,105 +0,0 @@
1
- ---
2
- name: code-review
3
- description: Use when completing tasks, implementing major features, or before merging to verify work meets requirements - dispatches superpowers:code-reviewer subagent to review implementation against plan or requirements before proceeding
4
- ---
5
-
6
- # Requesting Code Review
7
-
8
- Dispatch superpowers:code-reviewer subagent to catch issues before they cascade.
9
-
10
- **Core principle:** Review early, review often.
11
-
12
- ## When to Request Review
13
-
14
- **Mandatory:**
15
- - After each task in subagent-driven development
16
- - After completing major feature
17
- - Before merge to main
18
-
19
- **Optional but valuable:**
20
- - When stuck (fresh perspective)
21
- - Before refactoring (baseline check)
22
- - After fixing complex bug
23
-
24
- ## How to Request
25
-
26
- **1. Get git SHAs:**
27
- ```bash
28
- BASE_SHA=$(git rev-parse HEAD~1) # or origin/main
29
- HEAD_SHA=$(git rev-parse HEAD)
30
- ```
31
-
32
- **2. Dispatch code-reviewer subagent:**
33
-
34
- Use Task tool with superpowers:code-reviewer type, fill template at `code-reviewer.md`
35
-
36
- **Placeholders:**
37
- - `{WHAT_WAS_IMPLEMENTED}` - What you just built
38
- - `{PLAN_OR_REQUIREMENTS}` - What it should do
39
- - `{BASE_SHA}` - Starting commit
40
- - `{HEAD_SHA}` - Ending commit
41
- - `{DESCRIPTION}` - Brief summary
42
-
43
- **3. Act on feedback:**
44
- - Fix Critical issues immediately
45
- - Fix Important issues before proceeding
46
- - Note Minor issues for later
47
- - Push back if reviewer is wrong (with reasoning)
48
-
49
- ## Example
50
-
51
- ```
52
- [Just completed Task 2: Add verification function]
53
-
54
- You: Let me request code review before proceeding.
55
-
56
- BASE_SHA=$(git log --oneline | grep "Task 1" | head -1 | awk '{print $1}')
57
- HEAD_SHA=$(git rev-parse HEAD)
58
-
59
- [Dispatch superpowers:code-reviewer subagent]
60
- WHAT_WAS_IMPLEMENTED: Verification and repair functions for conversation index
61
- PLAN_OR_REQUIREMENTS: Task 2 from docs/plans/deployment-plan.md
62
- BASE_SHA: a7981ec
63
- HEAD_SHA: 3df7661
64
- DESCRIPTION: Added verifyIndex() and repairIndex() with 4 issue types
65
-
66
- [Subagent returns]:
67
- Strengths: Clean architecture, real tests
68
- Issues:
69
- Important: Missing progress indicators
70
- Minor: Magic number (100) for reporting interval
71
- Assessment: Ready to proceed
72
-
73
- You: [Fix progress indicators]
74
- [Continue to Task 3]
75
- ```
76
-
77
- ## Integration with Workflows
78
-
79
- **Subagent-Driven Development:**
80
- - Review after EACH task
81
- - Catch issues before they compound
82
- - Fix before moving to next task
83
-
84
- **Executing Plans:**
85
- - Review after each batch (3 tasks)
86
- - Get feedback, apply, continue
87
-
88
- **Ad-Hoc Development:**
89
- - Review before merge
90
- - Review when stuck
91
-
92
- ## Red Flags
93
-
94
- **Never:**
95
- - Skip review because "it's simple"
96
- - Ignore Critical issues
97
- - Proceed with unfixed Important issues
98
- - Argue with valid technical feedback
99
-
100
- **If reviewer wrong:**
101
- - Push back with technical reasoning
102
- - Show code/tests that prove it works
103
- - Request clarification
104
-
105
- See template at: requesting-code-review/code-reviewer.md
@@ -1,120 +0,0 @@
1
- ---
2
- name: condition-based-waiting
3
- description: Use when tests have race conditions, timing dependencies, or inconsistent pass/fail behavior - replaces arbitrary timeouts with condition polling to wait for actual state changes, eliminating flaky tests from timing guesses
4
- ---
5
-
6
- # Condition-Based Waiting
7
-
8
- ## Overview
9
-
10
- Flaky tests often guess at timing with arbitrary delays. This creates race conditions where tests pass on fast machines but fail under load or in CI.
11
-
12
- **Core principle:** Wait for the actual condition you care about, not a guess about how long it takes.
13
-
14
- ## When to Use
15
-
16
- ```dot
17
- digraph when_to_use {
18
- "Test uses setTimeout/sleep?" [shape=diamond];
19
- "Testing timing behavior?" [shape=diamond];
20
- "Document WHY timeout needed" [shape=box];
21
- "Use condition-based waiting" [shape=box];
22
-
23
- "Test uses setTimeout/sleep?" -> "Testing timing behavior?" [label="yes"];
24
- "Testing timing behavior?" -> "Document WHY timeout needed" [label="yes"];
25
- "Testing timing behavior?" -> "Use condition-based waiting" [label="no"];
26
- }
27
- ```
28
-
29
- **Use when:**
30
- - Tests have arbitrary delays (`setTimeout`, `sleep`, `time.sleep()`)
31
- - Tests are flaky (pass sometimes, fail under load)
32
- - Tests timeout when run in parallel
33
- - Waiting for async operations to complete
34
-
35
- **Don't use when:**
36
- - Testing actual timing behavior (debounce, throttle intervals)
37
- - Always document WHY if using arbitrary timeout
38
-
39
- ## Core Pattern
40
-
41
- ```typescript
42
- // ❌ BEFORE: Guessing at timing
43
- await new Promise(r => setTimeout(r, 50));
44
- const result = getResult();
45
- expect(result).toBeDefined();
46
-
47
- // ✅ AFTER: Waiting for condition
48
- await waitFor(() => getResult() !== undefined);
49
- const result = getResult();
50
- expect(result).toBeDefined();
51
- ```
52
-
53
- ## Quick Patterns
54
-
55
- | Scenario | Pattern |
56
- |----------|---------|
57
- | Wait for event | `waitFor(() => events.find(e => e.type === 'DONE'))` |
58
- | Wait for state | `waitFor(() => machine.state === 'ready')` |
59
- | Wait for count | `waitFor(() => items.length >= 5)` |
60
- | Wait for file | `waitFor(() => fs.existsSync(path))` |
61
- | Complex condition | `waitFor(() => obj.ready && obj.value > 10)` |
62
-
63
- ## Implementation
64
-
65
- Generic polling function:
66
- ```typescript
67
- async function waitFor<T>(
68
- condition: () => T | undefined | null | false,
69
- description: string,
70
- timeoutMs = 5000
71
- ): Promise<T> {
72
- const startTime = Date.now();
73
-
74
- while (true) {
75
- const result = condition();
76
- if (result) return result;
77
-
78
- if (Date.now() - startTime > timeoutMs) {
79
- throw new Error(`Timeout waiting for ${description} after ${timeoutMs}ms`);
80
- }
81
-
82
- await new Promise(r => setTimeout(r, 10)); // Poll every 10ms
83
- }
84
- }
85
- ```
86
-
87
- See @example.ts for complete implementation with domain-specific helpers (`waitForEvent`, `waitForEventCount`, `waitForEventMatch`) from actual debugging session.
88
-
89
- ## Common Mistakes
90
-
91
- **❌ Polling too fast:** `setTimeout(check, 1)` - wastes CPU
92
- **✅ Fix:** Poll every 10ms
93
-
94
- **❌ No timeout:** Loop forever if condition never met
95
- **✅ Fix:** Always include timeout with clear error
96
-
97
- **❌ Stale data:** Cache state before loop
98
- **✅ Fix:** Call getter inside loop for fresh data
99
-
100
- ## When Arbitrary Timeout IS Correct
101
-
102
- ```typescript
103
- // Tool ticks every 100ms - need 2 ticks to verify partial output
104
- await waitForEvent(manager, 'TOOL_STARTED'); // First: wait for condition
105
- await new Promise(r => setTimeout(r, 200)); // Then: wait for timed behavior
106
- // 200ms = 2 ticks at 100ms intervals - documented and justified
107
- ```
108
-
109
- **Requirements:**
110
- 1. First wait for triggering condition
111
- 2. Based on known timing (not guessing)
112
- 3. Comment explaining WHY
113
-
114
- ## Real-World Impact
115
-
116
- From debugging session (2025-10-03):
117
- - Fixed 15 flaky tests across 3 files
118
- - Pass rate: 60% → 100%
119
- - Execution time: 40% faster
120
- - No more race conditions
@@ -1,30 +0,0 @@
1
- © 2025 Anthropic, PBC. All rights reserved.
2
-
3
- LICENSE: Use of these materials (including all code, prompts, assets, files,
4
- and other components of this Skill) is governed by your agreement with
5
- Anthropic regarding use of Anthropic's services. If no separate agreement
6
- exists, use is governed by Anthropic's Consumer Terms of Service or
7
- Commercial Terms of Service, as applicable:
8
- https://www.anthropic.com/legal/consumer-terms
9
- https://www.anthropic.com/legal/commercial-terms
10
- Your applicable agreement is referred to as the "Agreement." "Services" are
11
- as defined in the Agreement.
12
-
13
- ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the
14
- contrary, users may not:
15
-
16
- - Extract these materials from the Services or retain copies of these
17
- materials outside the Services
18
- - Reproduce or copy these materials, except for temporary copies created
19
- automatically during authorized use of the Services
20
- - Create derivative works based on these materials
21
- - Distribute, sublicense, or transfer these materials to any third party
22
- - Make, offer to sell, sell, or import any inventions embodied in these
23
- materials
24
- - Reverse engineer, decompile, or disassemble these materials
25
-
26
- The receipt, viewing, or possession of these materials does not convey or
27
- imply any license or right beyond those expressly granted above.
28
-
29
- Anthropic retains all right, title, and interest in these materials,
30
- including all copyrights, patents, and other intellectual property rights.