@caddis/cli 0.0.0 → 0.2.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 (513) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +163 -1
  3. package/bundles/antigravity-plugin/agents/code-reviewer.md +47 -0
  4. package/bundles/antigravity-plugin/agents/preflight.md +53 -0
  5. package/bundles/antigravity-plugin/guard_agy.py +338 -0
  6. package/bundles/antigravity-plugin/hooks.json +36 -0
  7. package/bundles/antigravity-plugin/mcp_config.json +8 -0
  8. package/bundles/antigravity-plugin/mcp_ping_server.py +55 -0
  9. package/bundles/antigravity-plugin/plugin.json +5 -0
  10. package/bundles/antigravity-plugin/session_end_agy.py +57 -0
  11. package/bundles/antigravity-plugin/skills/_registry.md +115 -0
  12. package/bundles/antigravity-plugin/skills/add-rules/SKILL.md +45 -0
  13. package/bundles/antigravity-plugin/skills/api-design/SKILL.md +249 -0
  14. package/bundles/antigravity-plugin/skills/backend-development/SKILL.md +305 -0
  15. package/bundles/antigravity-plugin/skills/best-practices/SKILL.md +500 -0
  16. package/bundles/antigravity-plugin/skills/best-practices/agents/best-practices-referencer.md +263 -0
  17. package/bundles/antigravity-plugin/skills/best-practices/agents/codebase-context-builder.md +326 -0
  18. package/bundles/antigravity-plugin/skills/best-practices/agents/task-intent-analyzer.md +245 -0
  19. package/bundles/antigravity-plugin/skills/best-practices/references/anti-patterns.md +571 -0
  20. package/bundles/antigravity-plugin/skills/best-practices/references/before-after-examples.md +1114 -0
  21. package/bundles/antigravity-plugin/skills/best-practices/references/best-practices-guide.md +513 -0
  22. package/bundles/antigravity-plugin/skills/best-practices/references/common-workflows.md +692 -0
  23. package/bundles/antigravity-plugin/skills/best-practices/references/prompt-patterns.md +547 -0
  24. package/bundles/antigravity-plugin/skills/brainstorming/SKILL.md +57 -0
  25. package/bundles/antigravity-plugin/skills/ci-cd-pipeline/SKILL.md +315 -0
  26. package/bundles/antigravity-plugin/skills/code-documentation/SKILL.md +271 -0
  27. package/bundles/antigravity-plugin/skills/code-review/SKILL.md +122 -0
  28. package/bundles/antigravity-plugin/skills/codebase-audit/SKILL.md +204 -0
  29. package/bundles/antigravity-plugin/skills/context-curator/SKILL.md +157 -0
  30. package/bundles/antigravity-plugin/skills/cross-review/SKILL.md +40 -0
  31. package/bundles/antigravity-plugin/skills/css-architecture/SKILL.md +305 -0
  32. package/bundles/antigravity-plugin/skills/css-architecture/references/RESPONSIVE-DESIGN.md +604 -0
  33. package/bundles/antigravity-plugin/skills/database-design/SKILL.md +177 -0
  34. package/bundles/antigravity-plugin/skills/db-diagram/SKILL.md +148 -0
  35. package/bundles/antigravity-plugin/skills/db-diagram/scripts/sql_to_graph.py +1212 -0
  36. package/bundles/antigravity-plugin/skills/digress/SKILL.md +61 -0
  37. package/bundles/antigravity-plugin/skills/draw-io/SKILL.md +162 -0
  38. package/bundles/antigravity-plugin/skills/draw-io/references/aws-icons.md +677 -0
  39. package/bundles/antigravity-plugin/skills/draw-io/references/layout-guidelines.md +142 -0
  40. package/bundles/antigravity-plugin/skills/draw-io/references/troubleshooting.md +118 -0
  41. package/bundles/antigravity-plugin/skills/draw-io/references/workflows.md +103 -0
  42. package/bundles/antigravity-plugin/skills/draw-io/scripts/convert-drawio-to-png.sh +25 -0
  43. package/bundles/antigravity-plugin/skills/draw-io/scripts/find_aws_icon.py +79 -0
  44. package/bundles/antigravity-plugin/skills/error-handling/SKILL.md +260 -0
  45. package/bundles/antigravity-plugin/skills/excalidraw-db/SKILL.md +38 -0
  46. package/bundles/antigravity-plugin/skills/fastapi-dev/SKILL.md +300 -0
  47. package/bundles/antigravity-plugin/skills/feature-plan/SKILL.md +198 -0
  48. package/bundles/antigravity-plugin/skills/frontend-design/SKILL.md +193 -0
  49. package/bundles/antigravity-plugin/skills/frontend-design/references/my-tech-stack.md +127 -0
  50. package/bundles/antigravity-plugin/skills/gh-cli/SKILL.md +195 -0
  51. package/bundles/antigravity-plugin/skills/git-commit/SKILL.md +285 -0
  52. package/bundles/antigravity-plugin/skills/golden-plan/SKILL.md +577 -0
  53. package/bundles/antigravity-plugin/skills/handoff/SKILL.md +100 -0
  54. package/bundles/antigravity-plugin/skills/implement/SKILL.md +114 -0
  55. package/bundles/antigravity-plugin/skills/javascript-typescript/SKILL.md +142 -0
  56. package/bundles/antigravity-plugin/skills/kb/SKILL.md +60 -0
  57. package/bundles/antigravity-plugin/skills/mermaid-db/SKILL.md +33 -0
  58. package/bundles/antigravity-plugin/skills/mermaid-diagrams/SKILL.md +236 -0
  59. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/ENHANCEMENTS.md +264 -0
  60. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/MERMAID-SUMMARY.md +137 -0
  61. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/advanced-features.md +556 -0
  62. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/architecture-diagrams.md +192 -0
  63. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/c4-diagrams.md +410 -0
  64. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/class-diagrams.md +361 -0
  65. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/erd-diagrams.md +510 -0
  66. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/flowcharts.md +450 -0
  67. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/sequence-diagrams.md +394 -0
  68. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/troubleshooting.md +335 -0
  69. package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/workflows.md +418 -0
  70. package/bundles/antigravity-plugin/skills/migrate-dir/SKILL.md +68 -0
  71. package/bundles/antigravity-plugin/skills/mockup/SKILL.md +242 -0
  72. package/bundles/antigravity-plugin/skills/particle-art/SKILL.md +243 -0
  73. package/bundles/antigravity-plugin/skills/particle-art/references/canvas-utils.ts +171 -0
  74. package/bundles/antigravity-plugin/skills/particle-art/references/dot-field.template.tsx +203 -0
  75. package/bundles/antigravity-plugin/skills/particle-art/references/flow-field.template.tsx +263 -0
  76. package/bundles/antigravity-plugin/skills/particle-art/references/node-shape.template.tsx +261 -0
  77. package/bundles/antigravity-plugin/skills/particle-art/references/shape-sampler.ts +281 -0
  78. package/bundles/antigravity-plugin/skills/particle-art/references/stipple-morph.template.tsx +167 -0
  79. package/bundles/antigravity-plugin/skills/particle-art/references/stipple.template.tsx +175 -0
  80. package/bundles/antigravity-plugin/skills/particle-art/references/trail-ghost.template.tsx +266 -0
  81. package/bundles/antigravity-plugin/skills/particle-art/references/usage-examples.md +320 -0
  82. package/bundles/antigravity-plugin/skills/playwright/API_REFERENCE.md +653 -0
  83. package/bundles/antigravity-plugin/skills/playwright/SKILL.md +454 -0
  84. package/bundles/antigravity-plugin/skills/playwright/lib/helpers.js +441 -0
  85. package/bundles/antigravity-plugin/skills/playwright/package.json +26 -0
  86. package/bundles/antigravity-plugin/skills/playwright/run.js +228 -0
  87. package/bundles/antigravity-plugin/skills/prd/SKILL.md +107 -0
  88. package/bundles/antigravity-plugin/skills/preflight/SKILL.md +435 -0
  89. package/bundles/antigravity-plugin/skills/python/SKILL.md +388 -0
  90. package/bundles/antigravity-plugin/skills/react-best-practices/SKILL.md +269 -0
  91. package/bundles/antigravity-plugin/skills/react-dev/README.md +404 -0
  92. package/bundles/antigravity-plugin/skills/react-dev/SKILL.md +459 -0
  93. package/bundles/antigravity-plugin/skills/react-dev/examples/generic-components.md +579 -0
  94. package/bundles/antigravity-plugin/skills/react-dev/examples/server-components.md +579 -0
  95. package/bundles/antigravity-plugin/skills/react-dev/references/event-handlers.md +574 -0
  96. package/bundles/antigravity-plugin/skills/react-dev/references/hooks.md +456 -0
  97. package/bundles/antigravity-plugin/skills/react-dev/references/react-19-patterns.md +638 -0
  98. package/bundles/antigravity-plugin/skills/react-dev/references/react-router.md +1002 -0
  99. package/bundles/antigravity-plugin/skills/react-dev/references/tanstack-router.md +587 -0
  100. package/bundles/antigravity-plugin/skills/refactoring/SKILL.md +486 -0
  101. package/bundles/antigravity-plugin/skills/resume/SKILL.md +36 -0
  102. package/bundles/antigravity-plugin/skills/security-review/SKILL.md +196 -0
  103. package/bundles/antigravity-plugin/skills/setup-project-ai/SKILL.md +61 -0
  104. package/bundles/antigravity-plugin/skills/ship/SKILL.md +107 -0
  105. package/bundles/antigravity-plugin/skills/ship-merge/SKILL.md +103 -0
  106. package/bundles/antigravity-plugin/skills/ship-pr/SKILL.md +102 -0
  107. package/bundles/antigravity-plugin/skills/skill-creator/LICENSE.txt +202 -0
  108. package/bundles/antigravity-plugin/skills/skill-creator/SKILL.md +491 -0
  109. package/bundles/antigravity-plugin/skills/skill-creator/agents/analyzer.md +274 -0
  110. package/bundles/antigravity-plugin/skills/skill-creator/agents/comparator.md +202 -0
  111. package/bundles/antigravity-plugin/skills/skill-creator/agents/grader.md +223 -0
  112. package/bundles/antigravity-plugin/skills/skill-creator/assets/eval_review.html +146 -0
  113. package/bundles/antigravity-plugin/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  114. package/bundles/antigravity-plugin/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  115. package/bundles/antigravity-plugin/skills/skill-creator/references/schemas.md +430 -0
  116. package/bundles/antigravity-plugin/skills/skill-creator/scripts/__init__.py +0 -0
  117. package/bundles/antigravity-plugin/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  118. package/bundles/antigravity-plugin/skills/skill-creator/scripts/generate_report.py +326 -0
  119. package/bundles/antigravity-plugin/skills/skill-creator/scripts/improve_description.py +247 -0
  120. package/bundles/antigravity-plugin/skills/skill-creator/scripts/package_skill.py +136 -0
  121. package/bundles/antigravity-plugin/skills/skill-creator/scripts/quick_validate.py +103 -0
  122. package/bundles/antigravity-plugin/skills/skill-creator/scripts/run_eval.py +310 -0
  123. package/bundles/antigravity-plugin/skills/skill-creator/scripts/run_loop.py +328 -0
  124. package/bundles/antigravity-plugin/skills/skill-creator/scripts/utils.py +47 -0
  125. package/bundles/antigravity-plugin/skills/sql/SKILL.md +321 -0
  126. package/bundles/antigravity-plugin/skills/tdd/SKILL.md +37 -0
  127. package/bundles/antigravity-plugin/skills/tdd-workflow/SKILL.md +188 -0
  128. package/bundles/antigravity-plugin/skills/technical-writing/SKILL.md +286 -0
  129. package/bundles/antigravity-plugin/skills/test-strategy/SKILL.md +155 -0
  130. package/bundles/antigravity-plugin/skills/ui-brief/SKILL.md +84 -0
  131. package/bundles/antigravity-plugin/skills/ui-review/SKILL.md +176 -0
  132. package/bundles/antigravity-plugin/skills/ui-review/references/framework-fixes.md +471 -0
  133. package/bundles/antigravity-plugin/skills/ui-review/references/visual-checklist.md +236 -0
  134. package/bundles/antigravity-plugin/skills/usage-review/SKILL.md +77 -0
  135. package/bundles/antigravity-plugin/skills/use-model/SKILL.md +64 -0
  136. package/bundles/antigravity-plugin/skills/using-git-worktrees/SKILL.md +217 -0
  137. package/bundles/antigravity-plugin/skills/version/SKILL.md +18 -0
  138. package/bundles/antigravity-plugin/skills/warm-editorial-ui/DESIGN_TOKENS.md +487 -0
  139. package/bundles/antigravity-plugin/skills/warm-editorial-ui/IMPLEMENTATION_GUIDE.md +177 -0
  140. package/bundles/antigravity-plugin/skills/warm-editorial-ui/SKILL.md +732 -0
  141. package/bundles/antigravity-plugin/skills/webapp-testing/LICENSE.txt +202 -0
  142. package/bundles/antigravity-plugin/skills/webapp-testing/SKILL.md +97 -0
  143. package/bundles/antigravity-plugin/skills/webapp-testing/examples/console_logging.py +35 -0
  144. package/bundles/antigravity-plugin/skills/webapp-testing/examples/element_discovery.py +40 -0
  145. package/bundles/antigravity-plugin/skills/webapp-testing/examples/static_html_automation.py +33 -0
  146. package/bundles/antigravity-plugin/skills/webapp-testing/scripts/with_server.py +106 -0
  147. package/bundles/antigravity-plugin/skills/windows-deployment/SKILL.md +880 -0
  148. package/bundles/antigravity-plugin/skills/writing-plans/SKILL.md +384 -0
  149. package/bundles/antigravity-plugin/statusline-command-agy.sh +91 -0
  150. package/bundles/antigravity-plugin/warm_start_agy.py +149 -0
  151. package/bundles/antigravity-plugin-extras/plugin.json +5 -0
  152. package/bundles/antigravity-plugin-extras/skills/_registry.md +154 -0
  153. package/bundles/antigravity-plugin-extras/skills/agent-md-refactor/SKILL.md +356 -0
  154. package/bundles/antigravity-plugin-extras/skills/agent-orchestration/SKILL.md +517 -0
  155. package/bundles/antigravity-plugin-extras/skills/algorithmic-art/SKILL.md +293 -0
  156. package/bundles/antigravity-plugin-extras/skills/anchor-review/SKILL.md +135 -0
  157. package/bundles/antigravity-plugin-extras/skills/api-client-patterns/SKILL.md +367 -0
  158. package/bundles/antigravity-plugin-extras/skills/architecture-design/SKILL.md +244 -0
  159. package/bundles/antigravity-plugin-extras/skills/architecture-diagram/SKILL.md +156 -0
  160. package/bundles/antigravity-plugin-extras/skills/architecture-document/SKILL.md +321 -0
  161. package/bundles/antigravity-plugin-extras/skills/artifacts-builder/LICENSE.txt +202 -0
  162. package/bundles/antigravity-plugin-extras/skills/artifacts-builder/SKILL.md +74 -0
  163. package/bundles/antigravity-plugin-extras/skills/artifacts-builder/scripts/bundle-artifact.sh +54 -0
  164. package/bundles/antigravity-plugin-extras/skills/artifacts-builder/scripts/init-artifact.sh +322 -0
  165. package/bundles/antigravity-plugin-extras/skills/artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
  166. package/bundles/antigravity-plugin-extras/skills/ascii-art/SKILL.md +144 -0
  167. package/bundles/antigravity-plugin-extras/skills/asking-questions/SKILL.md +81 -0
  168. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/SKILL.md +118 -0
  169. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/cross-service/credential-management.md +450 -0
  170. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/browser/README.md +363 -0
  171. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/code-interpreter/README.md +232 -0
  172. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/README.md +100 -0
  173. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/deploy-template.sh +117 -0
  174. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/deployment-strategies.md +416 -0
  175. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/troubleshooting-guide.md +384 -0
  176. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/validate-deployment.sh +186 -0
  177. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/identity/README.md +186 -0
  178. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/memory/README.md +253 -0
  179. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/observability/README.md +517 -0
  180. package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/runtime/README.md +215 -0
  181. package/bundles/antigravity-plugin-extras/skills/aws-cdk-development/SKILL.md +279 -0
  182. package/bundles/antigravity-plugin-extras/skills/aws-cdk-development/references/cdk-patterns.md +431 -0
  183. package/bundles/antigravity-plugin-extras/skills/aws-cdk-development/scripts/validate-stack.sh +240 -0
  184. package/bundles/antigravity-plugin-extras/skills/aws-cost-operations/SKILL.md +318 -0
  185. package/bundles/antigravity-plugin-extras/skills/aws-cost-operations/references/cloudwatch-alarms.md +567 -0
  186. package/bundles/antigravity-plugin-extras/skills/aws-cost-operations/references/operations-patterns.md +394 -0
  187. package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/SKILL.md +758 -0
  188. package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/deployment-best-practices.md +830 -0
  189. package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/eda-patterns.md +1002 -0
  190. package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/observability-best-practices.md +770 -0
  191. package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/performance-optimization.md +671 -0
  192. package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/security-best-practices.md +625 -0
  193. package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/serverless-patterns.md +838 -0
  194. package/bundles/antigravity-plugin-extras/skills/backend-to-frontend-handoff/SKILL.md +139 -0
  195. package/bundles/antigravity-plugin-extras/skills/banner-design/SKILL.md +188 -0
  196. package/bundles/antigravity-plugin-extras/skills/brand-design/SKILL.md +298 -0
  197. package/bundles/antigravity-plugin-extras/skills/brand-guidelines/LICENSE.txt +202 -0
  198. package/bundles/antigravity-plugin-extras/skills/brand-guidelines/SKILL.md +118 -0
  199. package/bundles/antigravity-plugin-extras/skills/brand-voice/SKILL.md +93 -0
  200. package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/SKILL.md +392 -0
  201. package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/references/agent-patterns.md +461 -0
  202. package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/references/examples.md +188 -0
  203. package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/references/state-patterns.md +360 -0
  204. package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/references/troubleshooting.md +362 -0
  205. package/bundles/antigravity-plugin-extras/skills/building-mcp-server-on-cloudflare/SKILL.md +266 -0
  206. package/bundles/antigravity-plugin-extras/skills/building-mcp-server-on-cloudflare/references/examples.md +115 -0
  207. package/bundles/antigravity-plugin-extras/skills/building-mcp-server-on-cloudflare/references/oauth-setup.md +338 -0
  208. package/bundles/antigravity-plugin-extras/skills/building-mcp-server-on-cloudflare/references/troubleshooting.md +317 -0
  209. package/bundles/antigravity-plugin-extras/skills/caching-patterns/SKILL.md +385 -0
  210. package/bundles/antigravity-plugin-extras/skills/canvas-design/LICENSE.txt +202 -0
  211. package/bundles/antigravity-plugin-extras/skills/canvas-design/SKILL.md +91 -0
  212. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +93 -0
  213. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  214. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  215. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BigShoulders-OFL.txt +93 -0
  216. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  217. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Boldonse-OFL.txt +93 -0
  218. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
  219. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  220. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
  221. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  222. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  223. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  224. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +93 -0
  225. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  226. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/DMMono-OFL.txt +93 -0
  227. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
  228. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/EricaOne-OFL.txt +94 -0
  229. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
  230. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
  231. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/GeistMono-OFL.txt +93 -0
  232. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
  233. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Gloock-OFL.txt +93 -0
  234. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
  235. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  236. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
  237. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  238. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  239. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  240. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  241. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  242. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  243. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  244. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  245. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +93 -0
  246. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  247. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  248. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  249. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Italiana-OFL.txt +93 -0
  250. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
  251. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  252. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
  253. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  254. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
  255. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
  256. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Jura-OFL.txt +93 -0
  257. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
  258. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  259. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
  260. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  261. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
  262. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-OFL.txt +93 -0
  263. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
  264. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
  265. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NationalPark-OFL.txt +93 -0
  266. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
  267. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
  268. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  269. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
  270. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Outfit-OFL.txt +93 -0
  271. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
  272. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  273. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/PixelifySans-OFL.txt +93 -0
  274. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/PoiretOne-OFL.txt +93 -0
  275. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  276. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  277. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/RedHatMono-OFL.txt +93 -0
  278. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  279. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Silkscreen-OFL.txt +93 -0
  280. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  281. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  282. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/SmoochSans-OFL.txt +93 -0
  283. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
  284. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Tektur-OFL.txt +93 -0
  285. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
  286. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
  287. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  288. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
  289. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-OFL.txt +93 -0
  290. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
  291. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt +93 -0
  292. package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  293. package/bundles/antigravity-plugin-extras/skills/changelog-generator/SKILL.md +105 -0
  294. package/bundles/antigravity-plugin-extras/skills/code-explainer/SKILL.md +91 -0
  295. package/bundles/antigravity-plugin-extras/skills/competitive-ads-extractor/SKILL.md +294 -0
  296. package/bundles/antigravity-plugin-extras/skills/component-testing/SKILL.md +310 -0
  297. package/bundles/antigravity-plugin-extras/skills/content-research-writer/SKILL.md +539 -0
  298. package/bundles/antigravity-plugin-extras/skills/cross-review/SKILL.md +51 -0
  299. package/bundles/antigravity-plugin-extras/skills/data-analysis/SKILL.md +111 -0
  300. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/README.md +248 -0
  301. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/SKILL.md +203 -0
  302. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/adapter.py.template +44 -0
  303. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/api-router.py.template +43 -0
  304. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/contract-test.py.template +384 -0
  305. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/display-dto.py.template +39 -0
  306. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/frontend-service.ts.template +46 -0
  307. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/frontend-types.ts.template +38 -0
  308. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/ingestion-model.py.template +42 -0
  309. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/mapping-doc.md.template +46 -0
  310. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/normalizer.py.template +48 -0
  311. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/prompts/extract_requirements.md +36 -0
  312. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/prompts/extract_ui_demand.md +35 -0
  313. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/prompts/reconcile_mapping.md +66 -0
  314. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/query-catalog.md.template +62 -0
  315. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/references/consumer-driven-contracts.md +131 -0
  316. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/references/drift-check-catalog.md +305 -0
  317. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/references/layer-responsibilities.md +333 -0
  318. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/discover_connections.py +170 -0
  319. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/discover_sources.py +161 -0
  320. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/drift_check.py +171 -0
  321. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/extract_schema.py +1363 -0
  322. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/generate_gap_report.py +81 -0
  323. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/generate_mapping_doc.py +294 -0
  324. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/ts_dto_compare.py +214 -0
  325. package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/validate_lineage.py +51 -0
  326. package/bundles/antigravity-plugin-extras/skills/data-loader/SKILL.md +753 -0
  327. package/bundles/antigravity-plugin-extras/skills/data-validation/SKILL.md +220 -0
  328. package/bundles/antigravity-plugin-extras/skills/db-testing/SKILL.md +117 -0
  329. package/bundles/antigravity-plugin-extras/skills/deploy-local/SKILL.md +259 -0
  330. package/bundles/antigravity-plugin-extras/skills/design-md/SKILL.md +167 -0
  331. package/bundles/antigravity-plugin-extras/skills/design-system-tokens/SKILL.md +240 -0
  332. package/bundles/antigravity-plugin-extras/skills/design-system-tokens/references/DESIGN-SYSTEM-TEMPLATE.md +577 -0
  333. package/bundles/antigravity-plugin-extras/skills/developer-growth-analysis/SKILL.md +323 -0
  334. package/bundles/antigravity-plugin-extras/skills/doc-coauthoring/SKILL.md +378 -0
  335. package/bundles/antigravity-plugin-extras/skills/documentation-analyzer/SKILL.md +78 -0
  336. package/bundles/antigravity-plugin-extras/skills/domain-name-brainstormer/SKILL.md +213 -0
  337. package/bundles/antigravity-plugin-extras/skills/enterprise-dashboard-aesthetic-system/SKILL.md +120 -0
  338. package/bundles/antigravity-plugin-extras/skills/excalidraw/SKILL.md +193 -0
  339. package/bundles/antigravity-plugin-extras/skills/excalidraw/references/element-types.md +497 -0
  340. package/bundles/antigravity-plugin-extras/skills/excalidraw/references/excalidraw-schema.md +356 -0
  341. package/bundles/antigravity-plugin-extras/skills/excalidraw/references/reliable-diagrams.md +115 -0
  342. package/bundles/antigravity-plugin-extras/skills/excalidraw/scripts/README.md +60 -0
  343. package/bundles/antigravity-plugin-extras/skills/excalidraw/scripts/add-arrow.py +354 -0
  344. package/bundles/antigravity-plugin-extras/skills/excalidraw/scripts/add-icon-to-diagram.py +412 -0
  345. package/bundles/antigravity-plugin-extras/skills/excalidraw/scripts/split-excalidraw-library.py +183 -0
  346. package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/business-flow-swimlane-template.excalidraw +334 -0
  347. package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/class-diagram-template.excalidraw +558 -0
  348. package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/data-flow-diagram-template.excalidraw +279 -0
  349. package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/er-diagram-template.excalidraw +662 -0
  350. package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/flowchart-template.excalidraw +179 -0
  351. package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/mindmap-template.excalidraw +244 -0
  352. package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/relationship-template.excalidraw +145 -0
  353. package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/reliable-flowchart.excalidraw +1 -0
  354. package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/sequence-diagram-template.excalidraw +509 -0
  355. package/bundles/antigravity-plugin-extras/skills/file-organizer/SKILL.md +434 -0
  356. package/bundles/antigravity-plugin-extras/skills/game-changing-features/README.md +221 -0
  357. package/bundles/antigravity-plugin-extras/skills/game-changing-features/SKILL.md +265 -0
  358. package/bundles/antigravity-plugin-extras/skills/github-issues/SKILL.md +359 -0
  359. package/bundles/antigravity-plugin-extras/skills/github-issues/references/templates.md +90 -0
  360. package/bundles/antigravity-plugin-extras/skills/golden-nuggets/SKILL.md +192 -0
  361. package/bundles/antigravity-plugin-extras/skills/humanizer/SKILL.md +194 -0
  362. package/bundles/antigravity-plugin-extras/skills/image-enhancer/SKILL.md +100 -0
  363. package/bundles/antigravity-plugin-extras/skills/intent-writer/SKILL.md +201 -0
  364. package/bundles/antigravity-plugin-extras/skills/internal-comms/LICENSE.txt +202 -0
  365. package/bundles/antigravity-plugin-extras/skills/internal-comms/SKILL.md +124 -0
  366. package/bundles/antigravity-plugin-extras/skills/internal-comms/examples/3p-updates.md +47 -0
  367. package/bundles/antigravity-plugin-extras/skills/internal-comms/examples/company-newsletter.md +65 -0
  368. package/bundles/antigravity-plugin-extras/skills/internal-comms/examples/faq-answers.md +30 -0
  369. package/bundles/antigravity-plugin-extras/skills/internal-comms/examples/general-comms.md +16 -0
  370. package/bundles/antigravity-plugin-extras/skills/invoice-organizer/SKILL.md +447 -0
  371. package/bundles/antigravity-plugin-extras/skills/jira-issues/SKILL.md +182 -0
  372. package/bundles/antigravity-plugin-extras/skills/job-application/SKILL.md +188 -0
  373. package/bundles/antigravity-plugin-extras/skills/lead-research-assistant/SKILL.md +200 -0
  374. package/bundles/antigravity-plugin-extras/skills/llm-application-dev/SKILL.md +217 -0
  375. package/bundles/antigravity-plugin-extras/skills/mcp-builder/LICENSE.txt +202 -0
  376. package/bundles/antigravity-plugin-extras/skills/mcp-builder/SKILL.md +100 -0
  377. package/bundles/antigravity-plugin-extras/skills/mcp-builder/references/evaluation.md +602 -0
  378. package/bundles/antigravity-plugin-extras/skills/mcp-builder/references/mcp_best_practices.md +915 -0
  379. package/bundles/antigravity-plugin-extras/skills/mcp-builder/references/node_mcp_server.md +916 -0
  380. package/bundles/antigravity-plugin-extras/skills/mcp-builder/references/python_mcp_server.md +752 -0
  381. package/bundles/antigravity-plugin-extras/skills/mcp-builder/scripts/connections.py +151 -0
  382. package/bundles/antigravity-plugin-extras/skills/mcp-builder/scripts/evaluation.py +373 -0
  383. package/bundles/antigravity-plugin-extras/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
  384. package/bundles/antigravity-plugin-extras/skills/mcp-builder/scripts/requirements.txt +2 -0
  385. package/bundles/antigravity-plugin-extras/skills/meeting-insights-analyzer/SKILL.md +328 -0
  386. package/bundles/antigravity-plugin-extras/skills/monorepo/SKILL.md +267 -0
  387. package/bundles/antigravity-plugin-extras/skills/naming-analyzer/SKILL.md +376 -0
  388. package/bundles/antigravity-plugin-extras/skills/nextjs-app-router/SKILL.md +271 -0
  389. package/bundles/antigravity-plugin-extras/skills/notebooklm/AUTHENTICATION.md +154 -0
  390. package/bundles/antigravity-plugin-extras/skills/notebooklm/SKILL.md +270 -0
  391. package/bundles/antigravity-plugin-extras/skills/notebooklm/references/api_reference.md +309 -0
  392. package/bundles/antigravity-plugin-extras/skills/notebooklm/references/troubleshooting.md +376 -0
  393. package/bundles/antigravity-plugin-extras/skills/notebooklm/references/usage_patterns.md +338 -0
  394. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/__init__.py +81 -0
  395. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/ask_question.py +256 -0
  396. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/auth_manager.py +358 -0
  397. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/browser_session.py +255 -0
  398. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/browser_utils.py +107 -0
  399. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/cleanup_manager.py +302 -0
  400. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/config.py +44 -0
  401. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/notebook_manager.py +410 -0
  402. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/run.py +102 -0
  403. package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/setup_environment.py +204 -0
  404. package/bundles/antigravity-plugin-extras/skills/observability/SKILL.md +371 -0
  405. package/bundles/antigravity-plugin-extras/skills/onboard-project/SKILL.md +192 -0
  406. package/bundles/antigravity-plugin-extras/skills/performance-testing/SKILL.md +226 -0
  407. package/bundles/antigravity-plugin-extras/skills/pipeline-state/SKILL.md +208 -0
  408. package/bundles/antigravity-plugin-extras/skills/plantuml/SKILL.md +228 -0
  409. package/bundles/antigravity-plugin-extras/skills/popular-web-designs/SKILL.md +142 -0
  410. package/bundles/antigravity-plugin-extras/skills/popular-web-designs/templates/linear.app.md +196 -0
  411. package/bundles/antigravity-plugin-extras/skills/popular-web-designs/templates/stripe.md +214 -0
  412. package/bundles/antigravity-plugin-extras/skills/popular-web-designs/templates/vercel.md +218 -0
  413. package/bundles/antigravity-plugin-extras/skills/prd-to-code/SKILL.md +127 -0
  414. package/bundles/antigravity-plugin-extras/skills/raffle-winner-picker/SKILL.md +159 -0
  415. package/bundles/antigravity-plugin-extras/skills/react-useeffect/README.md +320 -0
  416. package/bundles/antigravity-plugin-extras/skills/react-useeffect/SKILL.md +53 -0
  417. package/bundles/antigravity-plugin-extras/skills/react-useeffect/alternatives.md +258 -0
  418. package/bundles/antigravity-plugin-extras/skills/react-useeffect/anti-patterns.md +290 -0
  419. package/bundles/antigravity-plugin-extras/skills/receiving-code-review/SKILL.md +213 -0
  420. package/bundles/antigravity-plugin-extras/skills/relay/SKILL.md +246 -0
  421. package/bundles/antigravity-plugin-extras/skills/requesting-code-review/SKILL.md +105 -0
  422. package/bundles/antigravity-plugin-extras/skills/requesting-code-review/code-reviewer.md +146 -0
  423. package/bundles/antigravity-plugin-extras/skills/responsive-mobile-native/SKILL.md +350 -0
  424. package/bundles/antigravity-plugin-extras/skills/responsive-mobile-native/references/pwa-checklist.md +226 -0
  425. package/bundles/antigravity-plugin-extras/skills/responsive-mobile-native/references/touch-and-interaction.md +265 -0
  426. package/bundles/antigravity-plugin-extras/skills/responsive-mobile-native/references/transformation-catalogue.md +326 -0
  427. package/bundles/antigravity-plugin-extras/skills/schema-migration/SKILL.md +275 -0
  428. package/bundles/antigravity-plugin-extras/skills/setup-project-ai/SKILL.md +120 -0
  429. package/bundles/antigravity-plugin-extras/skills/shadcn-radix/SKILL.md +330 -0
  430. package/bundles/antigravity-plugin-extras/skills/sketch/SKILL.md +104 -0
  431. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/LICENSE.txt +202 -0
  432. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/SKILL.md +646 -0
  433. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/color_palettes.py +302 -0
  434. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/easing.py +230 -0
  435. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/frame_composer.py +469 -0
  436. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/gif_builder.py +246 -0
  437. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/typography.py +357 -0
  438. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/validators.py +264 -0
  439. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/visual_effects.py +494 -0
  440. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/requirements.txt +4 -0
  441. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/bounce.py +106 -0
  442. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/explode.py +331 -0
  443. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/fade.py +329 -0
  444. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/flip.py +291 -0
  445. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/kaleidoscope.py +211 -0
  446. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/morph.py +329 -0
  447. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/move.py +293 -0
  448. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/pulse.py +268 -0
  449. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/shake.py +127 -0
  450. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/slide.py +291 -0
  451. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/spin.py +269 -0
  452. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/wiggle.py +300 -0
  453. package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/zoom.py +312 -0
  454. package/bundles/antigravity-plugin-extras/skills/slides/SKILL.md +38 -0
  455. package/bundles/antigravity-plugin-extras/skills/state-tracking/SKILL.md +131 -0
  456. package/bundles/antigravity-plugin-extras/skills/streamlit-dev/SKILL.md +268 -0
  457. package/bundles/antigravity-plugin-extras/skills/svg-create/SKILL.md +251 -0
  458. package/bundles/antigravity-plugin-extras/skills/theme-factory/LICENSE.txt +202 -0
  459. package/bundles/antigravity-plugin-extras/skills/theme-factory/SKILL.md +59 -0
  460. package/bundles/antigravity-plugin-extras/skills/theme-factory/theme-showcase.pdf +0 -0
  461. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/arctic-frost.md +19 -0
  462. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/botanical-garden.md +19 -0
  463. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/desert-rose.md +19 -0
  464. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/forest-canopy.md +19 -0
  465. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/golden-hour.md +19 -0
  466. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/midnight-galaxy.md +19 -0
  467. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/modern-minimalist.md +19 -0
  468. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/ocean-depths.md +19 -0
  469. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/sunset-boulevard.md +19 -0
  470. package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/tech-innovation.md +19 -0
  471. package/bundles/antigravity-plugin-extras/skills/ui-styling-patterns/LICENSE.txt +202 -0
  472. package/bundles/antigravity-plugin-extras/skills/ui-styling-patterns/SKILL.md +320 -0
  473. package/bundles/antigravity-plugin-extras/skills/ui-testing/SKILL.md +660 -0
  474. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/SKILL.md +660 -0
  475. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/_sync_all.py +414 -0
  476. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/app-interface.csv +31 -0
  477. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/charts.csv +26 -0
  478. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/colors.csv +162 -0
  479. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/design.csv +1776 -0
  480. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/draft.csv +1779 -0
  481. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/google-fonts.csv +1924 -0
  482. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/icons.csv +106 -0
  483. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/landing.csv +35 -0
  484. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/products.csv +162 -0
  485. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/react-performance.csv +45 -0
  486. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/styles.csv +85 -0
  487. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/typography.csv +74 -0
  488. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/ui-reasoning.csv +162 -0
  489. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/ux-guidelines.csv +100 -0
  490. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/scripts/core.py +247 -0
  491. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/scripts/design_system.py +1067 -0
  492. package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/scripts/search.py +114 -0
  493. package/bundles/antigravity-plugin-extras/skills/understand-anything/SKILL.md +140 -0
  494. package/bundles/antigravity-plugin-extras/skills/understand-anything/references/commands.md +252 -0
  495. package/bundles/antigravity-plugin-extras/skills/understand-anything/references/graph-schema.md +116 -0
  496. package/bundles/antigravity-plugin-extras/skills/understand-anything/references/pipeline.md +331 -0
  497. package/bundles/antigravity-plugin-extras/skills/update-readme/SKILL.md +74 -0
  498. package/bundles/antigravity-plugin-extras/skills/verification-loop/SKILL.md +209 -0
  499. package/bundles/antigravity-plugin-extras/skills/video-downloader/SKILL.md +107 -0
  500. package/bundles/antigravity-plugin-extras/skills/webapp-development/SKILL.md +288 -0
  501. package/bundles/antigravity-plugin-extras/skills/word-cloud/SKILL.md +339 -0
  502. package/bundles/antigravity-plugin-extras/skills/word-cloud/agents/agent-interface.md +175 -0
  503. package/bundles/antigravity-plugin-extras/skills/word-cloud/references/html.md +384 -0
  504. package/bundles/antigravity-plugin-extras/skills/word-cloud/references/nlp-keywords.md +127 -0
  505. package/bundles/antigravity-plugin-extras/skills/word-cloud/references/palettes.md +149 -0
  506. package/bundles/antigravity-plugin-extras/skills/word-cloud/references/python.md +249 -0
  507. package/bundles/antigravity-plugin-extras/skills/word-cloud/references/react.md +427 -0
  508. package/bundles/antigravity-plugin-extras/skills/word-cloud/references/shapes.md +135 -0
  509. package/bundles/antigravity-plugin-extras/skills/word-cloud/references/stopwords.md +115 -0
  510. package/bundles/antigravity-plugin-extras/skills/youtube-transcript/SKILL.md +416 -0
  511. package/bundles/manifest.json +7 -0
  512. package/dist/cli.js +5492 -0
  513. package/package.json +61 -4
@@ -0,0 +1,577 @@
1
+ ---
2
+ name: golden-plan
3
+ context: fork
4
+ description: "USE THIS SKILL whenever a user asks for a comprehensive implementation plan, a full-stack build plan, a UI+backend plan, or says 'create a plan for building X' where X spans multiple phases or systems. Also activate when the user says 'plan this project', 'I need a detailed plan', 'build plan', 'implementation plan', or attaches a mockup/wireframe and asks how to build it. Produces a zero-ambiguity, evidence-gated plan with self-contained per-phase prompts, exhaustive data binding tables, per-phase validation checklists, and a global quality gate. Evidence-gated: before writing phases, verify required artefacts (mockup, data sample, API contract, scaffold inventory); if any BLOCKER is missing, ask for it and wait before proceeding. Dual-mode: generic by default, junai-pipeline only when explicitly requested. Agent-agnostic - any agent with read/search/edit tools can use this skill."
5
+ ---
6
+
7
+ # Golden Plan
8
+
9
+ ## When to Use
10
+
11
+ Activate this skill when the request is for a **comprehensive implementation plan** that involves:
12
+
13
+ - 8 or more phases across a project
14
+ - Full-stack work (backend + frontend or data + UI)
15
+ - Complex data binding between a backend and a UI (JSON -> React, API -> Streamlit, etc.)
16
+ - A visual reference (HTML mockup, Figma, screenshot) that must be matched pixel-for-pixel
17
+ - Multiple agents executing different phases in sequence
18
+
19
+ Do NOT use for:
20
+ - Simple bug fixes or single-file changes (use `large-task-fidelity.instructions.md` alone)
21
+ - Exploratory plans with vague scope (use `brainstorming/SKILL.md` first to harden scope)
22
+ - Plans that only touch one system in isolation with no data binding (use `docs/writing-plans/SKILL.md`)
23
+
24
+ ---
25
+
26
+ ## Execution Mode (Required first step)
27
+
28
+ Before Phase 0, explicitly choose an execution mode:
29
+
30
+ - **Mode A - `generic` (default):** no junai pipeline assumptions, no orchestrator routing requirements, works with default Copilot/default agents.
31
+ - **Mode B - `junai-pipeline` (opt-in):** include orchestrator/stage-routing conventions and pipeline artefact conventions.
32
+
33
+ If the user does not explicitly request junai pipeline, use `generic`.
34
+
35
+ **Document metadata:** Every plan, status tracker, and other descriptive Markdown artefact created by this skill must follow `.github/instructions/document-frontmatter.instructions.md`. The YAML frontmatter block must be the first content in the file. New documents require `Original Author` (the human owner of the plan, not an inferred name — ASK if unknown, never guess), `Creation Date`, `Creating Model`, and `Executing Coding Agent` (the agent + model + persona that will run the plan, e.g. "Copilot coding agent (model Opus 4.8, persona @architect)"); updated documents must preserve those fields and add or update `Last Author`, `Last Updated`, and `Last Model Used`.
36
+
37
+ ---
38
+
39
+ ## Phase 0 - Evidence Gathering (REQUIRED before writing any plan content)
40
+
41
+ Before writing a single phase, you MUST gather and validate evidence. Do not produce plan output while any BLOCKER evidence item is unresolved.
42
+
43
+ Run through the checklist below. For each item, determine its tier:
44
+
45
+ - **BLOCKER** - Plan cannot proceed without this. Stop and ask the user for it.
46
+ - **WARNING** - Plan can proceed but the affected phases will have noted assumptions. Inform the user what you are assuming.
47
+ - **OPTIONAL** - Nice to have. Note its absence but proceed.
48
+
49
+ **Free head-start (workspace scan):** if `.caddis/PROJECT-FACTS.md` exists (setup-project-ai extracts it), read it first — it pre-fills E4 (scaffold inventory) plus the run/test/build commands, env-var names, and CI/deploy workflows at zero token cost. Also use it to ground risks rather than guess them: no test setup → regression risk; no CI workflow → local-only gate; auth/migration in scope → security/structural risk.
50
+
51
+ ### Evidence Checklist
52
+
53
+ #### E1 - Visual Reference
54
+ - Does a mockup, wireframe, HTML prototype, or screenshot of the target UI exist?
55
+ - If yes: what file/path? Is it frozen (will not change during implementation)?
56
+ - **Tier:** BLOCKER for UI-heavy plans. WARNING for backend-only plans.
57
+
58
+ #### E2 - Live Data Sample
59
+ - Is there a real data sample (JSON file, CSV, DB query result) representative of production data?
60
+ - Does it reflect the CURRENT schema (not a stale sample)?
61
+ - Can field names be read directly from it (avoid field name guessing)?
62
+ - **Tier:** BLOCKER for plans with any data binding. WARNING if schema is defined elsewhere (Pydantic DTOs, TypeScript interfaces).
63
+
64
+ #### E3 - API / Backend Contract
65
+ - Are endpoints already defined (routes, method, request params, response shape)?
66
+ - Do typed DTOs exist (Pydantic models, TypeScript interfaces)?
67
+ - Is the serialization convention documented (camelCase vs snake_case)?
68
+ - **Tier:** BLOCKER for full-stack plans. WARNING if backend and frontend are built in the same plan (contract will be defined during planning itself - mark those sections clearly as `[DEFINED IN THIS PLAN]`).
69
+
70
+ #### E4 - Existing Scaffold Inventory
71
+ - What is already built? (List files, packages, installed dependencies.)
72
+ - What must NOT be recreated or deleted?
73
+ - What needs overhauling vs net-new creation?
74
+ - **Tier:** BLOCKER. Without this, the plan will generate conflicting or duplicate code.
75
+
76
+ #### E5 - Technology Decisions
77
+ - Is the tech stack finalised? (Charts library, state management, routing, test runner, animation, etc.)
78
+ - Are any decisions still open?
79
+ - **Tier:** BLOCKER for phases that depend on the decision. Open decisions must be flagged as `[TECH-DECISION OPEN]` in affected phases.
80
+
81
+ #### E6 - Scope Boundary
82
+ - What is explicitly in v1 vs deferred to a future release?
83
+ - Are any data fields known to be empty/missing in v1 (dispatch issues, schema gaps, etc.)?
84
+ - **Tier:** WARNING. Missing scope boundary causes unbounded implementations.
85
+
86
+ #### E7 - Agent / Skill Availability
87
+ - Which agents will execute phases? (Or default: `@Implement` for code phases, `@Tester` for test phases.)
88
+ - Which model should execute each phase? Add one explicit model recommendation per phase; do not leave this implicit.
89
+ - Are the domain skills referenced in phase prompts present on disk? (Verify paths before listing.)
90
+ - Which coding-agent HARNESS executes each phase? Distinguish: (a) **Copilot coding agent** — loads custom `.github/agents/*.agent.md` personas + auto-loads skills; pick this when the phase needs your toolset. (b) **Claude coding agent** / **Codex agent** — run their own loop, do NOT load custom personas; pick only for pure-execution phases, and point them at skill FILES by path. Note the model under the chosen harness (Copilot can run Opus/Sonnet/GPT; Claude agent runs Anthropic models; Codex runs GPT models).
91
+ - The `Original Author` (human) must be confirmed, not inferred from any name appearing in source documents or commit history. If the owner is unknown, ASK before writing frontmatter.
92
+ - **Tier:** OPTIONAL. Skill paths that do not exist should be omitted from phase prompts - do not list phantom skills.
93
+
94
+ #### E8 - Output Destination
95
+ - Where should the plan file be saved? (Default: `.github/plans/<feature-slug>.md`)
96
+ - Where should the associated tracker be saved? (Default: `.github/plans/tracker/<feature-slug>-tracker.md`)
97
+ - Is there a `chain_id` to use? (Format: `FEAT-YYYY-MMDD-{slug}`)
98
+ - **Tier:** OPTIONAL. Default path is used if not specified.
99
+
100
+ #### E9 - Phase Model Selection
101
+ - Every phase MUST include `**Agent:**`, `**Objective:**`, then `**Model:**` in that exact order.
102
+ - Every phase MUST include a `**Model:**` line immediately after `**Objective:**`.
103
+ - Recommend the best model for the phase, not the cheapest model by default.
104
+ - Use premium reasoning/coding models for foundation contracts, backend/API work, SQL/data lineage, performance-sensitive work, broad integration, and final verification.
105
+ - Use design-capable frontend models for visual systems, dashboards, animation, responsive layout, and premium UX phases.
106
+ - Use lower-cost models only for low-risk documentation, tracker, inventory, route metadata, or repetitive cleanup phases, and only when source-grounding plus validation keeps quality intact.
107
+ - Include a one-line rationale explaining the quality/risk tradeoff.
108
+ - Valid example recommendations include `GPT-5.4`, `GPT-5.3-Codex`, `Claude Sonnet 4.6`, and `GPT-5.4-Mini`; adapt to the user's available model list when they provide one.
109
+ - In the caddis harness, a phase's model may be served by an OSS execution lane: `glm-headless` (`claude-glm -p "/caddis:implement <plan> — Phase N only"`) for mechanical fully-specced phases, with cross-vendor review by a vendor that did NOT implement (`oss_review.py --provider deepseek|glm`). When lanes are used, the plan MUST carry an Execution Protocol section: per-phase handoff, fresh-session boundaries, and a never-push-main ship gate (`/ship-pr` then human go).
110
+
111
+ ---
112
+
113
+ ### Evidence Gate Decision
114
+
115
+ After running the checklist:
116
+
117
+ 1. **All BLOCKERs satisfied** -> Proceed to Phase 1 (Pre-flight Scan).
118
+ 2. **Any BLOCKER missing** -> Load `.github/skills/workflow/asking-questions/SKILL.md` and follow its question structure (numbered questions, multiple-choice options, fast-path `defaults` reply). Do not generate any plan content yet. Example:
119
+
120
+ ```
121
+ EVIDENCE GATE - BLOCKED
122
+
123
+ Before I can write this plan, I need a few things. Reply with answers
124
+ or `defaults` to accept my assumptions.
125
+
126
+ 1) Live data sample (E2):
127
+ a) [path/to/sample.json] - I'll read it directly
128
+ b) Point me to the Pydantic DTO / TypeScript interface file instead
129
+ c) Not available yet - assume from field names in the mockup
130
+
131
+ 2) Existing scaffold location (E4):
132
+ a) [path/to/frontend/] - I'll inventory it
133
+ b) Not built yet - plan will be greenfield
134
+ c) Not sure - use default (greenfield)
135
+
136
+ Once these are answered I will produce the full plan.
137
+ ```
138
+
139
+ 3. **WARNINGs present** -> Proceed, but note each WARNING at the top of Context & Decisions with a `WARNING: ASSUMPTION:` callout.
140
+
141
+ ---
142
+
143
+ ## Phase 1 - Pre-flight Scan
144
+
145
+ Before writing any phase content, produce a **pre-flight summary** in this exact format:
146
+
147
+ ```
148
+ ## Pre-Flight Scan
149
+
150
+ Phase 0 - Context & Decisions: reference section, depends on none
151
+ Phase 1 - [Name]: ~N tasks, depends on [phases or "none"]
152
+ Phase 2 - [Name]: ~N tasks, depends on [phases]
153
+ ...
154
+ Phase N - [Name]: ~N tasks, depends on [phases]
155
+ ```
156
+
157
+ Commit to an expected task count per phase. Do not start writing phase content until this is complete. The pre-flight is your contract with yourself - use it to enforce equal depth across phases.
158
+
159
+ **Dependency sequencing rule:** Phases MUST be listed in execution order — all dependencies of phase N must appear before phase N. No forward dependencies. If phase 3 requires output from phase 4, restructure the order before writing any phase content. The `depends on` column is not decorative; it must reflect real execution constraints. If two phases have no dependency relationship, list the one with higher risk or longer duration first.
160
+
161
+ ---
162
+
163
+ ## Phase 2 - Plan Construction
164
+
165
+ Write the plan to the output file using the template below, section-by-section in order. Keep each section complete before moving to the next.
166
+
167
+ Generate the plan file and its execution tracker in the same run. A golden-plan output is incomplete if either file is missing.
168
+
169
+ ---
170
+
171
+ ### Plan Template
172
+
173
+ ````
174
+ ---
175
+ Original Author: <active author or agent name>
176
+ Creation Date: <YYYY-MM-DDTHH:MM:SSZ>
177
+ Creating Model: <exact runtime model identifier or display name>
178
+ ---
179
+
180
+ # Plan: [Project Name] - [Sub-title e.g. "React UI Build" or "Backend API + Data Pipeline"]
181
+
182
+ > **Updated:** YYYY-MM-DDTHH:MM:SSZ
183
+ > **Status:** READY FOR EXECUTION
184
+ > **Execution mode:** `generic` <!-- or `junai-pipeline` -->
185
+ > **Visual reference:** [path to mockup or "N/A"]
186
+ > **Data source:** [path to canonical data sample or "See E3 - API Contract section"]
187
+ > **Output destination:** [path where plan is saved]
188
+ > **Execution tracker:** `.github/plans/tracker/<feature-slug>-tracker.md`
189
+ > **Execution:** Manual - one agent session per phase. See protocol below.
190
+
191
+ ---
192
+
193
+ ## Pre-Flight Scan
194
+
195
+ [Paste output from Phase 1 - Pre-flight Scan here]
196
+
197
+ ---
198
+
199
+ ## Manual Execution Protocol
200
+
201
+ Each phase runs in a **separate chat session**. After each phase, return for
202
+ validation before starting the next.
203
+
204
+ - In **`generic` mode**, use normal chat + selected agent(s) directly.
205
+ - In **`junai-pipeline` mode**, follow orchestrator routing and stage sequencing.
206
+
207
+ **Per-phase workflow:**
208
+ 1. Open a new chat session with the agent named in the phase header
209
+ 2. Load the skills listed under **Skills to load** - tell the agent:
210
+ "Read these SKILL.md files before starting: [paths]"
211
+ 3. Attach the files listed under **Files to attach**
212
+ 4. Also attach this plan file and the associated execution tracker
213
+ 5. Paste the **Phase Prompt** exactly as written - it is self-contained
214
+ 6. When the agent finishes, validate the phase implementation by running every item in the **Validation Checklist**
215
+ 7. After validation passes, create the phase implementation commit with the phase-scoped commit message
216
+ 8. Capture the phase implementation commit hash with `git rev-parse HEAD`
217
+ 9. Update the associated execution tracker row as complete with status, gate, validation evidence, changed files, commit hash, push state, and useful comments
218
+ 10. Commit the tracker update or amend it into the phase commit according to the repository commit policy
219
+ 11. Do not consider the phase complete until Step 10 is finished and the tracker row reflects the validated commit hash and comments
220
+ 12. Return to advisory chat, share checklist results + errors. Get a green light before proceeding
221
+
222
+ **Drift rule:** If a bug or gap is found after Phase N, fix it in the same session before
223
+ starting Phase N+1. Never carry debt forward.
224
+
225
+ **Large-task fidelity:** Agents implementing large phases must follow
226
+ `.github/instructions/large-task-fidelity.instructions.md`.
227
+
228
+ **Tracker rule:** A phase is not complete until implementation is validated, the phase implementation commit exists, and the associated execution tracker row is marked complete with that commit hash. The row must record status, gate, validation evidence, changed files, commit hash, push state, and comments. Comments should capture useful implementation notes, unresolved follow-ups, known limitations, or handoff context that does not belong in code.
229
+
230
+ ---
231
+
232
+ ## 0. Context & Decisions
233
+
234
+ ### What this plan builds
235
+ [2-4 sentences - what the user will have when all phases are complete]
236
+
237
+ ### WARNING Assumptions
238
+ [List any E-tier WARNINGs from evidence gathering here. If none, write "None - all evidence verified."]
239
+
240
+ ### Technology decisions
241
+
242
+ | Concern | Decision | Rationale |
243
+ |---------|----------|-----------|
244
+ | [e.g. Charts library] | [decision] | [one-line reason] |
245
+ | ... | ... | ... |
246
+
247
+ ### Data parity assumptions
248
+
249
+ List every data domain and its v1 availability:
250
+
251
+ | Domain / Tab | Data availability | Strategy |
252
+ |---|---|---|
253
+ | [e.g. Executive Overview] | Available real data | Live API |
254
+ | [e.g. Geography] | Partially available; array is always `[]` in v1 | Live API + empty state with explanation |
255
+ | [e.g. Modem platform] | Unavailable; 0% populated | Full empty state (do not build chart) |
256
+
257
+ ### Existing scaffold (do NOT recreate)
258
+
259
+ | Path | Purpose | Status |
260
+ |------|---------|--------|
261
+ | [path] | [what it is] | [keep / overhaul / extend] |
262
+
263
+ ### Files to modify (not create)
264
+
265
+ | File | What changes | Risk of regression |
266
+ |------|-------------|-------------------|
267
+ | [path] | [description of change] | [low / medium / high - and why] |
268
+
269
+ ### API contract
270
+
271
+ Only include if the backend exists or is being defined in this plan:
272
+
273
+ | Endpoint | Method | Params | Response type | Notes |
274
+ |----------|--------|--------|---------------|-------|
275
+ | `/api/v1/[resource]` | GET | `period: string` | `[TypeName]` | [serialization notes, e.g. camelCase] |
276
+ | ... | ... | ... | ... | ... |
277
+
278
+ ---
279
+
280
+ [Then repeat the following block for EACH PHASE]
281
+
282
+ ## Phase N - [Name]
283
+
284
+ **Agent:** `@[AgentName]`
285
+ **Objective:** [One sentence - what this phase produces. No implementation detail here.]
286
+ **Model:** `[GPT-5.4 | GPT-5.3-Codex | Claude Sonnet 4.6 | GPT-5.4-Mini | other available model]` - [one-line rationale that explains why this model is sufficient for the phase without compromising implementation quality]
287
+
288
+ ### Skills to load
289
+
290
+ Tell the agent to read these SKILL.md files before starting:
291
+ [Only list skills whose paths you have VERIFIED exist on disk]
292
+ - `.github/skills/[category]/[name]/SKILL.md` - [one-line description]
293
+
294
+ ### Instructions to follow
295
+
296
+ - `.github/instructions/[name].instructions.md`
297
+
298
+ ### Files to attach
299
+
300
+ [All files the agent needs as context to execute this phase]
301
+ - `[path]`
302
+
303
+ ### Phase Prompt
304
+
305
+ [SELF-CONTAINED, COPY-PASTE PROMPT - includes all context needed to execute the phase
306
+ without reading any other document. Structure:]
307
+
308
+ **Fence rule:** Every generated `### Phase Prompt` must be wrapped in a bare fenced code block. The opening fence must be exactly three backticks with no language label. Do not use labelled fences such as `text`, `markdown`, `bash`, or any other language for phase prompts.
309
+
310
+ ```
311
+ You are implementing Phase N ([Name]) of the [project name].
312
+ Read `[plan file path]` Phase N section in full before making any changes.
313
+
314
+ PRINCIPLES: [TDD / KISS / YAGNI / DRY / Readability - adjust per phase]
315
+
316
+ SKILLS TO READ FIRST (load these SKILL.md files):
317
+ - [paths]
318
+
319
+ INSTRUCTIONS TO FOLLOW:
320
+ - [paths]
321
+
322
+ [CRITICAL context the agent needs to NOT make common mistakes - e.g.
323
+ "The API already returns camelCase. Do NOT add a key transformation layer."
324
+ "client.ts already exists - do NOT recreate it."
325
+ "types/nps.ts has all interfaces - import from there, do not re-declare."]
326
+
327
+ Deliverables (in order):
328
+ 1. [Specific deliverable - file path + what it exports]
329
+ 2. [Specific deliverable]
330
+ ...
331
+
332
+ When done, run every item in the Validation Checklist and report each result explicitly.
333
+ Do not mark done unless all items pass. If any fail, fix and re-verify.
334
+
335
+ After all items pass:
336
+ 1. Create the phase implementation commit: `git add -A && git commit -m "phase(N): [Name] complete"`.
337
+ 2. Capture the phase implementation commit hash with `git rev-parse HEAD`.
338
+ 3. Update the associated execution tracker declared in the plan header: `.github/plans/tracker/<feature-slug>-tracker.md`.
339
+ 4. Mark Phase N complete in the tracker row with status, gate, completed date, executor/model, changed files, validation evidence, commit hash, push state, and comments.
340
+ 5. Commit the tracker update or amend it into the phase commit according to the repository's commit policy.
341
+ 6. Do not consider the phase complete until the tracker row is updated after validation and commit, and the row includes the commit hash and comments.
342
+ ```
343
+
344
+ ### What to build
345
+
346
+ [For EACH deliverable: write the complete spec with full code/config/values.
347
+ NO "similar to above". NO "same as Phase N". NO "...". EVERY deliverable fully spelled out.]
348
+
349
+ #### N.1 [Deliverable name]
350
+
351
+ **File:** `[exact path]`
352
+
353
+ [Full interface/type definitions, implementation spec, code where exact values matter.
354
+ If the code is the spec - write the code. Do not describe code, write it.]
355
+
356
+ #### N.2 [Deliverable name]
357
+ [...]
358
+
359
+ ### Validation Checklist - Phase N complete when
360
+
361
+ [SPECIFIC, VERIFIABLE assertions - not "does it work?" but exact checks:]
362
+ - [ ] `npm run build` succeeds (or `python -m pytest` depending on stack)
363
+ - [ ] [Specific file] exists and exports [specific symbol]
364
+ - [ ] [Specific behavior] renders/returns [specific value]
365
+ - [ ] [Known empty state] returns graceful message, no crash
366
+ - [ ] Dark mode: [specific component] renders correctly
367
+ - [ ] Zero [hardcoded colors / any types / console.log / etc.]
368
+ - [ ] Phase implementation is validated, committed, `git rev-parse HEAD` was captured, and the associated execution tracker row is marked complete with status, gate, changed files, validation evidence, commit hash, push state, and useful comments.
369
+
370
+ ### Phase Gate - run after all checklist items pass
371
+
372
+ ```bash
373
+ # 1. Commit validated phase implementation
374
+ git add -A
375
+ git commit -m "phase(N): [Name] complete"
376
+
377
+ # 2. Capture phase implementation commit hash
378
+ git rev-parse HEAD
379
+
380
+ # 3. Update tracker
381
+ # Use .github/plans/tracker/<feature-slug>-tracker.md and mark Phase N complete with:
382
+ # status, gate, completed date, executor/model, changed files,
383
+ # validation evidence, commit hash, push state, and comments.
384
+ ```
385
+
386
+ ---
387
+
388
+ [After all phases, include these three mandatory reference sections:]
389
+
390
+ ## Data Binding Reference
391
+
392
+ Maps every UI component to its exact data source path. All implementing agents must
393
+ consult this before wiring any component to data.
394
+
395
+ ### DB-[SECTION] - [Section Name e.g. "App Shell", "Tab 1 - Overview"]
396
+
397
+ | UI Element / Component | Data path | Type | Notes |
398
+ |-----------------------|-----------|------|-------|
399
+ | [component] | `[json.field.path]` | `type` | [e.g. camelCase, derived, always [] in v1] |
400
+
401
+ [Repeat DB-[SECTION] for each logical section / tab / page]
402
+
403
+ ---
404
+
405
+ ## Query Catalog
406
+
407
+ Every DB-backed UI field must trace to a specific executable SQL query.
408
+ This section is the authoritative reference for data analysis - it answers
409
+ "what query fetches what for the UI?"
410
+
411
+ Include one block per repository function. Queries must use **named bind parameters**
412
+ (`:param`), be schema-qualified (`{schema}.TableName`, default `dbo`), and include an
413
+ `OFFSET+FETCH` or `TOP N` bound - never unbounded.
414
+
415
+ ```sql
416
+ -- [EntityName] - [repository_module].[function_name]
417
+ -- UI fields populated: fieldA, fieldB, embeddedStatus, derivedFromBlob
418
+ -- Parameters: :filter_val (optional), :offset (int), :page_size (int)
419
+ SELECT
420
+ t.column_a AS field_a,
421
+ t.column_b AS field_b,
422
+ t.payload_col AS payload_col -- NVARCHAR(MAX): parsed by [adapter_name]
423
+ FROM {schema}.[SourceTable] AS t
424
+ WHERE (:filter_val IS NULL OR t.filter_col = :filter_val)
425
+ ORDER BY t.created_at DESC
426
+ OFFSET :offset ROWS FETCH NEXT :page_size ROWS ONLY;
427
+ ```
428
+
429
+ **Derived fields from `payload_col` (extracted by normalizer - not in SQL):**
430
+
431
+ | UI field | Payload path / section | Adapter |
432
+ |---|---|---|
433
+ | `embeddedStatus` | NULL check on `payload_col` | n/a |
434
+ | `derivedField1` | `payload_col -> json_key` | `embedded_json_adapter` |
435
+ | `derivedField2` | `payload_col -> ## Section Header` | `embedded_markdown_adapter` |
436
+
437
+ [Repeat one block per repository function - single-row lookups, filters, aggregates, etc.]
438
+
439
+ ---
440
+
441
+ ## Derived Values Reference
442
+
443
+ Values computed client-side. NOT present in the raw data. All implementing agents must
444
+ derive these - never fetch them as separate API calls.
445
+
446
+ | Value name | Formula | Used by |
447
+ |-----------|---------|---------|
448
+ | [e.g. MoM delta] | `currentValue - previousValue` | [component list] |
449
+ | [e.g. YTD avg] | `mean(all non-null values in series)` | [component list] |
450
+
451
+ ---
452
+
453
+ ## Quality Gates
454
+
455
+ Every component across all phases must pass these gates before the plan is considered done:
456
+
457
+ - [ ] Zero hardcoded colours - always CSS variable tokens or named constants
458
+ - [ ] Zero hardcoded data inside components - all data flows from props or hooks
459
+ - [ ] TypeScript strict mode - no `any` type anywhere (or Python typing - no untyped params)
460
+ - [ ] All empty states render without errors when arrays are `[]` or data is `null`
461
+ - [ ] Dark mode: all components render correctly (if applicable)
462
+ - [ ] No `console.log` statements in production code
463
+ - [ ] No unused imports
464
+ - [ ] `npm run build` (or equivalent) produces zero warnings
465
+ - [ ] All tests pass
466
+ [Add project-specific gate items here]
467
+ ````
468
+
469
+ ---
470
+
471
+ ## Phase 3 - Self-Sweep (Mandatory Final Step)
472
+
473
+ After completing the plan document, re-read the **last 40% of the output** before delivering it.
474
+
475
+ Search for these decay signals:
476
+
477
+ | Pattern | Example |
478
+ |---------|---------|
479
+ | `\.{3,}` (ellipsis) | `// ... same for other tabs` |
480
+ | `same pattern` | `same pattern as Phase 2` |
481
+ | `as above` | `as above for remaining endpoints` |
482
+ | `\betc\b\.?` | `deriveYtd, deriveMoM, etc.` |
483
+ | `{ ?\.\.\. ?}` | `expect(result).toBe({ ... })` |
484
+ | `similar to (Phase|Step|Section)` | `similar to Phase 4` |
485
+ | `and \d+ more|and others` | `and 3 more endpoints` |
486
+ | `repeat for|do the same for` | `repeat for remaining products` |
487
+
488
+ **If any match is found:** Expand it in-place - write the full content that was compressed.
489
+ **Do not deliver the plan until zero decay signals remain in the last 40%.**
490
+
491
+ ---
492
+
493
+ ## Mid-Plan Insertion Protocol
494
+
495
+ When a new phase must be inserted into an **existing plan** (discovered mid-project):
496
+
497
+ 1. **Do NOT renumber** existing phases - renumbering breaks agent prompts that reference phase numbers.
498
+ 2. **Use a suffix** for inserted phases: Phase 9 -> Phase 9A, then 9B if another is added later.
499
+ 3. **Update the Pre-flight Scan** at the top to include the new phase.
500
+ 4. **Add a `## Phase 9A` block** with the full structure (Prompt, What to build, Validation Checklist).
501
+ 5. **Update the Output Destination header** to reflect the new `Updated:` date and status.
502
+ 6. **Do NOT modify completed phase sections** - treat them as immutable history.
503
+ 7. **Update frontmatter metadata** - preserve the original fields and add or update `Last Author`, `Last Updated`, and `Last Model Used`.
504
+
505
+ ---
506
+
507
+ ## Output Destination
508
+
509
+ Every generated plan MUST have an associated execution tracker. Put the tracker path in the plan header as `> **Execution tracker:** .github/plans/tracker/<feature-slug>-tracker.md`.
510
+
511
+ Golden-plan must create both files together. Never emit the plan without creating its associated tracker in the same run.
512
+
513
+ Save the completed plan to:
514
+
515
+ - `.github/plans/<feature-slug>.md` - default for both modes
516
+ - `.github/plans/backlog/<feature-slug>.md` - optional backlog location
517
+
518
+ If mode is **`junai-pipeline`**, additionally register the artefact in `.github/agent-docs/ARTIFACTS.md` with `status: current`.
519
+
520
+ When revising an existing plan file, preserve `Original Author`, `Creation Date`, and `Creating Model`, then add or update `Last Author`, `Last Updated`, and `Last Model Used`. Use full ISO 8601 UTC timestamps for the date fields.
521
+
522
+ ### Plan Status Tracker
523
+
524
+ Alongside the plan file, **always** create `.github/plans/tracker/<feature-slug>-tracker.md` using
525
+ this template (one row per phase, populated from the Pre-Flight Scan). The plan header must reference this exact tracker path:
526
+
527
+ ```
528
+ ---
529
+ Original Author: <active author or agent name>
530
+ Creation Date: <YYYY-MM-DDTHH:MM:SSZ>
531
+ Creating Model: <exact runtime model identifier or display name>
532
+ ---
533
+
534
+ # Plan Status - [Project Name]
535
+
536
+ > Plan: `.github/plans/<feature-slug>.md`
537
+ > Tracker: `.github/plans/tracker/<feature-slug>-tracker.md`
538
+ > Started: YYYY-MM-DDTHH:MM:SSZ
539
+ > Last updated: YYYY-MM-DDTHH:MM:SSZ
540
+
541
+ | Phase | Name | Agent | Model | Status | Gate | Completed | Changed files | Validation evidence | Commit | Push | Comments |
542
+ |---|---|---|---|---|---|---|---|---|---|---|---|
543
+ | 0 | Context & Decisions | - | - | Complete | passed | YYYY-MM-DDTHH:MM:SSZ | `.github/plans/<feature-slug>.md` | Evidence gate complete | - | not_required | Plan authored |
544
+ | 1 | [Name] | @[Agent] | [model] | Pending | not_run | - | | | | unknown | |
545
+ | 2 | [Name] | @[Agent] | [model] | Pending | not_run | - | | | | unknown | |
546
+ | N | [Name] | @[Agent] | [model] | Pending | not_run | - | | | | unknown | |
547
+
548
+ ## Status key
549
+ - Pending - not started
550
+ - In Progress - agent session open
551
+ - Complete - gate passed, committed
552
+ - Blocked - gate failed, needs fix
553
+ - Skipped - explicitly deferred
554
+ ```
555
+
556
+ **Gate rule:** The executing agent validates the phase, creates the phase implementation commit, captures that commit hash, then marks the tracker row complete with the hash and comments. Never mark a phase complete before all validation checklist items pass and the phase implementation commit exists.
557
+
558
+ **Comments rule:** The `Comments` column is required for completed, blocked, or skipped phases. Use it for concise handoff notes, blockers, decisions, caveats, known limitations, or follow-up context discovered during the phase.
559
+
560
+ **Plan Completion Protocol:** When every tracker row has `status: Complete`, the plan is done. The executing agent (or the Janitor backstop) MUST:
561
+ 1. Filesystem-move the plan file from `.github/plans/<feature-slug>.md` to `.github/plans/done/<feature-slug>.md` using `Move-Item`/`mv`/`run_command` — NOT `git mv` (the `done/` folder is gitignored in project repos).
562
+ 2. Update the plan frontmatter: set `status: done` and add `Archived: <YYYY-MM-DD>`.
563
+ 3. Log the move in the tracker `Comments` field of the last completed phase row.
564
+ 4. Never delete plan files — only move to `done/`.
565
+
566
+ **Next step after saving:** Load `.github/skills/workflow/preflight/SKILL.md` and run it against the completed plan before any agent begins implementation. Preflight catches wrong endpoints, stale type names, missing dependencies, and field name mismatches that slipped past plan authorship - far cheaper to fix in the plan than mid-implementation.
567
+
568
+ ---
569
+
570
+ ## Relationship to Other Skills
571
+
572
+ | Skill | When to use instead |
573
+ |-------|-------------------|
574
+ | `docs/writing-plans/SKILL.md` | Smaller plans (< 8 phases), TDD micro-task granularity, single developer session |
575
+ | `workflow/brainstorming/SKILL.md` | Scope is still vague - use to harden requirements before this skill |
576
+ | `workflow/preflight/SKILL.md` | After the plan is written - validates it against the actual codebase before agents start |
577
+ | `large-task-fidelity.instructions.md` | Always apply in addition to this skill during plan OUTPUT - not a substitute |
@@ -0,0 +1,100 @@
1
+ ---
2
+ name: handoff
3
+ description: End-of-session handoff — capture exact state so the next session resumes with zero re-discovery
4
+ ---
5
+
6
+ # /handoff — stop cleanly, write the resume doc
7
+
8
+ You are ending a work session. Produce/refresh the resume doc (`.caddis/relay.md`) so the next session
9
+ (you, a future you, or another agent on any tool) can resume immediately. This is the anti-context-rot checkpoint.
10
+
11
+ ## Step 1 — capture learnings FIRST (knowledge-transfer)
12
+ **Before** gathering git signals or writing relay.md, decide on `knowledge-transfer` — and the default
13
+ is to run it.
14
+
15
+ - **Trigger (default ON):** if this session's `git diff` touched any code or config, OR you debugged
16
+ anything / proved a non-obvious behavior → you **MUST** dispatch the `knowledge-transfer` subagent first.
17
+ - **Skip ONLY if** the session was purely read-only, design/planning, or discussion — nothing was built,
18
+ fixed, or proven. When in doubt, dispatch. "I already wrote some docs by hand" is **not** a reason to
19
+ skip — the subagent routes/consolidates across the right files and catches what you'd miss.
20
+ - It writes durable findings (root causes, workarounds, constraints, rejected approaches) into the right
21
+ AGENTS.md (the canonical rules file) / instructions / runbooks. Docs only — never code.
22
+ - **Record the outcome** in relay.md's `## Learnings captured` line (below). A skip must state its reason.
23
+
24
+ ## Step 2 — gather verified signals (don't guess)
25
+ ```
26
+ git status --short
27
+ git branch --show-current
28
+ git log --oneline -5
29
+ ```
30
+ Then read the active plan in `.caddis/plans/` (falling back to legacy `.github/plans/` if present) and its tracker.
31
+
32
+ **Crash / interrupted-work check.** Cross-check the tracker against `git status` + `git log`: if a phase is
33
+ marked in-progress but has **uncommitted changes** (work left mid-flight), or a phase is marked done with
34
+ **no commit** to back it, the last session was interrupted. Say so explicitly in `## Next step` ("resume
35
+ mid-phase N — `<files>` left uncommitted; re-run its tests first") so the next session doesn't assume a
36
+ clean phase boundary and lose or double-do the work.
37
+
38
+ **Digression check.** If this session abandoned a mid-flight plan for a *different* one (relay.md or the
39
+ tracker shows plan A in progress, but the work moved to plan B), suggest the user run `/digress` to park
40
+ plan A on the workstream stack — so its exact resume point survives and `/resume` can pop it back later.
41
+
42
+ ## Step 3 — write the resume doc (overwrite) with exactly these sections
43
+ > **Where to write:** solo / single active branch → `.caddis/relay.md` (default).
44
+ > **Team / parallel branches** → write `.caddis/relay/<current-branch>.md` instead, so two
45
+ > developers never merge-conflict on one shared relay doc. The SessionStart hook prefers the
46
+ > per-branch file automatically when it exists, then `.caddis/relay.md`, then the legacy
47
+ > `.claude/relay/<branch>.md` and root `relay.md` (back-compat during the migration).
48
+ >
49
+ > **Write where the repo lives:** if this repo still has a `.claudster/` (and no `.caddis/`), write
50
+ > the relay THERE — don't create a second artifact dir. `/caddis:migrate-dir` converts the repo.
51
+
52
+ ```markdown
53
+ # Relay — <feature>
54
+ **Updated:** <ISO timestamp>
55
+
56
+ ## Current workstream
57
+ <Active plan path + which phase. One line on the goal.>
58
+
59
+ ## Done (this session / across sessions)
60
+ - <evidence-backed bullet — cite file/commit, only what's actually complete>
61
+
62
+ ## Next step (exact)
63
+ <The single next action. Include the command/phase. Add a fallback if blocked.>
64
+
65
+ ## Read first on resume
66
+ - `<path>` — why it matters
67
+ - `.caddis/plans/<feature>.md` — the plan + tracker
68
+
69
+ ## Validation state
70
+ <Commands run this session and their result: pass / fail / not-run. Be honest.>
71
+
72
+ ## Open questions / blockers
73
+ <Decisions needed, ambiguities, anything unverified. "None" if truly none.>
74
+
75
+ ## Learnings captured
76
+ knowledge-transfer: <✓ ran → files written | ✗ skipped → reason>
77
+
78
+ ## Resume prompt
79
+ \`\`\`
80
+ Read relay.md, then the plan it points to. Continue from <phase/step>. Next action: <exact>.
81
+ \`\`\`
82
+ ```
83
+
84
+ ## Rules
85
+ - **One next action, by priority ladder.** `## Next step` names exactly ONE action — not a menu. Pick it in
86
+ order: (1) interrupted mid-phase work → finish + commit it; else (2) the active plan's next not-started
87
+ phase; else (3) the top open question/decision. Everything else is context, not the next step.
88
+ - Only verified facts and real paths. Mark anything unconfirmed as `Unknown`.
89
+ - Update the plan's tracker rows too (status + last commit) — relay and tracker must agree.
90
+ - Don't commit unless asked. Report where `relay.md` was written and the one next action.
91
+ - **Prune the Done section — two rules, both apply:**
92
+ 1. **Merge-based:** Phases already merged to `main` (confirmed by a tag or commit) must be compressed
93
+ to a single line: `- **RW-N**: merged to main as vYYYY.MM.DD.N (<commit>) ✅`. Only the current
94
+ in-progress phase keeps detailed bullets.
95
+ 2. **Count-based:** The Done section must contain at most **8 bullets total** after writing. If there
96
+ are more, collapse the oldest into one summary line:
97
+ `- [N prior milestones — see git log for full history]`
98
+ Keep the 8 most recent bullets below it.
99
+ Target: relay.md stays under ~80 lines on disk. inject_relay.py caps injection at 120 lines as a
100
+ safety net, but the file itself should never reach that ceiling.