@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,139 +0,0 @@
1
- ---
2
- name: verification-before-completion
3
- description: Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
4
- ---
5
-
6
- # Verification Before Completion
7
-
8
- ## Overview
9
-
10
- Claiming work is complete without verification is dishonesty, not efficiency.
11
-
12
- **Core principle:** Evidence before claims, always.
13
-
14
- **Violating the letter of this rule is violating the spirit of this rule.**
15
-
16
- ## The Iron Law
17
-
18
- ```
19
- NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE
20
- ```
21
-
22
- If you haven't run the verification command in this message, you cannot claim it passes.
23
-
24
- ## The Gate Function
25
-
26
- ```
27
- BEFORE claiming any status or expressing satisfaction:
28
-
29
- 1. IDENTIFY: What command proves this claim?
30
- 2. RUN: Execute the FULL command (fresh, complete)
31
- 3. READ: Full output, check exit code, count failures
32
- 4. VERIFY: Does output confirm the claim?
33
- - If NO: State actual status with evidence
34
- - If YES: State claim WITH evidence
35
- 5. ONLY THEN: Make the claim
36
-
37
- Skip any step = lying, not verifying
38
- ```
39
-
40
- ## Common Failures
41
-
42
- | Claim | Requires | Not Sufficient |
43
- |-------|----------|----------------|
44
- | Tests pass | Test command output: 0 failures | Previous run, "should pass" |
45
- | Linter clean | Linter output: 0 errors | Partial check, extrapolation |
46
- | Build succeeds | Build command: exit 0 | Linter passing, logs look good |
47
- | Bug fixed | Test original symptom: passes | Code changed, assumed fixed |
48
- | Regression test works | Red-green cycle verified | Test passes once |
49
- | Agent completed | VCS diff shows changes | Agent reports "success" |
50
- | Requirements met | Line-by-line checklist | Tests passing |
51
-
52
- ## Red Flags - STOP
53
-
54
- - Using "should", "probably", "seems to"
55
- - Expressing satisfaction before verification ("Great!", "Perfect!", "Done!", etc.)
56
- - About to commit/push/PR without verification
57
- - Trusting agent success reports
58
- - Relying on partial verification
59
- - Thinking "just this once"
60
- - Tired and wanting work over
61
- - **ANY wording implying success without having run verification**
62
-
63
- ## Rationalization Prevention
64
-
65
- | Excuse | Reality |
66
- |--------|---------|
67
- | "Should work now" | RUN the verification |
68
- | "I'm confident" | Confidence ≠ evidence |
69
- | "Just this once" | No exceptions |
70
- | "Linter passed" | Linter ≠ compiler |
71
- | "Agent said success" | Verify independently |
72
- | "I'm tired" | Exhaustion ≠ excuse |
73
- | "Partial check is enough" | Partial proves nothing |
74
- | "Different words so rule doesn't apply" | Spirit over letter |
75
-
76
- ## Key Patterns
77
-
78
- **Tests:**
79
- ```
80
- ✅ [Run test command] [See: 34/34 pass] "All tests pass"
81
- ❌ "Should pass now" / "Looks correct"
82
- ```
83
-
84
- **Regression tests (TDD Red-Green):**
85
- ```
86
- ✅ Write → Run (pass) → Revert fix → Run (MUST FAIL) → Restore → Run (pass)
87
- ❌ "I've written a regression test" (without red-green verification)
88
- ```
89
-
90
- **Build:**
91
- ```
92
- ✅ [Run build] [See: exit 0] "Build passes"
93
- ❌ "Linter passed" (linter doesn't check compilation)
94
- ```
95
-
96
- **Requirements:**
97
- ```
98
- ✅ Re-read plan → Create checklist → Verify each → Report gaps or completion
99
- ❌ "Tests pass, phase complete"
100
- ```
101
-
102
- **Agent delegation:**
103
- ```
104
- ✅ Agent reports success → Check VCS diff → Verify changes → Report actual state
105
- ❌ Trust agent report
106
- ```
107
-
108
- ## Why This Matters
109
-
110
- From 24 failure memories:
111
- - your human partner said "I don't believe you" - trust broken
112
- - Undefined functions shipped - would crash
113
- - Missing requirements shipped - incomplete features
114
- - Time wasted on false completion → redirect → rework
115
- - Violates: "Honesty is a core value. If you lie, you'll be replaced."
116
-
117
- ## When To Apply
118
-
119
- **ALWAYS before:**
120
- - ANY variation of success/completion claims
121
- - ANY expression of satisfaction
122
- - ANY positive statement about work state
123
- - Committing, PR creation, task completion
124
- - Moving to next task
125
- - Delegating to agents
126
-
127
- **Rule applies to:**
128
- - Exact phrases
129
- - Paraphrases and synonyms
130
- - Implications of success
131
- - ANY communication suggesting completion/correctness
132
-
133
- ## The Bottom Line
134
-
135
- **No shortcuts for verification.**
136
-
137
- Run the command. Read the output. THEN claim the result.
138
-
139
- This is non-negotiable.
@@ -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,96 +0,0 @@
1
- ---
2
- name: webapp-testing
3
- description: Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
4
- license: Complete terms in LICENSE.txt
5
- ---
6
-
7
- # Web Application Testing
8
-
9
- To test local web applications, write native Python Playwright scripts.
10
-
11
- **Helper Scripts Available**:
12
- - `scripts/with_server.py` - Manages server lifecycle (supports multiple servers)
13
-
14
- **Always run scripts with `--help` first** to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts rather than ingested into your context window.
15
-
16
- ## Decision Tree: Choosing Your Approach
17
-
18
- ```
19
- User task → Is it static HTML?
20
- ├─ Yes → Read HTML file directly to identify selectors
21
- │ ├─ Success → Write Playwright script using selectors
22
- │ └─ Fails/Incomplete → Treat as dynamic (below)
23
-
24
- └─ No (dynamic webapp) → Is the server already running?
25
- ├─ No → Run: python scripts/with_server.py --help
26
- │ Then use the helper + write simplified Playwright script
27
-
28
- └─ Yes → Reconnaissance-then-action:
29
- 1. Navigate and wait for networkidle
30
- 2. Take screenshot or inspect DOM
31
- 3. Identify selectors from rendered state
32
- 4. Execute actions with discovered selectors
33
- ```
34
-
35
- ## Example: Using with_server.py
36
-
37
- To start a server, run `--help` first, then use the helper:
38
-
39
- **Single server:**
40
- ```bash
41
- python scripts/with_server.py --server "npm run dev" --port 5173 -- python your_automation.py
42
- ```
43
-
44
- **Multiple servers (e.g., backend + frontend):**
45
- ```bash
46
- python scripts/with_server.py \
47
- --server "cd backend && python server.py" --port 3000 \
48
- --server "cd frontend && npm run dev" --port 5173 \
49
- -- python your_automation.py
50
- ```
51
-
52
- To create an automation script, include only Playwright logic (servers are managed automatically):
53
- ```python
54
- from playwright.sync_api import sync_playwright
55
-
56
- with sync_playwright() as p:
57
- browser = p.chromium.launch(headless=True) # Always launch chromium in headless mode
58
- page = browser.new_page()
59
- page.goto('http://localhost:5173') # Server already running and ready
60
- page.wait_for_load_state('networkidle') # CRITICAL: Wait for JS to execute
61
- # ... your automation logic
62
- browser.close()
63
- ```
64
-
65
- ## Reconnaissance-Then-Action Pattern
66
-
67
- 1. **Inspect rendered DOM**:
68
- ```python
69
- page.screenshot(path='/tmp/inspect.png', full_page=True)
70
- content = page.content()
71
- page.locator('button').all()
72
- ```
73
-
74
- 2. **Identify selectors** from inspection results
75
-
76
- 3. **Execute actions** using discovered selectors
77
-
78
- ## Common Pitfall
79
-
80
- ❌ **Don't** inspect the DOM before waiting for `networkidle` on dynamic apps
81
- ✅ **Do** wait for `page.wait_for_load_state('networkidle')` before inspection
82
-
83
- ## Best Practices
84
-
85
- - **Use bundled scripts as black boxes** - To accomplish a task, consider whether one of the scripts available in `scripts/` can help. These scripts handle common, complex workflows reliably without cluttering the context window. Use `--help` to see usage, then invoke directly.
86
- - Use `sync_playwright()` for synchronous scripts
87
- - Always close the browser when done
88
- - Use descriptive selectors: `text=`, `role=`, CSS selectors, or IDs
89
- - Add appropriate waits: `page.wait_for_selector()` or `page.wait_for_timeout()`
90
-
91
- ## Reference Files
92
-
93
- - **examples/** - Examples showing common patterns:
94
- - `element_discovery.py` - Discovering buttons, links, and inputs on a page
95
- - `static_html_automation.py` - Using file:// URLs for local HTML
96
- - `console_logging.py` - Capturing console logs during automation
@@ -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.
@@ -1,76 +0,0 @@
1
- # Droid Slash Commands
2
-
3
- This directory contains 22 transformed Claude skills converted into Factory.ai CLI compatible Droid slash commands.
4
-
5
- ## Command Reference by Category
6
-
7
- ### Core Development Skills (7)
8
- *Code creation, testing, and development workflows*
9
-
10
- | Command | Purpose | Key Features |
11
- |---------|---------|--------------|
12
- | **algorithmic-art** | Create algorithmic art using p5.js with seeded randomness and interactive parameter exploration | Algorithmic philosophy creation, p5.js templates, generator patterns, interactive viewer creation |
13
- | **artifacts-builder** | Build elaborate multi-component HTML artifacts using React, TypeScript, Tailwind CSS, and shadcn/ui | React + TypeScript setup, shadcn/ui components, Parcel bundling, single HTML output |
14
- | **canvas-design** | Create beautiful visual art in PNG and PDF documents using design philosophy and minimal text | Design philosophy creation, visual expression, minimal text approach, craftsmanship principles |
15
- | **code-review** | Request structured code review to catch issues before they cascade | Mandatory review triggers, focus areas, feedback handling, workflow integration |
16
- | **test-driven-development** | Write test first, watch it fail, write minimal code to pass - ensures tests actually verify behavior | Red-green-refactor cycle, iron law of TDD, test quality standards, common patterns |
17
- | **testing-anti-patterns** | Avoid testing anti-patterns - never test mock behavior, add test-only methods, or mock without understanding | Mock behavior testing prevention, production code pollution avoidance, dependency understanding |
18
- | **skill-creator** | Guide for creating effective skills that extend Claude's capabilities with specialized knowledge | Skill anatomy, progressive disclosure, bundled resources, creation workflow |
19
-
20
- ### Debugging & Quality (4)
21
- *Systematic debugging, quality assurance, and verification*
22
-
23
- | Command | Purpose | Key Features |
24
- |---------|---------|--------------|
25
- | **systematic-debugging** | Systematic four-phase debugging framework - investigate root cause before any fixes | Four-phase process (investigation, analysis, hypothesis, implementation), evidence-based debugging |
26
- | **root-cause-tracing** | Systematically trace bugs backward through call stack to find original trigger, never just fix symptoms | Backward tracing process, instrumentation techniques, multi-layer defense, test pollution detection |
27
- | **condition-based-waiting** | Replace arbitrary timeouts with condition polling to eliminate flaky tests from timing guesses | Wait-for-condition patterns, polling implementation, race condition elimination |
28
- | **verification-before-completion** | Evidence before claims - verify work completion with fresh verification commands | Iron law of verification, gate function, common failure patterns, evidence-based reporting |
29
-
30
- ### Communication & Documentation (4)
31
- *Writing, collaboration, and documentation workflows*
32
-
33
- | Command | Purpose | Key Features |
34
- |---------|---------|--------------|
35
- | **brainstorming** | Turn rough ideas into fully-formed designs through collaborative questioning and exploration | Process-based questioning, approach exploration, design presentation, documentation workflow |
36
- | **internal-comms** | Write internal communications using company-approved formats and templates | 3P updates, company newsletters, FAQ responses, status reports, leadership communications |
37
- | **brand-guidelines** | Apply Anthropic's official brand colors and typography to any artifact | Official color palette (orange, blue, green, grays), Poppins/Lora fonts, CSS/Python implementations |
38
- | **mcp-builder** | Create high-quality MCP servers that enable LLMs to interact with external services through well-designed tools | MCP protocol, agent-centric design, workflow optimization, Python/Node implementations |
39
-
40
- ### File Processing & Office Tools (4)
41
- *Document, presentation, and spreadsheet manipulation*
42
-
43
- | Command | Purpose | Key Features |
44
- |---------|---------|--------------|
45
- | **pdf** | Comprehensive PDF processing toolkit - extract text/tables, create PDFs, merge/split, handle forms | pypdf operations, form handling, image conversion, JavaScript pdf-lib, table extraction |
46
- | **docx** | Create, edit, and manipulate Word documents with JavaScript library and XML manipulation | docx library, raw XML editing, comments, tracked changes, validation schemas |
47
- | **pptx** | Create, edit, and analyze PowerPoint presentations with HTML conversion, XML manipulation, and design principles | Design-first approach, color palettes, HTML-to-PPTX conversion, XML structure access |
48
- | **xlsx** | Create, edit, and analyze spreadsheets with formulas, formatting, data analysis, and visualization | Formula requirements, pandas/openpyxl workflows, financial modeling standards, recalculation tools |
49
-
50
- ### Web & API Integration (2)
51
- *Web application testing and API integration*
52
-
53
- | Command | Purpose | Key Features |
54
- |---------|---------|--------------|
55
- | **webapp-testing** | Test local web applications using Playwright - verify functionality, debug UI, capture screenshots | Playwright setup, server management, reconnaissance pattern, common testing patterns |
56
- | **theme-factory** | Apply professional themes to artifacts - 10 curated themes with color palettes and font pairings | 10 pre-built themes, theme showcase, custom theme creation, application standards |
57
-
58
- ### Creative & Animation (1)
59
- *Animation and visual creativity*
60
-
61
- | Command | Purpose | Key Features |
62
- |---------|---------|--------------|
63
- | **slack-gif-creator** | Create animated GIFs optimized for Slack with size validation and composable animation primitives | Slack size constraints, validation tools, animation primitives (shake, bounce, spin, etc.), optimization strategies |
64
-
65
- ## Usage
66
-
67
- Each command can be invoked in Droid with:
68
- ```
69
- /command-name <optional-arguments>
70
- ```
71
-
72
- Arguments should match the `argument-hint` specified in each command's YAML frontmatter.
73
-
74
- ## Transformation Process
75
-
76
- These commands were transformed from Claude skills located in `~/.factory/commands/` according to Factory.ai CLI formatting requirements. Each skill was renamed from `SKILL.md` to `{skill-name}.md` and reformatted with proper YAML frontmatter for Droid compatibility.
@@ -1,79 +0,0 @@
1
- # Agents and Skills Reference
2
-
3
- ## Subagents Directory
4
-
5
- | Title | ID | When To Use |
6
- |---|---|---|
7
- | 1-Create PRD | 1-create-prd | Define scope with a Product Requirement Document (PRD) |
8
- | 2-Generate Tasks | 2-generate-tasks | Break down PRD into granular, actionable task list |
9
- | 3-Process Task List | 3-process-task-list | Guide AI to tackle tasks iteratively with review |
10
- | UX Expert | ux-expert | UI/UX design, wireframes, prototypes, front-end specs |
11
- | Scrum Master | scrum-master | Story creation, epic management, agile process guidance |
12
- | Test Architect & Quality Advisor | qa-test-architect | Test architecture review, quality gates, code improvement |
13
- | Product Owner | product-owner | Backlog management, story refinement, acceptance criteria |
14
- | Product Manager | product-manager | PRDs, product strategy, feature prioritization, roadmaps |
15
- | Full Stack Developer | full-stack-dev | Code implementation, debugging, refactoring |
16
- | Master Orchestrator | orchestrator | Workflow coordination, multi-agent tasks, role switching |
17
- | Master Task Executor | master | Comprehensive expertise across all domains |
18
- | Architect | holistic-architect | System design, architecture docs, API design |
19
- | Business Analyst | business-analyst | Market research, competitive analysis, project briefs |
20
-
21
- ## Skills/Commands
22
-
23
- ### Core Development Skills (7)
24
- *Code creation, testing, and development workflows*
25
-
26
- | Command | Purpose | Key Features |
27
- |---------|---------|--------------|
28
- | **algorithmic-art** | Create algorithmic art using p5.js with seeded randomness and interactive parameter exploration | Algorithmic philosophy creation, p5.js templates, generator patterns, interactive viewer creation |
29
- | **artifacts-builder** | Build elaborate multi-component HTML artifacts using React, TypeScript, Tailwind CSS, and shadcn/ui | React + TypeScript setup, shadcn/ui components, Parcel bundling, single HTML output |
30
- | **canvas-design** | Create beautiful visual art in PNG and PDF documents using design philosophy and minimal text | Design philosophy creation, visual expression, minimal text approach, craftsmanship principles |
31
- | **code-review** | Request structured code review to catch issues before they cascade | Mandatory review triggers, focus areas, feedback handling, workflow integration |
32
- | **test-driven-development** | Write test first, watch it fail, write minimal code to pass - ensures tests actually verify behavior | Red-green-refactor cycle, iron law of TDD, test quality standards, common patterns |
33
- | **testing-anti-patterns** | Avoid testing anti-patterns - never test mock behavior, add test-only methods, or mock without understanding | Mock behavior testing prevention, production code pollution avoidance, dependency understanding |
34
- | **skill-creator** | Guide for creating effective skills that extend Claude's capabilities with specialized knowledge | Skill anatomy, progressive disclosure, bundled resources, creation workflow |
35
-
36
- ### Debugging & Quality (4)
37
- *Systematic debugging, quality assurance, and verification*
38
-
39
- | Command | Purpose | Key Features |
40
- |---------|---------|--------------|
41
- | **systematic-debugging** | Systematic four-phase debugging framework - investigate root cause before any fixes | Four-phase process (investigation, analysis, hypothesis, implementation), evidence-based debugging |
42
- | **root-cause-tracing** | Systematically trace bugs backward through call stack to find original trigger, never just fix symptoms | Backward tracing process, instrumentation techniques, multi-layer defense, test pollution detection |
43
- | **condition-based-waiting** | Replace arbitrary timeouts with condition polling to eliminate flaky tests from timing guesses | Wait-for-condition patterns, polling implementation, race condition elimination |
44
- | **verification-before-completion** | Evidence before claims - verify work completion with fresh verification commands | Iron law of verification, gate function, common failure patterns, evidence-based reporting |
45
-
46
- ### Communication & Documentation (4)
47
- *Writing, collaboration, and documentation workflows*
48
-
49
- | Command | Purpose | Key Features |
50
- |---------|---------|--------------|
51
- | **brainstorming** | Turn rough ideas into fully-formed designs through collaborative questioning and exploration | Process-based questioning, approach exploration, design presentation, documentation workflow |
52
- | **internal-comms** | Write internal communications using company-approved formats and templates | 3P updates, company newsletters, FAQ responses, status reports, leadership communications |
53
- | **brand-guidelines** | Apply Anthropic's official brand colors and typography to any artifact | Official color palette (orange, blue, green, grays), Poppins/Lora fonts, CSS/Python implementations |
54
- | **mcp-builder** | Create high-quality MCP servers that enable LLMs to interact with external services through well-designed tools | MCP protocol, agent-centric design, workflow optimization, Python/Node implementations |
55
-
56
- ### File Processing & Office Tools (4)
57
- *Document, presentation, and spreadsheet manipulation*
58
-
59
- | Command | Purpose | Key Features |
60
- |---------|---------|--------------|
61
- | **pdf** | Comprehensive PDF processing toolkit - extract text/tables, create PDFs, merge/split, handle forms | pypdf operations, form handling, image conversion, JavaScript pdf-lib, table extraction |
62
- | **docx** | Create, edit, and manipulate Word documents with JavaScript library and XML manipulation | docx library, raw XML editing, comments, tracked changes, validation schemas |
63
- | **pptx** | Create, edit, and analyze PowerPoint presentations with HTML conversion, XML manipulation, and design principles | Design-first approach, color palettes, HTML-to-PPTX conversion, XML structure access |
64
- | **xlsx** | Create, edit, and analyze spreadsheets with formulas, formatting, data analysis, and visualization | Formula requirements, pandas/openpyxl workflows, financial modeling standards, recalculation tools |
65
-
66
- ### Web & API Integration (2)
67
- *Web application testing and API integration*
68
-
69
- | Command | Purpose | Key Features |
70
- |---------|---------|--------------|
71
- | **webapp-testing** | Test local web applications using Playwright - verify functionality, debug UI, capture screenshots | Playwright setup, server management, reconnaissance pattern, common testing patterns |
72
- | **theme-factory** | Apply professional themes to artifacts - 10 curated themes with color palettes and font pairings | 10 pre-built themes, theme showcase, custom theme creation, application standards |
73
-
74
- ### Creative & Animation (1)
75
- *Animation and visual creativity*
76
-
77
- | Command | Purpose | Key Features |
78
- |---------|---------|--------------|
79
- | **slack-gif-creator** | Create animated GIFs optimized for Slack with size validation and composable animation primitives | Slack size constraints, validation tools, animation primitives (shake, bounce, spin, etc.), optimization strategies |
File without changes