ac-framework 2.2.0 → 2.4.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 (3041) hide show
  1. package/LICENSE +2 -0
  2. package/README.md +4 -1
  3. package/bin/postinstall.js +9 -7
  4. package/framework/make_your_own/.agents/skills/documentation/SKILL.md +441 -0
  5. package/framework/make_your_own/.agents/skills/find-skills/SKILL.md +130 -0
  6. package/framework/make_your_own/.agents/skills/sync-index/SKILL.md +35 -0
  7. package/framework/make_your_own/.agents/skills/vibe-security/SKILL.md +122 -0
  8. package/framework/make_your_own/.agents/skills/vibe-security/agents/openai.yaml +8 -0
  9. package/framework/make_your_own/.agents/skills/vibe-security/references/ai-integration.md +61 -0
  10. package/framework/make_your_own/.agents/skills/vibe-security/references/authentication.md +90 -0
  11. package/framework/make_your_own/.agents/skills/vibe-security/references/data-access.md +79 -0
  12. package/framework/make_your_own/.agents/skills/vibe-security/references/database-security.md +151 -0
  13. package/framework/make_your_own/.agents/skills/vibe-security/references/deployment.md +49 -0
  14. package/framework/make_your_own/.agents/skills/vibe-security/references/mobile.md +55 -0
  15. package/framework/make_your_own/.agents/skills/vibe-security/references/payments.md +63 -0
  16. package/framework/make_your_own/.agents/skills/vibe-security/references/rate-limiting.md +55 -0
  17. package/framework/make_your_own/.agents/skills/vibe-security/references/secrets-and-env.md +47 -0
  18. package/framework/make_your_own/.agents/workflows/ac-lite.md +42 -0
  19. package/framework/make_your_own/.agents/workflows/ac.md +95 -0
  20. package/framework/make_your_own/.amazonq/prompts/ac-lite.md +42 -0
  21. package/framework/make_your_own/.amazonq/prompts/ac.md +95 -0
  22. package/framework/make_your_own/.amazonq/skills/documentation/SKILL.md +441 -0
  23. package/framework/make_your_own/.amazonq/skills/find-skills/SKILL.md +130 -0
  24. package/framework/make_your_own/.amazonq/skills/sync-index/SKILL.md +35 -0
  25. package/framework/make_your_own/.amazonq/skills/vibe-security/SKILL.md +122 -0
  26. package/framework/make_your_own/.amazonq/skills/vibe-security/agents/openai.yaml +8 -0
  27. package/framework/make_your_own/.amazonq/skills/vibe-security/references/ai-integration.md +61 -0
  28. package/framework/make_your_own/.amazonq/skills/vibe-security/references/authentication.md +90 -0
  29. package/framework/make_your_own/.amazonq/skills/vibe-security/references/data-access.md +79 -0
  30. package/framework/make_your_own/.amazonq/skills/vibe-security/references/database-security.md +151 -0
  31. package/framework/make_your_own/.amazonq/skills/vibe-security/references/deployment.md +49 -0
  32. package/framework/make_your_own/.amazonq/skills/vibe-security/references/mobile.md +55 -0
  33. package/framework/make_your_own/.amazonq/skills/vibe-security/references/payments.md +63 -0
  34. package/framework/make_your_own/.amazonq/skills/vibe-security/references/rate-limiting.md +55 -0
  35. package/framework/make_your_own/.amazonq/skills/vibe-security/references/secrets-and-env.md +47 -0
  36. package/framework/make_your_own/.augment/commands/ac-lite.md +42 -0
  37. package/framework/make_your_own/.augment/commands/ac.md +95 -0
  38. package/framework/make_your_own/.augment/commands/opsx-apply.md +150 -0
  39. package/framework/make_your_own/.augment/commands/opsx-archive.md +155 -0
  40. package/framework/make_your_own/.augment/commands/opsx-bulk-archive.md +240 -0
  41. package/framework/make_your_own/.augment/commands/opsx-continue.md +112 -0
  42. package/framework/make_your_own/.augment/commands/opsx-explore.md +172 -0
  43. package/framework/make_your_own/.augment/commands/opsx-ff.md +92 -0
  44. package/framework/make_your_own/.augment/commands/opsx-new.md +67 -0
  45. package/framework/make_your_own/.augment/commands/opsx-onboard.md +523 -0
  46. package/framework/make_your_own/.augment/commands/opsx-sync.md +132 -0
  47. package/framework/make_your_own/.augment/commands/opsx-verify.md +162 -0
  48. package/framework/make_your_own/.augment/skills/documentation/SKILL.md +441 -0
  49. package/framework/make_your_own/.augment/skills/find-skills/SKILL.md +130 -0
  50. package/framework/make_your_own/.augment/skills/sync-index/SKILL.md +35 -0
  51. package/framework/make_your_own/.augment/skills/vibe-security/SKILL.md +122 -0
  52. package/framework/make_your_own/.augment/skills/vibe-security/agents/openai.yaml +8 -0
  53. package/framework/make_your_own/.augment/skills/vibe-security/references/ai-integration.md +61 -0
  54. package/framework/make_your_own/.augment/skills/vibe-security/references/authentication.md +90 -0
  55. package/framework/make_your_own/.augment/skills/vibe-security/references/data-access.md +79 -0
  56. package/framework/make_your_own/.augment/skills/vibe-security/references/database-security.md +151 -0
  57. package/framework/make_your_own/.augment/skills/vibe-security/references/deployment.md +49 -0
  58. package/framework/make_your_own/.augment/skills/vibe-security/references/mobile.md +55 -0
  59. package/framework/make_your_own/.augment/skills/vibe-security/references/payments.md +63 -0
  60. package/framework/make_your_own/.augment/skills/vibe-security/references/rate-limiting.md +55 -0
  61. package/framework/make_your_own/.augment/skills/vibe-security/references/secrets-and-env.md +47 -0
  62. package/framework/make_your_own/.claude/commands/opsx/ac-lite.md +42 -0
  63. package/framework/make_your_own/.claude/commands/opsx/ac.md +95 -0
  64. package/framework/make_your_own/.claude/commands/opsx/apply.md +152 -0
  65. package/framework/make_your_own/.claude/commands/opsx/archive.md +157 -0
  66. package/framework/make_your_own/.claude/commands/opsx/bulk-archive.md +242 -0
  67. package/framework/make_your_own/.claude/commands/opsx/continue.md +114 -0
  68. package/framework/make_your_own/.claude/commands/opsx/explore.md +174 -0
  69. package/framework/make_your_own/.claude/commands/opsx/ff.md +94 -0
  70. package/framework/make_your_own/.claude/commands/opsx/new.md +69 -0
  71. package/framework/make_your_own/.claude/commands/opsx/onboard.md +525 -0
  72. package/framework/make_your_own/.claude/commands/opsx/sync.md +134 -0
  73. package/framework/make_your_own/.claude/commands/opsx/verify.md +164 -0
  74. package/framework/make_your_own/.claude/skills/documentation/SKILL.md +441 -0
  75. package/framework/make_your_own/.claude/skills/find-skills/SKILL.md +130 -0
  76. package/framework/make_your_own/.claude/skills/sync-index/SKILL.md +35 -0
  77. package/framework/make_your_own/.claude/skills/vibe-security/SKILL.md +122 -0
  78. package/framework/make_your_own/.claude/skills/vibe-security/agents/openai.yaml +8 -0
  79. package/framework/make_your_own/.claude/skills/vibe-security/references/ai-integration.md +61 -0
  80. package/framework/make_your_own/.claude/skills/vibe-security/references/authentication.md +90 -0
  81. package/framework/make_your_own/.claude/skills/vibe-security/references/data-access.md +79 -0
  82. package/framework/make_your_own/.claude/skills/vibe-security/references/database-security.md +151 -0
  83. package/framework/make_your_own/.claude/skills/vibe-security/references/deployment.md +49 -0
  84. package/framework/make_your_own/.claude/skills/vibe-security/references/mobile.md +55 -0
  85. package/framework/make_your_own/.claude/skills/vibe-security/references/payments.md +63 -0
  86. package/framework/make_your_own/.claude/skills/vibe-security/references/rate-limiting.md +55 -0
  87. package/framework/make_your_own/.claude/skills/vibe-security/references/secrets-and-env.md +47 -0
  88. package/framework/make_your_own/.cline/commands/opsx/ac-lite.md +42 -0
  89. package/framework/make_your_own/.cline/commands/opsx/ac.md +95 -0
  90. package/framework/make_your_own/.cline/skills/ci-deploy/SKILL.md +501 -0
  91. package/framework/make_your_own/.cline/skills/code-maintainability/SKILL.md +1108 -0
  92. package/framework/make_your_own/.cline/skills/code-review/SKILL.md +250 -0
  93. package/framework/make_your_own/.cline/skills/documentation/SKILL.md +441 -0
  94. package/framework/make_your_own/.cline/skills/error-handling-patterns/SKILL.md +641 -0
  95. package/framework/make_your_own/.cline/skills/find-skills/SKILL.md +130 -0
  96. package/framework/make_your_own/.cline/skills/performance-optimizer/SKILL.md +43 -0
  97. package/framework/make_your_own/.cline/skills/requirement-checklist/SKILL.md +90 -0
  98. package/framework/make_your_own/.cline/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  99. package/framework/make_your_own/.cline/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  100. package/framework/make_your_own/.cline/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  101. package/framework/make_your_own/.cline/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  102. package/framework/make_your_own/.cline/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  103. package/framework/make_your_own/.cline/skills/skill-writer/SKILL.md +385 -0
  104. package/framework/make_your_own/.cline/skills/sync-index/SKILL.md +35 -0
  105. package/framework/make_your_own/.cline/skills/test-generator/SKILL.md +41 -0
  106. package/framework/make_your_own/.cline/skills/testing-qa/SKILL.md +249 -0
  107. package/framework/make_your_own/.cline/skills/vibe-security/SKILL.md +122 -0
  108. package/framework/make_your_own/.cline/skills/vibe-security/agents/openai.yaml +8 -0
  109. package/framework/make_your_own/.cline/skills/vibe-security/references/ai-integration.md +61 -0
  110. package/framework/make_your_own/.cline/skills/vibe-security/references/authentication.md +90 -0
  111. package/framework/make_your_own/.cline/skills/vibe-security/references/data-access.md +79 -0
  112. package/framework/make_your_own/.cline/skills/vibe-security/references/database-security.md +151 -0
  113. package/framework/make_your_own/.cline/skills/vibe-security/references/deployment.md +49 -0
  114. package/framework/make_your_own/.cline/skills/vibe-security/references/mobile.md +55 -0
  115. package/framework/make_your_own/.cline/skills/vibe-security/references/payments.md +63 -0
  116. package/framework/make_your_own/.cline/skills/vibe-security/references/rate-limiting.md +55 -0
  117. package/framework/make_your_own/.cline/skills/vibe-security/references/secrets-and-env.md +47 -0
  118. package/framework/make_your_own/.clinerules/skills/ci-deploy/SKILL.md +501 -0
  119. package/framework/make_your_own/.clinerules/skills/code-maintainability/SKILL.md +1108 -0
  120. package/framework/make_your_own/.clinerules/skills/code-review/SKILL.md +250 -0
  121. package/framework/make_your_own/.clinerules/skills/documentation/SKILL.md +441 -0
  122. package/framework/make_your_own/.clinerules/skills/error-handling-patterns/SKILL.md +641 -0
  123. package/framework/make_your_own/.clinerules/skills/find-skills/SKILL.md +130 -0
  124. package/framework/make_your_own/.clinerules/skills/performance-optimizer/SKILL.md +43 -0
  125. package/framework/make_your_own/.clinerules/skills/requirement-checklist/SKILL.md +90 -0
  126. package/framework/make_your_own/.clinerules/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  127. package/framework/make_your_own/.clinerules/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  128. package/framework/make_your_own/.clinerules/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  129. package/framework/make_your_own/.clinerules/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  130. package/framework/make_your_own/.clinerules/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  131. package/framework/make_your_own/.clinerules/skills/skill-writer/SKILL.md +385 -0
  132. package/framework/make_your_own/.clinerules/skills/sync-index/SKILL.md +35 -0
  133. package/framework/make_your_own/.clinerules/skills/test-generator/SKILL.md +41 -0
  134. package/framework/make_your_own/.clinerules/skills/testing-qa/SKILL.md +249 -0
  135. package/framework/make_your_own/.clinerules/skills/vibe-security/SKILL.md +122 -0
  136. package/framework/make_your_own/.clinerules/skills/vibe-security/agents/openai.yaml +8 -0
  137. package/framework/make_your_own/.clinerules/skills/vibe-security/references/ai-integration.md +61 -0
  138. package/framework/make_your_own/.clinerules/skills/vibe-security/references/authentication.md +90 -0
  139. package/framework/make_your_own/.clinerules/skills/vibe-security/references/data-access.md +79 -0
  140. package/framework/make_your_own/.clinerules/skills/vibe-security/references/database-security.md +151 -0
  141. package/framework/make_your_own/.clinerules/skills/vibe-security/references/deployment.md +49 -0
  142. package/framework/make_your_own/.clinerules/skills/vibe-security/references/mobile.md +55 -0
  143. package/framework/make_your_own/.clinerules/skills/vibe-security/references/payments.md +63 -0
  144. package/framework/make_your_own/.clinerules/skills/vibe-security/references/rate-limiting.md +55 -0
  145. package/framework/make_your_own/.clinerules/skills/vibe-security/references/secrets-and-env.md +47 -0
  146. package/framework/make_your_own/.clinerules/workflows/ac-lite.md +42 -0
  147. package/framework/make_your_own/.clinerules/workflows/ac.md +95 -0
  148. package/framework/make_your_own/.clinerules/workflows/opsx-apply.md +149 -0
  149. package/framework/make_your_own/.clinerules/workflows/opsx-archive.md +154 -0
  150. package/framework/make_your_own/.clinerules/workflows/opsx-bulk-archive.md +239 -0
  151. package/framework/make_your_own/.clinerules/workflows/opsx-continue.md +111 -0
  152. package/framework/make_your_own/.clinerules/workflows/opsx-explore.md +171 -0
  153. package/framework/make_your_own/.clinerules/workflows/opsx-ff.md +91 -0
  154. package/framework/make_your_own/.clinerules/workflows/opsx-new.md +66 -0
  155. package/framework/make_your_own/.clinerules/workflows/opsx-onboard.md +522 -0
  156. package/framework/make_your_own/.clinerules/workflows/opsx-sync.md +131 -0
  157. package/framework/make_your_own/.clinerules/workflows/opsx-verify.md +161 -0
  158. package/framework/make_your_own/.codebuddy/commands/opsx/ac-lite.md +42 -0
  159. package/framework/make_your_own/.codebuddy/commands/opsx/ac.md +95 -0
  160. package/framework/make_your_own/.codebuddy/commands/opsx/apply.md +151 -0
  161. package/framework/make_your_own/.codebuddy/commands/opsx/archive.md +156 -0
  162. package/framework/make_your_own/.codebuddy/commands/opsx/bulk-archive.md +241 -0
  163. package/framework/make_your_own/.codebuddy/commands/opsx/continue.md +113 -0
  164. package/framework/make_your_own/.codebuddy/commands/opsx/explore.md +173 -0
  165. package/framework/make_your_own/.codebuddy/commands/opsx/ff.md +93 -0
  166. package/framework/make_your_own/.codebuddy/commands/opsx/new.md +68 -0
  167. package/framework/make_your_own/.codebuddy/commands/opsx/onboard.md +524 -0
  168. package/framework/make_your_own/.codebuddy/commands/opsx/sync.md +133 -0
  169. package/framework/make_your_own/.codebuddy/commands/opsx/verify.md +163 -0
  170. package/framework/make_your_own/.codebuddy/skills/acfm-memory/SKILL.md +312 -0
  171. package/framework/make_your_own/.codebuddy/skills/acfm-spec-workflow/SKILL.md +269 -0
  172. package/framework/make_your_own/.codebuddy/skills/brainstorming/SKILL.md +282 -0
  173. package/framework/make_your_own/.codebuddy/skills/changelog-generator/SKILL.md +104 -0
  174. package/framework/make_your_own/.codebuddy/skills/ci-deploy/SKILL.md +501 -0
  175. package/framework/make_your_own/.codebuddy/skills/code-maintainability/SKILL.md +1108 -0
  176. package/framework/make_your_own/.codebuddy/skills/code-review/SKILL.md +250 -0
  177. package/framework/make_your_own/.codebuddy/skills/context-synthesizer/SKILL.md +322 -0
  178. package/framework/make_your_own/.codebuddy/skills/documentation/SKILL.md +441 -0
  179. package/framework/make_your_own/.codebuddy/skills/error-handling-patterns/SKILL.md +641 -0
  180. package/framework/make_your_own/.codebuddy/skills/find-skills/SKILL.md +130 -0
  181. package/framework/make_your_own/.codebuddy/skills/microtask-decomposition/SKILL.md +368 -0
  182. package/framework/make_your_own/.codebuddy/skills/openspec-apply-change/SKILL.md +172 -0
  183. package/framework/make_your_own/.codebuddy/skills/openspec-archive-change/SKILL.md +130 -0
  184. package/framework/make_your_own/.codebuddy/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  185. package/framework/make_your_own/.codebuddy/skills/openspec-continue-change/SKILL.md +134 -0
  186. package/framework/make_your_own/.codebuddy/skills/openspec-explore/SKILL.md +306 -0
  187. package/framework/make_your_own/.codebuddy/skills/openspec-ff-change/SKILL.md +117 -0
  188. package/framework/make_your_own/.codebuddy/skills/openspec-new-change/SKILL.md +90 -0
  189. package/framework/make_your_own/.codebuddy/skills/openspec-onboard/SKILL.md +529 -0
  190. package/framework/make_your_own/.codebuddy/skills/openspec-sync-specs/SKILL.md +154 -0
  191. package/framework/make_your_own/.codebuddy/skills/openspec-verify-change/SKILL.md +184 -0
  192. package/framework/make_your_own/.codebuddy/skills/performance-optimizer/SKILL.md +43 -0
  193. package/framework/make_your_own/.codebuddy/skills/project-constitution/SKILL.md +66 -0
  194. package/framework/make_your_own/.codebuddy/skills/project-index/SKILL.md +234 -0
  195. package/framework/make_your_own/.codebuddy/skills/project-index/scripts/scan_codebase.py +47 -0
  196. package/framework/make_your_own/.codebuddy/skills/project-index/templates/agent-template.md +18 -0
  197. package/framework/make_your_own/.codebuddy/skills/project-index/templates/skill-template.md +20 -0
  198. package/framework/make_your_own/.codebuddy/skills/requirement-checklist/SKILL.md +90 -0
  199. package/framework/make_your_own/.codebuddy/skills/research-retrieval/SKILL.md +357 -0
  200. package/framework/make_your_own/.codebuddy/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  201. package/framework/make_your_own/.codebuddy/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  202. package/framework/make_your_own/.codebuddy/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  203. package/framework/make_your_own/.codebuddy/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  204. package/framework/make_your_own/.codebuddy/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  205. package/framework/make_your_own/.codebuddy/skills/skill-writer/SKILL.md +385 -0
  206. package/framework/make_your_own/.codebuddy/skills/spec-analysis/SKILL.md +65 -0
  207. package/framework/make_your_own/.codebuddy/skills/spec-clarification/SKILL.md +73 -0
  208. package/framework/make_your_own/.codebuddy/skills/sync-index/SKILL.md +35 -0
  209. package/framework/make_your_own/.codebuddy/skills/systematic-debugging/SKILL.md +296 -0
  210. package/framework/make_your_own/.codebuddy/skills/test-generator/SKILL.md +41 -0
  211. package/framework/make_your_own/.codebuddy/skills/testing-qa/SKILL.md +249 -0
  212. package/framework/make_your_own/.codebuddy/skills/vibe-security/SKILL.md +122 -0
  213. package/framework/make_your_own/.codebuddy/skills/vibe-security/agents/openai.yaml +8 -0
  214. package/framework/make_your_own/.codebuddy/skills/vibe-security/references/ai-integration.md +61 -0
  215. package/framework/make_your_own/.codebuddy/skills/vibe-security/references/authentication.md +90 -0
  216. package/framework/make_your_own/.codebuddy/skills/vibe-security/references/data-access.md +79 -0
  217. package/framework/make_your_own/.codebuddy/skills/vibe-security/references/database-security.md +151 -0
  218. package/framework/make_your_own/.codebuddy/skills/vibe-security/references/deployment.md +49 -0
  219. package/framework/make_your_own/.codebuddy/skills/vibe-security/references/mobile.md +55 -0
  220. package/framework/make_your_own/.codebuddy/skills/vibe-security/references/payments.md +63 -0
  221. package/framework/make_your_own/.codebuddy/skills/vibe-security/references/rate-limiting.md +55 -0
  222. package/framework/make_your_own/.codebuddy/skills/vibe-security/references/secrets-and-env.md +47 -0
  223. package/framework/make_your_own/.codex/skills/acfm-memory/SKILL.md +312 -0
  224. package/framework/make_your_own/.codex/skills/acfm-spec-workflow/SKILL.md +269 -0
  225. package/framework/make_your_own/.codex/skills/brainstorming/SKILL.md +282 -0
  226. package/framework/make_your_own/.codex/skills/changelog-generator/SKILL.md +104 -0
  227. package/framework/make_your_own/.codex/skills/ci-deploy/SKILL.md +501 -0
  228. package/framework/make_your_own/.codex/skills/code-maintainability/SKILL.md +1108 -0
  229. package/framework/make_your_own/.codex/skills/code-review/SKILL.md +250 -0
  230. package/framework/make_your_own/.codex/skills/context-synthesizer/SKILL.md +322 -0
  231. package/framework/make_your_own/.codex/skills/documentation/SKILL.md +441 -0
  232. package/framework/make_your_own/.codex/skills/error-handling-patterns/SKILL.md +641 -0
  233. package/framework/make_your_own/.codex/skills/find-skills/SKILL.md +130 -0
  234. package/framework/make_your_own/.codex/skills/microtask-decomposition/SKILL.md +368 -0
  235. package/framework/make_your_own/.codex/skills/openspec-apply-change/SKILL.md +172 -0
  236. package/framework/make_your_own/.codex/skills/openspec-archive-change/SKILL.md +130 -0
  237. package/framework/make_your_own/.codex/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  238. package/framework/make_your_own/.codex/skills/openspec-continue-change/SKILL.md +134 -0
  239. package/framework/make_your_own/.codex/skills/openspec-explore/SKILL.md +306 -0
  240. package/framework/make_your_own/.codex/skills/openspec-ff-change/SKILL.md +117 -0
  241. package/framework/make_your_own/.codex/skills/openspec-new-change/SKILL.md +90 -0
  242. package/framework/make_your_own/.codex/skills/openspec-onboard/SKILL.md +529 -0
  243. package/framework/make_your_own/.codex/skills/openspec-sync-specs/SKILL.md +154 -0
  244. package/framework/make_your_own/.codex/skills/openspec-verify-change/SKILL.md +184 -0
  245. package/framework/make_your_own/.codex/skills/performance-optimizer/SKILL.md +43 -0
  246. package/framework/make_your_own/.codex/skills/project-constitution/SKILL.md +66 -0
  247. package/framework/make_your_own/.codex/skills/project-index/SKILL.md +234 -0
  248. package/framework/make_your_own/.codex/skills/project-index/scripts/scan_codebase.py +47 -0
  249. package/framework/make_your_own/.codex/skills/project-index/templates/agent-template.md +18 -0
  250. package/framework/make_your_own/.codex/skills/project-index/templates/skill-template.md +20 -0
  251. package/framework/make_your_own/.codex/skills/requirement-checklist/SKILL.md +90 -0
  252. package/framework/make_your_own/.codex/skills/research-retrieval/SKILL.md +357 -0
  253. package/framework/make_your_own/.codex/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  254. package/framework/make_your_own/.codex/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  255. package/framework/make_your_own/.codex/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  256. package/framework/make_your_own/.codex/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  257. package/framework/make_your_own/.codex/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  258. package/framework/make_your_own/.codex/skills/skill-writer/SKILL.md +385 -0
  259. package/framework/make_your_own/.codex/skills/spec-analysis/SKILL.md +65 -0
  260. package/framework/make_your_own/.codex/skills/spec-clarification/SKILL.md +73 -0
  261. package/framework/make_your_own/.codex/skills/sync-index/SKILL.md +35 -0
  262. package/framework/make_your_own/.codex/skills/systematic-debugging/SKILL.md +296 -0
  263. package/framework/make_your_own/.codex/skills/test-generator/SKILL.md +41 -0
  264. package/framework/make_your_own/.codex/skills/testing-qa/SKILL.md +249 -0
  265. package/framework/make_your_own/.codex/skills/vibe-security/SKILL.md +122 -0
  266. package/framework/make_your_own/.codex/skills/vibe-security/agents/openai.yaml +8 -0
  267. package/framework/make_your_own/.codex/skills/vibe-security/references/ai-integration.md +61 -0
  268. package/framework/make_your_own/.codex/skills/vibe-security/references/authentication.md +90 -0
  269. package/framework/make_your_own/.codex/skills/vibe-security/references/data-access.md +79 -0
  270. package/framework/make_your_own/.codex/skills/vibe-security/references/database-security.md +151 -0
  271. package/framework/make_your_own/.codex/skills/vibe-security/references/deployment.md +49 -0
  272. package/framework/make_your_own/.codex/skills/vibe-security/references/mobile.md +55 -0
  273. package/framework/make_your_own/.codex/skills/vibe-security/references/payments.md +63 -0
  274. package/framework/make_your_own/.codex/skills/vibe-security/references/rate-limiting.md +55 -0
  275. package/framework/make_your_own/.codex/skills/vibe-security/references/secrets-and-env.md +47 -0
  276. package/framework/make_your_own/.continue/prompts/ac-lite.md +42 -0
  277. package/framework/make_your_own/.continue/prompts/ac.md +95 -0
  278. package/framework/make_your_own/.continue/prompts/ac.prompt +95 -0
  279. package/framework/make_your_own/.continue/prompts/opsx-apply.prompt +151 -0
  280. package/framework/make_your_own/.continue/prompts/opsx-archive.prompt +156 -0
  281. package/framework/make_your_own/.continue/prompts/opsx-bulk-archive.prompt +241 -0
  282. package/framework/make_your_own/.continue/prompts/opsx-continue.prompt +113 -0
  283. package/framework/make_your_own/.continue/prompts/opsx-explore.prompt +173 -0
  284. package/framework/make_your_own/.continue/prompts/opsx-ff.prompt +93 -0
  285. package/framework/make_your_own/.continue/prompts/opsx-new.prompt +68 -0
  286. package/framework/make_your_own/.continue/prompts/opsx-onboard.prompt +524 -0
  287. package/framework/make_your_own/.continue/prompts/opsx-sync.prompt +133 -0
  288. package/framework/make_your_own/.continue/prompts/opsx-verify.prompt +163 -0
  289. package/framework/make_your_own/.continue/skills/acfm-memory/SKILL.md +312 -0
  290. package/framework/make_your_own/.continue/skills/acfm-spec-workflow/SKILL.md +269 -0
  291. package/framework/make_your_own/.continue/skills/brainstorming/SKILL.md +282 -0
  292. package/framework/make_your_own/.continue/skills/changelog-generator/SKILL.md +104 -0
  293. package/framework/make_your_own/.continue/skills/ci-deploy/SKILL.md +501 -0
  294. package/framework/make_your_own/.continue/skills/code-maintainability/SKILL.md +1108 -0
  295. package/framework/make_your_own/.continue/skills/code-review/SKILL.md +250 -0
  296. package/framework/make_your_own/.continue/skills/context-synthesizer/SKILL.md +322 -0
  297. package/framework/make_your_own/.continue/skills/documentation/SKILL.md +441 -0
  298. package/framework/make_your_own/.continue/skills/error-handling-patterns/SKILL.md +641 -0
  299. package/framework/make_your_own/.continue/skills/find-skills/SKILL.md +130 -0
  300. package/framework/make_your_own/.continue/skills/microtask-decomposition/SKILL.md +368 -0
  301. package/framework/make_your_own/.continue/skills/openspec-apply-change/SKILL.md +172 -0
  302. package/framework/make_your_own/.continue/skills/openspec-archive-change/SKILL.md +130 -0
  303. package/framework/make_your_own/.continue/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  304. package/framework/make_your_own/.continue/skills/openspec-continue-change/SKILL.md +134 -0
  305. package/framework/make_your_own/.continue/skills/openspec-explore/SKILL.md +306 -0
  306. package/framework/make_your_own/.continue/skills/openspec-ff-change/SKILL.md +117 -0
  307. package/framework/make_your_own/.continue/skills/openspec-new-change/SKILL.md +90 -0
  308. package/framework/make_your_own/.continue/skills/openspec-onboard/SKILL.md +529 -0
  309. package/framework/make_your_own/.continue/skills/openspec-sync-specs/SKILL.md +154 -0
  310. package/framework/make_your_own/.continue/skills/openspec-verify-change/SKILL.md +184 -0
  311. package/framework/make_your_own/.continue/skills/performance-optimizer/SKILL.md +43 -0
  312. package/framework/make_your_own/.continue/skills/project-constitution/SKILL.md +66 -0
  313. package/framework/make_your_own/.continue/skills/project-index/SKILL.md +234 -0
  314. package/framework/make_your_own/.continue/skills/project-index/scripts/scan_codebase.py +47 -0
  315. package/framework/make_your_own/.continue/skills/project-index/templates/agent-template.md +18 -0
  316. package/framework/make_your_own/.continue/skills/project-index/templates/skill-template.md +20 -0
  317. package/framework/make_your_own/.continue/skills/requirement-checklist/SKILL.md +90 -0
  318. package/framework/make_your_own/.continue/skills/research-retrieval/SKILL.md +357 -0
  319. package/framework/make_your_own/.continue/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  320. package/framework/make_your_own/.continue/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  321. package/framework/make_your_own/.continue/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  322. package/framework/make_your_own/.continue/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  323. package/framework/make_your_own/.continue/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  324. package/framework/make_your_own/.continue/skills/skill-writer/SKILL.md +385 -0
  325. package/framework/make_your_own/.continue/skills/spec-analysis/SKILL.md +65 -0
  326. package/framework/make_your_own/.continue/skills/spec-clarification/SKILL.md +73 -0
  327. package/framework/make_your_own/.continue/skills/sync-index/SKILL.md +35 -0
  328. package/framework/make_your_own/.continue/skills/systematic-debugging/SKILL.md +296 -0
  329. package/framework/make_your_own/.continue/skills/test-generator/SKILL.md +41 -0
  330. package/framework/make_your_own/.continue/skills/testing-qa/SKILL.md +249 -0
  331. package/framework/make_your_own/.continue/skills/vibe-security/SKILL.md +122 -0
  332. package/framework/make_your_own/.continue/skills/vibe-security/agents/openai.yaml +8 -0
  333. package/framework/make_your_own/.continue/skills/vibe-security/references/ai-integration.md +61 -0
  334. package/framework/make_your_own/.continue/skills/vibe-security/references/authentication.md +90 -0
  335. package/framework/make_your_own/.continue/skills/vibe-security/references/data-access.md +79 -0
  336. package/framework/make_your_own/.continue/skills/vibe-security/references/database-security.md +151 -0
  337. package/framework/make_your_own/.continue/skills/vibe-security/references/deployment.md +49 -0
  338. package/framework/make_your_own/.continue/skills/vibe-security/references/mobile.md +55 -0
  339. package/framework/make_your_own/.continue/skills/vibe-security/references/payments.md +63 -0
  340. package/framework/make_your_own/.continue/skills/vibe-security/references/rate-limiting.md +55 -0
  341. package/framework/make_your_own/.continue/skills/vibe-security/references/secrets-and-env.md +47 -0
  342. package/framework/make_your_own/.cospec/openspec/commands/ac-lite.md +42 -0
  343. package/framework/make_your_own/.cospec/openspec/commands/ac.md +95 -0
  344. package/framework/make_your_own/.cospec/openspec/commands/opsx-apply.md +150 -0
  345. package/framework/make_your_own/.cospec/openspec/commands/opsx-archive.md +155 -0
  346. package/framework/make_your_own/.cospec/openspec/commands/opsx-bulk-archive.md +240 -0
  347. package/framework/make_your_own/.cospec/openspec/commands/opsx-continue.md +112 -0
  348. package/framework/make_your_own/.cospec/openspec/commands/opsx-explore.md +172 -0
  349. package/framework/make_your_own/.cospec/openspec/commands/opsx-ff.md +92 -0
  350. package/framework/make_your_own/.cospec/openspec/commands/opsx-new.md +67 -0
  351. package/framework/make_your_own/.cospec/openspec/commands/opsx-onboard.md +523 -0
  352. package/framework/make_your_own/.cospec/openspec/commands/opsx-sync.md +132 -0
  353. package/framework/make_your_own/.cospec/openspec/commands/opsx-verify.md +162 -0
  354. package/framework/make_your_own/.cospec/skills/acfm-memory/SKILL.md +312 -0
  355. package/framework/make_your_own/.cospec/skills/acfm-spec-workflow/SKILL.md +269 -0
  356. package/framework/make_your_own/.cospec/skills/brainstorming/SKILL.md +282 -0
  357. package/framework/make_your_own/.cospec/skills/changelog-generator/SKILL.md +104 -0
  358. package/framework/make_your_own/.cospec/skills/ci-deploy/SKILL.md +501 -0
  359. package/framework/make_your_own/.cospec/skills/code-maintainability/SKILL.md +1108 -0
  360. package/framework/make_your_own/.cospec/skills/code-review/SKILL.md +250 -0
  361. package/framework/make_your_own/.cospec/skills/context-synthesizer/SKILL.md +322 -0
  362. package/framework/make_your_own/.cospec/skills/documentation/SKILL.md +441 -0
  363. package/framework/make_your_own/.cospec/skills/error-handling-patterns/SKILL.md +641 -0
  364. package/framework/make_your_own/.cospec/skills/find-skills/SKILL.md +130 -0
  365. package/framework/make_your_own/.cospec/skills/microtask-decomposition/SKILL.md +368 -0
  366. package/framework/make_your_own/.cospec/skills/openspec-apply-change/SKILL.md +172 -0
  367. package/framework/make_your_own/.cospec/skills/openspec-archive-change/SKILL.md +130 -0
  368. package/framework/make_your_own/.cospec/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  369. package/framework/make_your_own/.cospec/skills/openspec-continue-change/SKILL.md +134 -0
  370. package/framework/make_your_own/.cospec/skills/openspec-explore/SKILL.md +306 -0
  371. package/framework/make_your_own/.cospec/skills/openspec-ff-change/SKILL.md +117 -0
  372. package/framework/make_your_own/.cospec/skills/openspec-new-change/SKILL.md +90 -0
  373. package/framework/make_your_own/.cospec/skills/openspec-onboard/SKILL.md +529 -0
  374. package/framework/make_your_own/.cospec/skills/openspec-sync-specs/SKILL.md +154 -0
  375. package/framework/make_your_own/.cospec/skills/openspec-verify-change/SKILL.md +184 -0
  376. package/framework/make_your_own/.cospec/skills/performance-optimizer/SKILL.md +43 -0
  377. package/framework/make_your_own/.cospec/skills/project-constitution/SKILL.md +66 -0
  378. package/framework/make_your_own/.cospec/skills/project-index/SKILL.md +234 -0
  379. package/framework/make_your_own/.cospec/skills/project-index/scripts/scan_codebase.py +47 -0
  380. package/framework/make_your_own/.cospec/skills/project-index/templates/agent-template.md +18 -0
  381. package/framework/make_your_own/.cospec/skills/project-index/templates/skill-template.md +20 -0
  382. package/framework/make_your_own/.cospec/skills/requirement-checklist/SKILL.md +90 -0
  383. package/framework/make_your_own/.cospec/skills/research-retrieval/SKILL.md +357 -0
  384. package/framework/make_your_own/.cospec/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  385. package/framework/make_your_own/.cospec/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  386. package/framework/make_your_own/.cospec/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  387. package/framework/make_your_own/.cospec/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  388. package/framework/make_your_own/.cospec/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  389. package/framework/make_your_own/.cospec/skills/skill-writer/SKILL.md +385 -0
  390. package/framework/make_your_own/.cospec/skills/spec-analysis/SKILL.md +65 -0
  391. package/framework/make_your_own/.cospec/skills/spec-clarification/SKILL.md +73 -0
  392. package/framework/make_your_own/.cospec/skills/sync-index/SKILL.md +35 -0
  393. package/framework/make_your_own/.cospec/skills/systematic-debugging/SKILL.md +296 -0
  394. package/framework/make_your_own/.cospec/skills/test-generator/SKILL.md +41 -0
  395. package/framework/make_your_own/.cospec/skills/testing-qa/SKILL.md +249 -0
  396. package/framework/make_your_own/.cospec/skills/vibe-security/SKILL.md +122 -0
  397. package/framework/make_your_own/.cospec/skills/vibe-security/agents/openai.yaml +8 -0
  398. package/framework/make_your_own/.cospec/skills/vibe-security/references/ai-integration.md +61 -0
  399. package/framework/make_your_own/.cospec/skills/vibe-security/references/authentication.md +90 -0
  400. package/framework/make_your_own/.cospec/skills/vibe-security/references/data-access.md +79 -0
  401. package/framework/make_your_own/.cospec/skills/vibe-security/references/database-security.md +151 -0
  402. package/framework/make_your_own/.cospec/skills/vibe-security/references/deployment.md +49 -0
  403. package/framework/make_your_own/.cospec/skills/vibe-security/references/mobile.md +55 -0
  404. package/framework/make_your_own/.cospec/skills/vibe-security/references/payments.md +63 -0
  405. package/framework/make_your_own/.cospec/skills/vibe-security/references/rate-limiting.md +55 -0
  406. package/framework/make_your_own/.cospec/skills/vibe-security/references/secrets-and-env.md +47 -0
  407. package/framework/make_your_own/.crush/commands/opsx/ac-lite.md +42 -0
  408. package/framework/make_your_own/.crush/commands/opsx/ac.md +95 -0
  409. package/framework/make_your_own/.crush/commands/opsx/apply.md +152 -0
  410. package/framework/make_your_own/.crush/commands/opsx/archive.md +157 -0
  411. package/framework/make_your_own/.crush/commands/opsx/bulk-archive.md +242 -0
  412. package/framework/make_your_own/.crush/commands/opsx/continue.md +114 -0
  413. package/framework/make_your_own/.crush/commands/opsx/explore.md +174 -0
  414. package/framework/make_your_own/.crush/commands/opsx/ff.md +94 -0
  415. package/framework/make_your_own/.crush/commands/opsx/new.md +69 -0
  416. package/framework/make_your_own/.crush/commands/opsx/onboard.md +525 -0
  417. package/framework/make_your_own/.crush/commands/opsx/sync.md +134 -0
  418. package/framework/make_your_own/.crush/commands/opsx/verify.md +164 -0
  419. package/framework/make_your_own/.crush/skills/acfm-memory/SKILL.md +312 -0
  420. package/framework/make_your_own/.crush/skills/acfm-spec-workflow/SKILL.md +269 -0
  421. package/framework/make_your_own/.crush/skills/brainstorming/SKILL.md +282 -0
  422. package/framework/make_your_own/.crush/skills/changelog-generator/SKILL.md +104 -0
  423. package/framework/make_your_own/.crush/skills/ci-deploy/SKILL.md +501 -0
  424. package/framework/make_your_own/.crush/skills/code-maintainability/SKILL.md +1108 -0
  425. package/framework/make_your_own/.crush/skills/code-review/SKILL.md +250 -0
  426. package/framework/make_your_own/.crush/skills/context-synthesizer/SKILL.md +322 -0
  427. package/framework/make_your_own/.crush/skills/documentation/SKILL.md +441 -0
  428. package/framework/make_your_own/.crush/skills/error-handling-patterns/SKILL.md +641 -0
  429. package/framework/make_your_own/.crush/skills/find-skills/SKILL.md +130 -0
  430. package/framework/make_your_own/.crush/skills/microtask-decomposition/SKILL.md +368 -0
  431. package/framework/make_your_own/.crush/skills/openspec-apply-change/SKILL.md +172 -0
  432. package/framework/make_your_own/.crush/skills/openspec-archive-change/SKILL.md +130 -0
  433. package/framework/make_your_own/.crush/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  434. package/framework/make_your_own/.crush/skills/openspec-continue-change/SKILL.md +134 -0
  435. package/framework/make_your_own/.crush/skills/openspec-explore/SKILL.md +306 -0
  436. package/framework/make_your_own/.crush/skills/openspec-ff-change/SKILL.md +117 -0
  437. package/framework/make_your_own/.crush/skills/openspec-new-change/SKILL.md +90 -0
  438. package/framework/make_your_own/.crush/skills/openspec-onboard/SKILL.md +529 -0
  439. package/framework/make_your_own/.crush/skills/openspec-sync-specs/SKILL.md +154 -0
  440. package/framework/make_your_own/.crush/skills/openspec-verify-change/SKILL.md +184 -0
  441. package/framework/make_your_own/.crush/skills/performance-optimizer/SKILL.md +43 -0
  442. package/framework/make_your_own/.crush/skills/project-constitution/SKILL.md +66 -0
  443. package/framework/make_your_own/.crush/skills/project-index/SKILL.md +234 -0
  444. package/framework/make_your_own/.crush/skills/project-index/scripts/scan_codebase.py +47 -0
  445. package/framework/make_your_own/.crush/skills/project-index/templates/agent-template.md +18 -0
  446. package/framework/make_your_own/.crush/skills/project-index/templates/skill-template.md +20 -0
  447. package/framework/make_your_own/.crush/skills/requirement-checklist/SKILL.md +90 -0
  448. package/framework/make_your_own/.crush/skills/research-retrieval/SKILL.md +357 -0
  449. package/framework/make_your_own/.crush/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  450. package/framework/make_your_own/.crush/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  451. package/framework/make_your_own/.crush/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  452. package/framework/make_your_own/.crush/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  453. package/framework/make_your_own/.crush/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  454. package/framework/make_your_own/.crush/skills/skill-writer/SKILL.md +385 -0
  455. package/framework/make_your_own/.crush/skills/spec-analysis/SKILL.md +65 -0
  456. package/framework/make_your_own/.crush/skills/spec-clarification/SKILL.md +73 -0
  457. package/framework/make_your_own/.crush/skills/sync-index/SKILL.md +35 -0
  458. package/framework/make_your_own/.crush/skills/systematic-debugging/SKILL.md +296 -0
  459. package/framework/make_your_own/.crush/skills/test-generator/SKILL.md +41 -0
  460. package/framework/make_your_own/.crush/skills/testing-qa/SKILL.md +249 -0
  461. package/framework/make_your_own/.crush/skills/vibe-security/SKILL.md +122 -0
  462. package/framework/make_your_own/.crush/skills/vibe-security/agents/openai.yaml +8 -0
  463. package/framework/make_your_own/.crush/skills/vibe-security/references/ai-integration.md +61 -0
  464. package/framework/make_your_own/.crush/skills/vibe-security/references/authentication.md +90 -0
  465. package/framework/make_your_own/.crush/skills/vibe-security/references/data-access.md +79 -0
  466. package/framework/make_your_own/.crush/skills/vibe-security/references/database-security.md +151 -0
  467. package/framework/make_your_own/.crush/skills/vibe-security/references/deployment.md +49 -0
  468. package/framework/make_your_own/.crush/skills/vibe-security/references/mobile.md +55 -0
  469. package/framework/make_your_own/.crush/skills/vibe-security/references/payments.md +63 -0
  470. package/framework/make_your_own/.crush/skills/vibe-security/references/rate-limiting.md +55 -0
  471. package/framework/make_your_own/.crush/skills/vibe-security/references/secrets-and-env.md +47 -0
  472. package/framework/make_your_own/.cursor/commands/ac-lite.md +42 -0
  473. package/framework/make_your_own/.cursor/commands/ac.md +95 -0
  474. package/framework/make_your_own/.cursor/commands/opsx-apply.md +152 -0
  475. package/framework/make_your_own/.cursor/commands/opsx-archive.md +157 -0
  476. package/framework/make_your_own/.cursor/commands/opsx-bulk-archive.md +242 -0
  477. package/framework/make_your_own/.cursor/commands/opsx-continue.md +114 -0
  478. package/framework/make_your_own/.cursor/commands/opsx-explore.md +174 -0
  479. package/framework/make_your_own/.cursor/commands/opsx-ff.md +94 -0
  480. package/framework/make_your_own/.cursor/commands/opsx-new.md +69 -0
  481. package/framework/make_your_own/.cursor/commands/opsx-onboard.md +525 -0
  482. package/framework/make_your_own/.cursor/commands/opsx-sync.md +134 -0
  483. package/framework/make_your_own/.cursor/commands/opsx-verify.md +164 -0
  484. package/framework/make_your_own/.cursor/skills/acfm-memory/SKILL.md +312 -0
  485. package/framework/make_your_own/.cursor/skills/acfm-spec-workflow/SKILL.md +269 -0
  486. package/framework/make_your_own/.cursor/skills/brainstorming/SKILL.md +282 -0
  487. package/framework/make_your_own/.cursor/skills/changelog-generator/SKILL.md +104 -0
  488. package/framework/make_your_own/.cursor/skills/ci-deploy/SKILL.md +501 -0
  489. package/framework/make_your_own/.cursor/skills/code-maintainability/SKILL.md +1108 -0
  490. package/framework/make_your_own/.cursor/skills/code-review/SKILL.md +250 -0
  491. package/framework/make_your_own/.cursor/skills/context-synthesizer/SKILL.md +322 -0
  492. package/framework/make_your_own/.cursor/skills/documentation/SKILL.md +441 -0
  493. package/framework/make_your_own/.cursor/skills/error-handling-patterns/SKILL.md +641 -0
  494. package/framework/make_your_own/.cursor/skills/find-skills/SKILL.md +130 -0
  495. package/framework/make_your_own/.cursor/skills/microtask-decomposition/SKILL.md +368 -0
  496. package/framework/make_your_own/.cursor/skills/openspec-apply-change/SKILL.md +172 -0
  497. package/framework/make_your_own/.cursor/skills/openspec-archive-change/SKILL.md +130 -0
  498. package/framework/make_your_own/.cursor/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  499. package/framework/make_your_own/.cursor/skills/openspec-continue-change/SKILL.md +134 -0
  500. package/framework/make_your_own/.cursor/skills/openspec-explore/SKILL.md +306 -0
  501. package/framework/make_your_own/.cursor/skills/openspec-ff-change/SKILL.md +117 -0
  502. package/framework/make_your_own/.cursor/skills/openspec-new-change/SKILL.md +90 -0
  503. package/framework/make_your_own/.cursor/skills/openspec-onboard/SKILL.md +529 -0
  504. package/framework/make_your_own/.cursor/skills/openspec-sync-specs/SKILL.md +154 -0
  505. package/framework/make_your_own/.cursor/skills/openspec-verify-change/SKILL.md +184 -0
  506. package/framework/make_your_own/.cursor/skills/performance-optimizer/SKILL.md +43 -0
  507. package/framework/make_your_own/.cursor/skills/project-constitution/SKILL.md +66 -0
  508. package/framework/make_your_own/.cursor/skills/project-index/SKILL.md +234 -0
  509. package/framework/make_your_own/.cursor/skills/project-index/scripts/scan_codebase.py +47 -0
  510. package/framework/make_your_own/.cursor/skills/project-index/templates/agent-template.md +18 -0
  511. package/framework/make_your_own/.cursor/skills/project-index/templates/skill-template.md +20 -0
  512. package/framework/make_your_own/.cursor/skills/requirement-checklist/SKILL.md +90 -0
  513. package/framework/make_your_own/.cursor/skills/research-retrieval/SKILL.md +357 -0
  514. package/framework/make_your_own/.cursor/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  515. package/framework/make_your_own/.cursor/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  516. package/framework/make_your_own/.cursor/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  517. package/framework/make_your_own/.cursor/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  518. package/framework/make_your_own/.cursor/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  519. package/framework/make_your_own/.cursor/skills/skill-writer/SKILL.md +385 -0
  520. package/framework/make_your_own/.cursor/skills/spec-analysis/SKILL.md +65 -0
  521. package/framework/make_your_own/.cursor/skills/spec-clarification/SKILL.md +73 -0
  522. package/framework/make_your_own/.cursor/skills/sync-index/SKILL.md +35 -0
  523. package/framework/make_your_own/.cursor/skills/systematic-debugging/SKILL.md +296 -0
  524. package/framework/make_your_own/.cursor/skills/test-generator/SKILL.md +41 -0
  525. package/framework/make_your_own/.cursor/skills/testing-qa/SKILL.md +249 -0
  526. package/framework/make_your_own/.cursor/skills/vibe-security/SKILL.md +122 -0
  527. package/framework/make_your_own/.cursor/skills/vibe-security/agents/openai.yaml +8 -0
  528. package/framework/make_your_own/.cursor/skills/vibe-security/references/ai-integration.md +61 -0
  529. package/framework/make_your_own/.cursor/skills/vibe-security/references/authentication.md +90 -0
  530. package/framework/make_your_own/.cursor/skills/vibe-security/references/data-access.md +79 -0
  531. package/framework/make_your_own/.cursor/skills/vibe-security/references/database-security.md +151 -0
  532. package/framework/make_your_own/.cursor/skills/vibe-security/references/deployment.md +49 -0
  533. package/framework/make_your_own/.cursor/skills/vibe-security/references/mobile.md +55 -0
  534. package/framework/make_your_own/.cursor/skills/vibe-security/references/payments.md +63 -0
  535. package/framework/make_your_own/.cursor/skills/vibe-security/references/rate-limiting.md +55 -0
  536. package/framework/make_your_own/.cursor/skills/vibe-security/references/secrets-and-env.md +47 -0
  537. package/framework/make_your_own/.factory/commands/ac-lite.md +42 -0
  538. package/framework/make_your_own/.factory/commands/ac.md +95 -0
  539. package/framework/make_your_own/.factory/commands/opsx-apply.md +150 -0
  540. package/framework/make_your_own/.factory/commands/opsx-archive.md +155 -0
  541. package/framework/make_your_own/.factory/commands/opsx-bulk-archive.md +240 -0
  542. package/framework/make_your_own/.factory/commands/opsx-continue.md +112 -0
  543. package/framework/make_your_own/.factory/commands/opsx-explore.md +172 -0
  544. package/framework/make_your_own/.factory/commands/opsx-ff.md +92 -0
  545. package/framework/make_your_own/.factory/commands/opsx-new.md +67 -0
  546. package/framework/make_your_own/.factory/commands/opsx-onboard.md +523 -0
  547. package/framework/make_your_own/.factory/commands/opsx-sync.md +132 -0
  548. package/framework/make_your_own/.factory/commands/opsx-verify.md +162 -0
  549. package/framework/make_your_own/.factory/skills/acfm-memory/SKILL.md +312 -0
  550. package/framework/make_your_own/.factory/skills/acfm-spec-workflow/SKILL.md +269 -0
  551. package/framework/make_your_own/.factory/skills/brainstorming/SKILL.md +282 -0
  552. package/framework/make_your_own/.factory/skills/changelog-generator/SKILL.md +104 -0
  553. package/framework/make_your_own/.factory/skills/ci-deploy/SKILL.md +501 -0
  554. package/framework/make_your_own/.factory/skills/code-maintainability/SKILL.md +1108 -0
  555. package/framework/make_your_own/.factory/skills/code-review/SKILL.md +250 -0
  556. package/framework/make_your_own/.factory/skills/context-synthesizer/SKILL.md +322 -0
  557. package/framework/make_your_own/.factory/skills/documentation/SKILL.md +441 -0
  558. package/framework/make_your_own/.factory/skills/error-handling-patterns/SKILL.md +641 -0
  559. package/framework/make_your_own/.factory/skills/find-skills/SKILL.md +130 -0
  560. package/framework/make_your_own/.factory/skills/microtask-decomposition/SKILL.md +368 -0
  561. package/framework/make_your_own/.factory/skills/openspec-apply-change/SKILL.md +172 -0
  562. package/framework/make_your_own/.factory/skills/openspec-archive-change/SKILL.md +130 -0
  563. package/framework/make_your_own/.factory/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  564. package/framework/make_your_own/.factory/skills/openspec-continue-change/SKILL.md +134 -0
  565. package/framework/make_your_own/.factory/skills/openspec-explore/SKILL.md +306 -0
  566. package/framework/make_your_own/.factory/skills/openspec-ff-change/SKILL.md +117 -0
  567. package/framework/make_your_own/.factory/skills/openspec-new-change/SKILL.md +90 -0
  568. package/framework/make_your_own/.factory/skills/openspec-onboard/SKILL.md +529 -0
  569. package/framework/make_your_own/.factory/skills/openspec-sync-specs/SKILL.md +154 -0
  570. package/framework/make_your_own/.factory/skills/openspec-verify-change/SKILL.md +184 -0
  571. package/framework/make_your_own/.factory/skills/performance-optimizer/SKILL.md +43 -0
  572. package/framework/make_your_own/.factory/skills/project-constitution/SKILL.md +66 -0
  573. package/framework/make_your_own/.factory/skills/project-index/SKILL.md +234 -0
  574. package/framework/make_your_own/.factory/skills/project-index/scripts/scan_codebase.py +47 -0
  575. package/framework/make_your_own/.factory/skills/project-index/templates/agent-template.md +18 -0
  576. package/framework/make_your_own/.factory/skills/project-index/templates/skill-template.md +20 -0
  577. package/framework/make_your_own/.factory/skills/requirement-checklist/SKILL.md +90 -0
  578. package/framework/make_your_own/.factory/skills/research-retrieval/SKILL.md +357 -0
  579. package/framework/make_your_own/.factory/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  580. package/framework/make_your_own/.factory/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  581. package/framework/make_your_own/.factory/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  582. package/framework/make_your_own/.factory/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  583. package/framework/make_your_own/.factory/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  584. package/framework/make_your_own/.factory/skills/skill-writer/SKILL.md +385 -0
  585. package/framework/make_your_own/.factory/skills/spec-analysis/SKILL.md +65 -0
  586. package/framework/make_your_own/.factory/skills/spec-clarification/SKILL.md +73 -0
  587. package/framework/make_your_own/.factory/skills/sync-index/SKILL.md +35 -0
  588. package/framework/make_your_own/.factory/skills/systematic-debugging/SKILL.md +296 -0
  589. package/framework/make_your_own/.factory/skills/test-generator/SKILL.md +41 -0
  590. package/framework/make_your_own/.factory/skills/testing-qa/SKILL.md +249 -0
  591. package/framework/make_your_own/.factory/skills/vibe-security/SKILL.md +122 -0
  592. package/framework/make_your_own/.factory/skills/vibe-security/agents/openai.yaml +8 -0
  593. package/framework/make_your_own/.factory/skills/vibe-security/references/ai-integration.md +61 -0
  594. package/framework/make_your_own/.factory/skills/vibe-security/references/authentication.md +90 -0
  595. package/framework/make_your_own/.factory/skills/vibe-security/references/data-access.md +79 -0
  596. package/framework/make_your_own/.factory/skills/vibe-security/references/database-security.md +151 -0
  597. package/framework/make_your_own/.factory/skills/vibe-security/references/deployment.md +49 -0
  598. package/framework/make_your_own/.factory/skills/vibe-security/references/mobile.md +55 -0
  599. package/framework/make_your_own/.factory/skills/vibe-security/references/payments.md +63 -0
  600. package/framework/make_your_own/.factory/skills/vibe-security/references/rate-limiting.md +55 -0
  601. package/framework/make_your_own/.factory/skills/vibe-security/references/secrets-and-env.md +47 -0
  602. package/framework/make_your_own/.gemini/commands/opsx/ac-lite.md +42 -0
  603. package/framework/make_your_own/.gemini/commands/opsx/ac.md +95 -0
  604. package/framework/make_your_own/.gemini/commands/opsx/ac.toml +95 -0
  605. package/framework/make_your_own/.gemini/commands/opsx/apply.toml +149 -0
  606. package/framework/make_your_own/.gemini/commands/opsx/archive.toml +154 -0
  607. package/framework/make_your_own/.gemini/commands/opsx/bulk-archive.toml +239 -0
  608. package/framework/make_your_own/.gemini/commands/opsx/continue.toml +111 -0
  609. package/framework/make_your_own/.gemini/commands/opsx/explore.toml +171 -0
  610. package/framework/make_your_own/.gemini/commands/opsx/ff.toml +91 -0
  611. package/framework/make_your_own/.gemini/commands/opsx/new.toml +66 -0
  612. package/framework/make_your_own/.gemini/commands/opsx/onboard.toml +522 -0
  613. package/framework/make_your_own/.gemini/commands/opsx/sync.toml +131 -0
  614. package/framework/make_your_own/.gemini/commands/opsx/verify.toml +161 -0
  615. package/framework/make_your_own/.gemini/skills/acfm-memory/SKILL.md +312 -0
  616. package/framework/make_your_own/.gemini/skills/acfm-spec-workflow/SKILL.md +269 -0
  617. package/framework/make_your_own/.gemini/skills/brainstorming/SKILL.md +282 -0
  618. package/framework/make_your_own/.gemini/skills/changelog-generator/SKILL.md +104 -0
  619. package/framework/make_your_own/.gemini/skills/ci-deploy/SKILL.md +501 -0
  620. package/framework/make_your_own/.gemini/skills/code-maintainability/SKILL.md +1108 -0
  621. package/framework/make_your_own/.gemini/skills/code-review/SKILL.md +250 -0
  622. package/framework/make_your_own/.gemini/skills/context-synthesizer/SKILL.md +322 -0
  623. package/framework/make_your_own/.gemini/skills/documentation/SKILL.md +441 -0
  624. package/framework/make_your_own/.gemini/skills/error-handling-patterns/SKILL.md +641 -0
  625. package/framework/make_your_own/.gemini/skills/find-skills/SKILL.md +130 -0
  626. package/framework/make_your_own/.gemini/skills/microtask-decomposition/SKILL.md +368 -0
  627. package/framework/make_your_own/.gemini/skills/openspec-apply-change/SKILL.md +172 -0
  628. package/framework/make_your_own/.gemini/skills/openspec-archive-change/SKILL.md +130 -0
  629. package/framework/make_your_own/.gemini/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  630. package/framework/make_your_own/.gemini/skills/openspec-continue-change/SKILL.md +134 -0
  631. package/framework/make_your_own/.gemini/skills/openspec-explore/SKILL.md +306 -0
  632. package/framework/make_your_own/.gemini/skills/openspec-ff-change/SKILL.md +117 -0
  633. package/framework/make_your_own/.gemini/skills/openspec-new-change/SKILL.md +90 -0
  634. package/framework/make_your_own/.gemini/skills/openspec-onboard/SKILL.md +529 -0
  635. package/framework/make_your_own/.gemini/skills/openspec-sync-specs/SKILL.md +154 -0
  636. package/framework/make_your_own/.gemini/skills/openspec-verify-change/SKILL.md +184 -0
  637. package/framework/make_your_own/.gemini/skills/performance-optimizer/SKILL.md +43 -0
  638. package/framework/make_your_own/.gemini/skills/project-constitution/SKILL.md +66 -0
  639. package/framework/make_your_own/.gemini/skills/project-index/SKILL.md +234 -0
  640. package/framework/make_your_own/.gemini/skills/project-index/scripts/scan_codebase.py +47 -0
  641. package/framework/make_your_own/.gemini/skills/project-index/templates/agent-template.md +18 -0
  642. package/framework/make_your_own/.gemini/skills/project-index/templates/skill-template.md +20 -0
  643. package/framework/make_your_own/.gemini/skills/requirement-checklist/SKILL.md +90 -0
  644. package/framework/make_your_own/.gemini/skills/research-retrieval/SKILL.md +357 -0
  645. package/framework/make_your_own/.gemini/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  646. package/framework/make_your_own/.gemini/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  647. package/framework/make_your_own/.gemini/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  648. package/framework/make_your_own/.gemini/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  649. package/framework/make_your_own/.gemini/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  650. package/framework/make_your_own/.gemini/skills/skill-writer/SKILL.md +385 -0
  651. package/framework/make_your_own/.gemini/skills/spec-analysis/SKILL.md +65 -0
  652. package/framework/make_your_own/.gemini/skills/spec-clarification/SKILL.md +73 -0
  653. package/framework/make_your_own/.gemini/skills/sync-index/SKILL.md +35 -0
  654. package/framework/make_your_own/.gemini/skills/systematic-debugging/SKILL.md +296 -0
  655. package/framework/make_your_own/.gemini/skills/test-generator/SKILL.md +41 -0
  656. package/framework/make_your_own/.gemini/skills/testing-qa/SKILL.md +249 -0
  657. package/framework/make_your_own/.gemini/skills/vibe-security/SKILL.md +122 -0
  658. package/framework/make_your_own/.gemini/skills/vibe-security/agents/openai.yaml +8 -0
  659. package/framework/make_your_own/.gemini/skills/vibe-security/references/ai-integration.md +61 -0
  660. package/framework/make_your_own/.gemini/skills/vibe-security/references/authentication.md +90 -0
  661. package/framework/make_your_own/.gemini/skills/vibe-security/references/data-access.md +79 -0
  662. package/framework/make_your_own/.gemini/skills/vibe-security/references/database-security.md +151 -0
  663. package/framework/make_your_own/.gemini/skills/vibe-security/references/deployment.md +49 -0
  664. package/framework/make_your_own/.gemini/skills/vibe-security/references/mobile.md +55 -0
  665. package/framework/make_your_own/.gemini/skills/vibe-security/references/payments.md +63 -0
  666. package/framework/make_your_own/.gemini/skills/vibe-security/references/rate-limiting.md +55 -0
  667. package/framework/make_your_own/.gemini/skills/vibe-security/references/secrets-and-env.md +47 -0
  668. package/framework/make_your_own/.github/prompts/ac-lite.md +42 -0
  669. package/framework/make_your_own/.github/prompts/ac.md +95 -0
  670. package/framework/make_your_own/.github/prompts/ac.prompt.md +95 -0
  671. package/framework/make_your_own/.github/skills/acfm-memory/SKILL.md +312 -0
  672. package/framework/make_your_own/.github/skills/acfm-spec-workflow/SKILL.md +269 -0
  673. package/framework/make_your_own/.github/skills/brainstorming/SKILL.md +282 -0
  674. package/framework/make_your_own/.github/skills/changelog-generator/SKILL.md +104 -0
  675. package/framework/make_your_own/.github/skills/ci-deploy/SKILL.md +501 -0
  676. package/framework/make_your_own/.github/skills/code-maintainability/SKILL.md +1108 -0
  677. package/framework/make_your_own/.github/skills/code-review/SKILL.md +250 -0
  678. package/framework/make_your_own/.github/skills/context-synthesizer/SKILL.md +322 -0
  679. package/framework/make_your_own/.github/skills/documentation/SKILL.md +441 -0
  680. package/framework/make_your_own/.github/skills/error-handling-patterns/SKILL.md +641 -0
  681. package/framework/make_your_own/.github/skills/find-skills/SKILL.md +130 -0
  682. package/framework/make_your_own/.github/skills/microtask-decomposition/SKILL.md +368 -0
  683. package/framework/make_your_own/.github/skills/openspec-apply-change/SKILL.md +172 -0
  684. package/framework/make_your_own/.github/skills/openspec-archive-change/SKILL.md +130 -0
  685. package/framework/make_your_own/.github/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  686. package/framework/make_your_own/.github/skills/openspec-continue-change/SKILL.md +134 -0
  687. package/framework/make_your_own/.github/skills/openspec-explore/SKILL.md +306 -0
  688. package/framework/make_your_own/.github/skills/openspec-ff-change/SKILL.md +117 -0
  689. package/framework/make_your_own/.github/skills/openspec-new-change/SKILL.md +90 -0
  690. package/framework/make_your_own/.github/skills/openspec-onboard/SKILL.md +529 -0
  691. package/framework/make_your_own/.github/skills/openspec-sync-specs/SKILL.md +154 -0
  692. package/framework/make_your_own/.github/skills/openspec-verify-change/SKILL.md +184 -0
  693. package/framework/make_your_own/.github/skills/performance-optimizer/SKILL.md +43 -0
  694. package/framework/make_your_own/.github/skills/project-constitution/SKILL.md +66 -0
  695. package/framework/make_your_own/.github/skills/project-index/SKILL.md +234 -0
  696. package/framework/make_your_own/.github/skills/project-index/scripts/scan_codebase.py +47 -0
  697. package/framework/make_your_own/.github/skills/project-index/templates/agent-template.md +18 -0
  698. package/framework/make_your_own/.github/skills/project-index/templates/skill-template.md +20 -0
  699. package/framework/make_your_own/.github/skills/requirement-checklist/SKILL.md +90 -0
  700. package/framework/make_your_own/.github/skills/research-retrieval/SKILL.md +357 -0
  701. package/framework/make_your_own/.github/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  702. package/framework/make_your_own/.github/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  703. package/framework/make_your_own/.github/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  704. package/framework/make_your_own/.github/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  705. package/framework/make_your_own/.github/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  706. package/framework/make_your_own/.github/skills/skill-writer/SKILL.md +385 -0
  707. package/framework/make_your_own/.github/skills/spec-analysis/SKILL.md +65 -0
  708. package/framework/make_your_own/.github/skills/spec-clarification/SKILL.md +73 -0
  709. package/framework/make_your_own/.github/skills/sync-index/SKILL.md +35 -0
  710. package/framework/make_your_own/.github/skills/systematic-debugging/SKILL.md +296 -0
  711. package/framework/make_your_own/.github/skills/test-generator/SKILL.md +41 -0
  712. package/framework/make_your_own/.github/skills/testing-qa/SKILL.md +249 -0
  713. package/framework/make_your_own/.github/skills/vibe-security/SKILL.md +122 -0
  714. package/framework/make_your_own/.github/skills/vibe-security/agents/openai.yaml +8 -0
  715. package/framework/make_your_own/.github/skills/vibe-security/references/ai-integration.md +61 -0
  716. package/framework/make_your_own/.github/skills/vibe-security/references/authentication.md +90 -0
  717. package/framework/make_your_own/.github/skills/vibe-security/references/data-access.md +79 -0
  718. package/framework/make_your_own/.github/skills/vibe-security/references/database-security.md +151 -0
  719. package/framework/make_your_own/.github/skills/vibe-security/references/deployment.md +49 -0
  720. package/framework/make_your_own/.github/skills/vibe-security/references/mobile.md +55 -0
  721. package/framework/make_your_own/.github/skills/vibe-security/references/payments.md +63 -0
  722. package/framework/make_your_own/.github/skills/vibe-security/references/rate-limiting.md +55 -0
  723. package/framework/make_your_own/.github/skills/vibe-security/references/secrets-and-env.md +47 -0
  724. package/framework/make_your_own/.iflow/commands/ac-lite.md +42 -0
  725. package/framework/make_your_own/.iflow/commands/ac.md +95 -0
  726. package/framework/make_your_own/.iflow/commands/opsx-apply.md +152 -0
  727. package/framework/make_your_own/.iflow/commands/opsx-archive.md +157 -0
  728. package/framework/make_your_own/.iflow/commands/opsx-bulk-archive.md +242 -0
  729. package/framework/make_your_own/.iflow/commands/opsx-continue.md +114 -0
  730. package/framework/make_your_own/.iflow/commands/opsx-explore.md +174 -0
  731. package/framework/make_your_own/.iflow/commands/opsx-ff.md +94 -0
  732. package/framework/make_your_own/.iflow/commands/opsx-new.md +69 -0
  733. package/framework/make_your_own/.iflow/commands/opsx-onboard.md +525 -0
  734. package/framework/make_your_own/.iflow/commands/opsx-sync.md +134 -0
  735. package/framework/make_your_own/.iflow/commands/opsx-verify.md +164 -0
  736. package/framework/make_your_own/.iflow/skills/acfm-memory/SKILL.md +312 -0
  737. package/framework/make_your_own/.iflow/skills/acfm-spec-workflow/SKILL.md +269 -0
  738. package/framework/make_your_own/.iflow/skills/brainstorming/SKILL.md +282 -0
  739. package/framework/make_your_own/.iflow/skills/changelog-generator/SKILL.md +104 -0
  740. package/framework/make_your_own/.iflow/skills/ci-deploy/SKILL.md +501 -0
  741. package/framework/make_your_own/.iflow/skills/code-maintainability/SKILL.md +1108 -0
  742. package/framework/make_your_own/.iflow/skills/code-review/SKILL.md +250 -0
  743. package/framework/make_your_own/.iflow/skills/context-synthesizer/SKILL.md +322 -0
  744. package/framework/make_your_own/.iflow/skills/documentation/SKILL.md +441 -0
  745. package/framework/make_your_own/.iflow/skills/error-handling-patterns/SKILL.md +641 -0
  746. package/framework/make_your_own/.iflow/skills/find-skills/SKILL.md +130 -0
  747. package/framework/make_your_own/.iflow/skills/microtask-decomposition/SKILL.md +368 -0
  748. package/framework/make_your_own/.iflow/skills/openspec-apply-change/SKILL.md +172 -0
  749. package/framework/make_your_own/.iflow/skills/openspec-archive-change/SKILL.md +130 -0
  750. package/framework/make_your_own/.iflow/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  751. package/framework/make_your_own/.iflow/skills/openspec-continue-change/SKILL.md +134 -0
  752. package/framework/make_your_own/.iflow/skills/openspec-explore/SKILL.md +306 -0
  753. package/framework/make_your_own/.iflow/skills/openspec-ff-change/SKILL.md +117 -0
  754. package/framework/make_your_own/.iflow/skills/openspec-new-change/SKILL.md +90 -0
  755. package/framework/make_your_own/.iflow/skills/openspec-onboard/SKILL.md +529 -0
  756. package/framework/make_your_own/.iflow/skills/openspec-sync-specs/SKILL.md +154 -0
  757. package/framework/make_your_own/.iflow/skills/openspec-verify-change/SKILL.md +184 -0
  758. package/framework/make_your_own/.iflow/skills/performance-optimizer/SKILL.md +43 -0
  759. package/framework/make_your_own/.iflow/skills/project-constitution/SKILL.md +66 -0
  760. package/framework/make_your_own/.iflow/skills/project-index/SKILL.md +234 -0
  761. package/framework/make_your_own/.iflow/skills/project-index/scripts/scan_codebase.py +47 -0
  762. package/framework/make_your_own/.iflow/skills/project-index/templates/agent-template.md +18 -0
  763. package/framework/make_your_own/.iflow/skills/project-index/templates/skill-template.md +20 -0
  764. package/framework/make_your_own/.iflow/skills/requirement-checklist/SKILL.md +90 -0
  765. package/framework/make_your_own/.iflow/skills/research-retrieval/SKILL.md +357 -0
  766. package/framework/make_your_own/.iflow/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  767. package/framework/make_your_own/.iflow/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  768. package/framework/make_your_own/.iflow/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  769. package/framework/make_your_own/.iflow/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  770. package/framework/make_your_own/.iflow/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  771. package/framework/make_your_own/.iflow/skills/skill-writer/SKILL.md +385 -0
  772. package/framework/make_your_own/.iflow/skills/spec-analysis/SKILL.md +65 -0
  773. package/framework/make_your_own/.iflow/skills/spec-clarification/SKILL.md +73 -0
  774. package/framework/make_your_own/.iflow/skills/sync-index/SKILL.md +35 -0
  775. package/framework/make_your_own/.iflow/skills/systematic-debugging/SKILL.md +296 -0
  776. package/framework/make_your_own/.iflow/skills/test-generator/SKILL.md +41 -0
  777. package/framework/make_your_own/.iflow/skills/testing-qa/SKILL.md +249 -0
  778. package/framework/make_your_own/.iflow/skills/vibe-security/SKILL.md +122 -0
  779. package/framework/make_your_own/.iflow/skills/vibe-security/agents/openai.yaml +8 -0
  780. package/framework/make_your_own/.iflow/skills/vibe-security/references/ai-integration.md +61 -0
  781. package/framework/make_your_own/.iflow/skills/vibe-security/references/authentication.md +90 -0
  782. package/framework/make_your_own/.iflow/skills/vibe-security/references/data-access.md +79 -0
  783. package/framework/make_your_own/.iflow/skills/vibe-security/references/database-security.md +151 -0
  784. package/framework/make_your_own/.iflow/skills/vibe-security/references/deployment.md +49 -0
  785. package/framework/make_your_own/.iflow/skills/vibe-security/references/mobile.md +55 -0
  786. package/framework/make_your_own/.iflow/skills/vibe-security/references/payments.md +63 -0
  787. package/framework/make_your_own/.iflow/skills/vibe-security/references/rate-limiting.md +55 -0
  788. package/framework/make_your_own/.iflow/skills/vibe-security/references/secrets-and-env.md +47 -0
  789. package/framework/make_your_own/.kilocode/skills/acfm-memory/SKILL.md +312 -0
  790. package/framework/make_your_own/.kilocode/skills/acfm-spec-workflow/SKILL.md +269 -0
  791. package/framework/make_your_own/.kilocode/skills/brainstorming/SKILL.md +282 -0
  792. package/framework/make_your_own/.kilocode/skills/changelog-generator/SKILL.md +104 -0
  793. package/framework/make_your_own/.kilocode/skills/ci-deploy/SKILL.md +501 -0
  794. package/framework/make_your_own/.kilocode/skills/code-maintainability/SKILL.md +1108 -0
  795. package/framework/make_your_own/.kilocode/skills/code-review/SKILL.md +250 -0
  796. package/framework/make_your_own/.kilocode/skills/context-synthesizer/SKILL.md +322 -0
  797. package/framework/make_your_own/.kilocode/skills/documentation/SKILL.md +441 -0
  798. package/framework/make_your_own/.kilocode/skills/error-handling-patterns/SKILL.md +641 -0
  799. package/framework/make_your_own/.kilocode/skills/find-skills/SKILL.md +130 -0
  800. package/framework/make_your_own/.kilocode/skills/microtask-decomposition/SKILL.md +368 -0
  801. package/framework/make_your_own/.kilocode/skills/openspec-apply-change/SKILL.md +172 -0
  802. package/framework/make_your_own/.kilocode/skills/openspec-archive-change/SKILL.md +130 -0
  803. package/framework/make_your_own/.kilocode/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  804. package/framework/make_your_own/.kilocode/skills/openspec-continue-change/SKILL.md +134 -0
  805. package/framework/make_your_own/.kilocode/skills/openspec-explore/SKILL.md +306 -0
  806. package/framework/make_your_own/.kilocode/skills/openspec-ff-change/SKILL.md +117 -0
  807. package/framework/make_your_own/.kilocode/skills/openspec-new-change/SKILL.md +90 -0
  808. package/framework/make_your_own/.kilocode/skills/openspec-onboard/SKILL.md +529 -0
  809. package/framework/make_your_own/.kilocode/skills/openspec-sync-specs/SKILL.md +154 -0
  810. package/framework/make_your_own/.kilocode/skills/openspec-verify-change/SKILL.md +184 -0
  811. package/framework/make_your_own/.kilocode/skills/performance-optimizer/SKILL.md +43 -0
  812. package/framework/make_your_own/.kilocode/skills/project-constitution/SKILL.md +66 -0
  813. package/framework/make_your_own/.kilocode/skills/project-index/SKILL.md +234 -0
  814. package/framework/make_your_own/.kilocode/skills/project-index/scripts/scan_codebase.py +47 -0
  815. package/framework/make_your_own/.kilocode/skills/project-index/templates/agent-template.md +18 -0
  816. package/framework/make_your_own/.kilocode/skills/project-index/templates/skill-template.md +20 -0
  817. package/framework/make_your_own/.kilocode/skills/requirement-checklist/SKILL.md +90 -0
  818. package/framework/make_your_own/.kilocode/skills/research-retrieval/SKILL.md +357 -0
  819. package/framework/make_your_own/.kilocode/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  820. package/framework/make_your_own/.kilocode/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  821. package/framework/make_your_own/.kilocode/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  822. package/framework/make_your_own/.kilocode/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  823. package/framework/make_your_own/.kilocode/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  824. package/framework/make_your_own/.kilocode/skills/skill-writer/SKILL.md +385 -0
  825. package/framework/make_your_own/.kilocode/skills/spec-analysis/SKILL.md +65 -0
  826. package/framework/make_your_own/.kilocode/skills/spec-clarification/SKILL.md +73 -0
  827. package/framework/make_your_own/.kilocode/skills/sync-index/SKILL.md +35 -0
  828. package/framework/make_your_own/.kilocode/skills/systematic-debugging/SKILL.md +296 -0
  829. package/framework/make_your_own/.kilocode/skills/test-generator/SKILL.md +41 -0
  830. package/framework/make_your_own/.kilocode/skills/testing-qa/SKILL.md +249 -0
  831. package/framework/make_your_own/.kilocode/skills/vibe-security/SKILL.md +122 -0
  832. package/framework/make_your_own/.kilocode/skills/vibe-security/agents/openai.yaml +8 -0
  833. package/framework/make_your_own/.kilocode/skills/vibe-security/references/ai-integration.md +61 -0
  834. package/framework/make_your_own/.kilocode/skills/vibe-security/references/authentication.md +90 -0
  835. package/framework/make_your_own/.kilocode/skills/vibe-security/references/data-access.md +79 -0
  836. package/framework/make_your_own/.kilocode/skills/vibe-security/references/database-security.md +151 -0
  837. package/framework/make_your_own/.kilocode/skills/vibe-security/references/deployment.md +49 -0
  838. package/framework/make_your_own/.kilocode/skills/vibe-security/references/mobile.md +55 -0
  839. package/framework/make_your_own/.kilocode/skills/vibe-security/references/payments.md +63 -0
  840. package/framework/make_your_own/.kilocode/skills/vibe-security/references/rate-limiting.md +55 -0
  841. package/framework/make_your_own/.kilocode/skills/vibe-security/references/secrets-and-env.md +47 -0
  842. package/framework/make_your_own/.kilocode/workflows/ac-lite.md +42 -0
  843. package/framework/make_your_own/.kilocode/workflows/ac.md +95 -0
  844. package/framework/make_your_own/.kilocode/workflows/opsx-apply.md +145 -0
  845. package/framework/make_your_own/.kilocode/workflows/opsx-archive.md +150 -0
  846. package/framework/make_your_own/.kilocode/workflows/opsx-bulk-archive.md +235 -0
  847. package/framework/make_your_own/.kilocode/workflows/opsx-continue.md +107 -0
  848. package/framework/make_your_own/.kilocode/workflows/opsx-explore.md +167 -0
  849. package/framework/make_your_own/.kilocode/workflows/opsx-ff.md +87 -0
  850. package/framework/make_your_own/.kilocode/workflows/opsx-new.md +62 -0
  851. package/framework/make_your_own/.kilocode/workflows/opsx-onboard.md +518 -0
  852. package/framework/make_your_own/.kilocode/workflows/opsx-sync.md +127 -0
  853. package/framework/make_your_own/.kilocode/workflows/opsx-verify.md +157 -0
  854. package/framework/make_your_own/.kimi/skills/acfm-memory/SKILL.md +312 -0
  855. package/framework/make_your_own/.kimi/skills/acfm-spec-workflow/SKILL.md +269 -0
  856. package/framework/make_your_own/.kimi/skills/brainstorming/SKILL.md +282 -0
  857. package/framework/make_your_own/.kimi/skills/changelog-generator/SKILL.md +104 -0
  858. package/framework/make_your_own/.kimi/skills/ci-deploy/SKILL.md +501 -0
  859. package/framework/make_your_own/.kimi/skills/code-maintainability/SKILL.md +1108 -0
  860. package/framework/make_your_own/.kimi/skills/code-review/SKILL.md +250 -0
  861. package/framework/make_your_own/.kimi/skills/context-synthesizer/SKILL.md +322 -0
  862. package/framework/make_your_own/.kimi/skills/documentation/SKILL.md +441 -0
  863. package/framework/make_your_own/.kimi/skills/error-handling-patterns/SKILL.md +641 -0
  864. package/framework/make_your_own/.kimi/skills/find-skills/SKILL.md +130 -0
  865. package/framework/make_your_own/.kimi/skills/microtask-decomposition/SKILL.md +368 -0
  866. package/framework/make_your_own/.kimi/skills/openspec-apply-change/SKILL.md +172 -0
  867. package/framework/make_your_own/.kimi/skills/openspec-archive-change/SKILL.md +130 -0
  868. package/framework/make_your_own/.kimi/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  869. package/framework/make_your_own/.kimi/skills/openspec-continue-change/SKILL.md +134 -0
  870. package/framework/make_your_own/.kimi/skills/openspec-explore/SKILL.md +306 -0
  871. package/framework/make_your_own/.kimi/skills/openspec-ff-change/SKILL.md +117 -0
  872. package/framework/make_your_own/.kimi/skills/openspec-new-change/SKILL.md +90 -0
  873. package/framework/make_your_own/.kimi/skills/openspec-onboard/SKILL.md +529 -0
  874. package/framework/make_your_own/.kimi/skills/openspec-sync-specs/SKILL.md +154 -0
  875. package/framework/make_your_own/.kimi/skills/openspec-verify-change/SKILL.md +184 -0
  876. package/framework/make_your_own/.kimi/skills/performance-optimizer/SKILL.md +43 -0
  877. package/framework/make_your_own/.kimi/skills/project-constitution/SKILL.md +66 -0
  878. package/framework/make_your_own/.kimi/skills/project-index/SKILL.md +234 -0
  879. package/framework/make_your_own/.kimi/skills/project-index/scripts/scan_codebase.py +47 -0
  880. package/framework/make_your_own/.kimi/skills/project-index/templates/agent-template.md +18 -0
  881. package/framework/make_your_own/.kimi/skills/project-index/templates/skill-template.md +20 -0
  882. package/framework/make_your_own/.kimi/skills/requirement-checklist/SKILL.md +90 -0
  883. package/framework/make_your_own/.kimi/skills/research-retrieval/SKILL.md +357 -0
  884. package/framework/make_your_own/.kimi/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  885. package/framework/make_your_own/.kimi/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  886. package/framework/make_your_own/.kimi/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  887. package/framework/make_your_own/.kimi/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  888. package/framework/make_your_own/.kimi/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  889. package/framework/make_your_own/.kimi/skills/skill-writer/SKILL.md +385 -0
  890. package/framework/make_your_own/.kimi/skills/spec-analysis/SKILL.md +65 -0
  891. package/framework/make_your_own/.kimi/skills/spec-clarification/SKILL.md +73 -0
  892. package/framework/make_your_own/.kimi/skills/sync-index/SKILL.md +35 -0
  893. package/framework/make_your_own/.kimi/skills/systematic-debugging/SKILL.md +296 -0
  894. package/framework/make_your_own/.kimi/skills/test-generator/SKILL.md +41 -0
  895. package/framework/make_your_own/.kimi/skills/testing-qa/SKILL.md +249 -0
  896. package/framework/make_your_own/.kimi/skills/vibe-security/SKILL.md +122 -0
  897. package/framework/make_your_own/.kimi/skills/vibe-security/agents/openai.yaml +8 -0
  898. package/framework/make_your_own/.kimi/skills/vibe-security/references/ai-integration.md +61 -0
  899. package/framework/make_your_own/.kimi/skills/vibe-security/references/authentication.md +90 -0
  900. package/framework/make_your_own/.kimi/skills/vibe-security/references/data-access.md +79 -0
  901. package/framework/make_your_own/.kimi/skills/vibe-security/references/database-security.md +151 -0
  902. package/framework/make_your_own/.kimi/skills/vibe-security/references/deployment.md +49 -0
  903. package/framework/make_your_own/.kimi/skills/vibe-security/references/mobile.md +55 -0
  904. package/framework/make_your_own/.kimi/skills/vibe-security/references/payments.md +63 -0
  905. package/framework/make_your_own/.kimi/skills/vibe-security/references/rate-limiting.md +55 -0
  906. package/framework/make_your_own/.kimi/skills/vibe-security/references/secrets-and-env.md +47 -0
  907. package/framework/make_your_own/.kimi/workflows/ac-lite.md +42 -0
  908. package/framework/make_your_own/.kimi/workflows/ac.md +95 -0
  909. package/framework/make_your_own/.kimi/workflows/opsx-apply.md +149 -0
  910. package/framework/make_your_own/.kimi/workflows/opsx-archive.md +154 -0
  911. package/framework/make_your_own/.kimi/workflows/opsx-bulk-archive.md +239 -0
  912. package/framework/make_your_own/.kimi/workflows/opsx-continue.md +111 -0
  913. package/framework/make_your_own/.kimi/workflows/opsx-explore.md +171 -0
  914. package/framework/make_your_own/.kimi/workflows/opsx-ff.md +91 -0
  915. package/framework/make_your_own/.kimi/workflows/opsx-new.md +66 -0
  916. package/framework/make_your_own/.kimi/workflows/opsx-onboard.md +522 -0
  917. package/framework/make_your_own/.kimi/workflows/opsx-sync.md +131 -0
  918. package/framework/make_your_own/.kimi/workflows/opsx-verify.md +161 -0
  919. package/framework/make_your_own/.opencode/command/ac-lite.md +42 -0
  920. package/framework/make_your_own/.opencode/command/ac.md +95 -0
  921. package/framework/make_your_own/.opencode/command/opsx-apply.md +149 -0
  922. package/framework/make_your_own/.opencode/command/opsx-archive.md +154 -0
  923. package/framework/make_your_own/.opencode/command/opsx-bulk-archive.md +239 -0
  924. package/framework/make_your_own/.opencode/command/opsx-continue.md +111 -0
  925. package/framework/make_your_own/.opencode/command/opsx-explore.md +171 -0
  926. package/framework/make_your_own/.opencode/command/opsx-ff.md +91 -0
  927. package/framework/make_your_own/.opencode/command/opsx-new.md +66 -0
  928. package/framework/make_your_own/.opencode/command/opsx-onboard.md +522 -0
  929. package/framework/make_your_own/.opencode/command/opsx-sync.md +131 -0
  930. package/framework/make_your_own/.opencode/command/opsx-verify.md +161 -0
  931. package/framework/make_your_own/.opencode/skills/acfm-memory/SKILL.md +312 -0
  932. package/framework/make_your_own/.opencode/skills/acfm-spec-workflow/SKILL.md +269 -0
  933. package/framework/make_your_own/.opencode/skills/brainstorming/SKILL.md +282 -0
  934. package/framework/make_your_own/.opencode/skills/changelog-generator/SKILL.md +104 -0
  935. package/framework/make_your_own/.opencode/skills/ci-deploy/SKILL.md +501 -0
  936. package/framework/make_your_own/.opencode/skills/code-maintainability/SKILL.md +1108 -0
  937. package/framework/make_your_own/.opencode/skills/code-review/SKILL.md +250 -0
  938. package/framework/make_your_own/.opencode/skills/context-synthesizer/SKILL.md +322 -0
  939. package/framework/make_your_own/.opencode/skills/documentation/SKILL.md +441 -0
  940. package/framework/make_your_own/.opencode/skills/error-handling-patterns/SKILL.md +641 -0
  941. package/framework/make_your_own/.opencode/skills/find-skills/SKILL.md +130 -0
  942. package/framework/make_your_own/.opencode/skills/microtask-decomposition/SKILL.md +368 -0
  943. package/framework/make_your_own/.opencode/skills/openspec-apply-change/SKILL.md +172 -0
  944. package/framework/make_your_own/.opencode/skills/openspec-archive-change/SKILL.md +130 -0
  945. package/framework/make_your_own/.opencode/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  946. package/framework/make_your_own/.opencode/skills/openspec-continue-change/SKILL.md +134 -0
  947. package/framework/make_your_own/.opencode/skills/openspec-explore/SKILL.md +306 -0
  948. package/framework/make_your_own/.opencode/skills/openspec-ff-change/SKILL.md +117 -0
  949. package/framework/make_your_own/.opencode/skills/openspec-new-change/SKILL.md +90 -0
  950. package/framework/make_your_own/.opencode/skills/openspec-onboard/SKILL.md +529 -0
  951. package/framework/make_your_own/.opencode/skills/openspec-sync-specs/SKILL.md +154 -0
  952. package/framework/make_your_own/.opencode/skills/openspec-verify-change/SKILL.md +184 -0
  953. package/framework/make_your_own/.opencode/skills/performance-optimizer/SKILL.md +43 -0
  954. package/framework/make_your_own/.opencode/skills/project-constitution/SKILL.md +66 -0
  955. package/framework/make_your_own/.opencode/skills/project-index/SKILL.md +234 -0
  956. package/framework/make_your_own/.opencode/skills/project-index/scripts/scan_codebase.py +47 -0
  957. package/framework/make_your_own/.opencode/skills/project-index/templates/agent-template.md +18 -0
  958. package/framework/make_your_own/.opencode/skills/project-index/templates/skill-template.md +20 -0
  959. package/framework/make_your_own/.opencode/skills/requirement-checklist/SKILL.md +90 -0
  960. package/framework/make_your_own/.opencode/skills/research-retrieval/SKILL.md +357 -0
  961. package/framework/make_your_own/.opencode/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  962. package/framework/make_your_own/.opencode/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  963. package/framework/make_your_own/.opencode/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  964. package/framework/make_your_own/.opencode/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  965. package/framework/make_your_own/.opencode/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  966. package/framework/make_your_own/.opencode/skills/skill-writer/SKILL.md +385 -0
  967. package/framework/make_your_own/.opencode/skills/spec-analysis/SKILL.md +65 -0
  968. package/framework/make_your_own/.opencode/skills/spec-clarification/SKILL.md +73 -0
  969. package/framework/make_your_own/.opencode/skills/sync-index/SKILL.md +35 -0
  970. package/framework/make_your_own/.opencode/skills/systematic-debugging/SKILL.md +296 -0
  971. package/framework/make_your_own/.opencode/skills/test-generator/SKILL.md +41 -0
  972. package/framework/make_your_own/.opencode/skills/testing-qa/SKILL.md +249 -0
  973. package/framework/make_your_own/.opencode/skills/vibe-security/SKILL.md +122 -0
  974. package/framework/make_your_own/.opencode/skills/vibe-security/agents/openai.yaml +8 -0
  975. package/framework/make_your_own/.opencode/skills/vibe-security/references/ai-integration.md +61 -0
  976. package/framework/make_your_own/.opencode/skills/vibe-security/references/authentication.md +90 -0
  977. package/framework/make_your_own/.opencode/skills/vibe-security/references/data-access.md +79 -0
  978. package/framework/make_your_own/.opencode/skills/vibe-security/references/database-security.md +151 -0
  979. package/framework/make_your_own/.opencode/skills/vibe-security/references/deployment.md +49 -0
  980. package/framework/make_your_own/.opencode/skills/vibe-security/references/mobile.md +55 -0
  981. package/framework/make_your_own/.opencode/skills/vibe-security/references/payments.md +63 -0
  982. package/framework/make_your_own/.opencode/skills/vibe-security/references/rate-limiting.md +55 -0
  983. package/framework/make_your_own/.opencode/skills/vibe-security/references/secrets-and-env.md +47 -0
  984. package/framework/make_your_own/.qoder/commands/opsx/ac-lite.md +42 -0
  985. package/framework/make_your_own/.qoder/commands/opsx/ac.md +95 -0
  986. package/framework/make_your_own/.qoder/commands/opsx/apply.md +152 -0
  987. package/framework/make_your_own/.qoder/commands/opsx/archive.md +157 -0
  988. package/framework/make_your_own/.qoder/commands/opsx/bulk-archive.md +242 -0
  989. package/framework/make_your_own/.qoder/commands/opsx/continue.md +114 -0
  990. package/framework/make_your_own/.qoder/commands/opsx/explore.md +174 -0
  991. package/framework/make_your_own/.qoder/commands/opsx/ff.md +94 -0
  992. package/framework/make_your_own/.qoder/commands/opsx/new.md +69 -0
  993. package/framework/make_your_own/.qoder/commands/opsx/onboard.md +525 -0
  994. package/framework/make_your_own/.qoder/commands/opsx/sync.md +134 -0
  995. package/framework/make_your_own/.qoder/commands/opsx/verify.md +164 -0
  996. package/framework/make_your_own/.qoder/skills/acfm-memory/SKILL.md +312 -0
  997. package/framework/make_your_own/.qoder/skills/acfm-spec-workflow/SKILL.md +269 -0
  998. package/framework/make_your_own/.qoder/skills/brainstorming/SKILL.md +282 -0
  999. package/framework/make_your_own/.qoder/skills/changelog-generator/SKILL.md +104 -0
  1000. package/framework/make_your_own/.qoder/skills/ci-deploy/SKILL.md +501 -0
  1001. package/framework/make_your_own/.qoder/skills/code-maintainability/SKILL.md +1108 -0
  1002. package/framework/make_your_own/.qoder/skills/code-review/SKILL.md +250 -0
  1003. package/framework/make_your_own/.qoder/skills/context-synthesizer/SKILL.md +322 -0
  1004. package/framework/make_your_own/.qoder/skills/documentation/SKILL.md +441 -0
  1005. package/framework/make_your_own/.qoder/skills/error-handling-patterns/SKILL.md +641 -0
  1006. package/framework/make_your_own/.qoder/skills/find-skills/SKILL.md +130 -0
  1007. package/framework/make_your_own/.qoder/skills/microtask-decomposition/SKILL.md +368 -0
  1008. package/framework/make_your_own/.qoder/skills/openspec-apply-change/SKILL.md +172 -0
  1009. package/framework/make_your_own/.qoder/skills/openspec-archive-change/SKILL.md +130 -0
  1010. package/framework/make_your_own/.qoder/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  1011. package/framework/make_your_own/.qoder/skills/openspec-continue-change/SKILL.md +134 -0
  1012. package/framework/make_your_own/.qoder/skills/openspec-explore/SKILL.md +306 -0
  1013. package/framework/make_your_own/.qoder/skills/openspec-ff-change/SKILL.md +117 -0
  1014. package/framework/make_your_own/.qoder/skills/openspec-new-change/SKILL.md +90 -0
  1015. package/framework/make_your_own/.qoder/skills/openspec-onboard/SKILL.md +529 -0
  1016. package/framework/make_your_own/.qoder/skills/openspec-sync-specs/SKILL.md +154 -0
  1017. package/framework/make_your_own/.qoder/skills/openspec-verify-change/SKILL.md +184 -0
  1018. package/framework/make_your_own/.qoder/skills/performance-optimizer/SKILL.md +43 -0
  1019. package/framework/make_your_own/.qoder/skills/project-constitution/SKILL.md +66 -0
  1020. package/framework/make_your_own/.qoder/skills/project-index/SKILL.md +234 -0
  1021. package/framework/make_your_own/.qoder/skills/project-index/scripts/scan_codebase.py +47 -0
  1022. package/framework/make_your_own/.qoder/skills/project-index/templates/agent-template.md +18 -0
  1023. package/framework/make_your_own/.qoder/skills/project-index/templates/skill-template.md +20 -0
  1024. package/framework/make_your_own/.qoder/skills/requirement-checklist/SKILL.md +90 -0
  1025. package/framework/make_your_own/.qoder/skills/research-retrieval/SKILL.md +357 -0
  1026. package/framework/make_your_own/.qoder/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  1027. package/framework/make_your_own/.qoder/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  1028. package/framework/make_your_own/.qoder/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  1029. package/framework/make_your_own/.qoder/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  1030. package/framework/make_your_own/.qoder/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  1031. package/framework/make_your_own/.qoder/skills/skill-writer/SKILL.md +385 -0
  1032. package/framework/make_your_own/.qoder/skills/spec-analysis/SKILL.md +65 -0
  1033. package/framework/make_your_own/.qoder/skills/spec-clarification/SKILL.md +73 -0
  1034. package/framework/make_your_own/.qoder/skills/sync-index/SKILL.md +35 -0
  1035. package/framework/make_your_own/.qoder/skills/systematic-debugging/SKILL.md +296 -0
  1036. package/framework/make_your_own/.qoder/skills/test-generator/SKILL.md +41 -0
  1037. package/framework/make_your_own/.qoder/skills/testing-qa/SKILL.md +249 -0
  1038. package/framework/make_your_own/.qoder/skills/vibe-security/SKILL.md +122 -0
  1039. package/framework/make_your_own/.qoder/skills/vibe-security/agents/openai.yaml +8 -0
  1040. package/framework/make_your_own/.qoder/skills/vibe-security/references/ai-integration.md +61 -0
  1041. package/framework/make_your_own/.qoder/skills/vibe-security/references/authentication.md +90 -0
  1042. package/framework/make_your_own/.qoder/skills/vibe-security/references/data-access.md +79 -0
  1043. package/framework/make_your_own/.qoder/skills/vibe-security/references/database-security.md +151 -0
  1044. package/framework/make_your_own/.qoder/skills/vibe-security/references/deployment.md +49 -0
  1045. package/framework/make_your_own/.qoder/skills/vibe-security/references/mobile.md +55 -0
  1046. package/framework/make_your_own/.qoder/skills/vibe-security/references/payments.md +63 -0
  1047. package/framework/make_your_own/.qoder/skills/vibe-security/references/rate-limiting.md +55 -0
  1048. package/framework/make_your_own/.qoder/skills/vibe-security/references/secrets-and-env.md +47 -0
  1049. package/framework/make_your_own/.qwen/commands/ac-lite.md +42 -0
  1050. package/framework/make_your_own/.qwen/commands/ac.md +95 -0
  1051. package/framework/make_your_own/.qwen/commands/opsx-apply.md +150 -0
  1052. package/framework/make_your_own/.qwen/commands/opsx-archive.md +155 -0
  1053. package/framework/make_your_own/.qwen/commands/opsx-bulk-archive.md +240 -0
  1054. package/framework/make_your_own/.qwen/commands/opsx-continue.md +112 -0
  1055. package/framework/make_your_own/.qwen/commands/opsx-explore.md +172 -0
  1056. package/framework/make_your_own/.qwen/commands/opsx-ff.md +92 -0
  1057. package/framework/make_your_own/.qwen/commands/opsx-new.md +67 -0
  1058. package/framework/make_your_own/.qwen/commands/opsx-onboard.md +523 -0
  1059. package/framework/make_your_own/.qwen/commands/opsx-sync.md +132 -0
  1060. package/framework/make_your_own/.qwen/commands/opsx-verify.md +162 -0
  1061. package/framework/make_your_own/.qwen/skills/acfm-memory/SKILL.md +312 -0
  1062. package/framework/make_your_own/.qwen/skills/acfm-spec-workflow/SKILL.md +269 -0
  1063. package/framework/make_your_own/.qwen/skills/brainstorming/SKILL.md +282 -0
  1064. package/framework/make_your_own/.qwen/skills/changelog-generator/SKILL.md +104 -0
  1065. package/framework/make_your_own/.qwen/skills/ci-deploy/SKILL.md +501 -0
  1066. package/framework/make_your_own/.qwen/skills/code-maintainability/SKILL.md +1108 -0
  1067. package/framework/make_your_own/.qwen/skills/code-review/SKILL.md +250 -0
  1068. package/framework/make_your_own/.qwen/skills/context-synthesizer/SKILL.md +322 -0
  1069. package/framework/make_your_own/.qwen/skills/documentation/SKILL.md +441 -0
  1070. package/framework/make_your_own/.qwen/skills/error-handling-patterns/SKILL.md +641 -0
  1071. package/framework/make_your_own/.qwen/skills/find-skills/SKILL.md +130 -0
  1072. package/framework/make_your_own/.qwen/skills/microtask-decomposition/SKILL.md +368 -0
  1073. package/framework/make_your_own/.qwen/skills/openspec-apply-change/SKILL.md +172 -0
  1074. package/framework/make_your_own/.qwen/skills/openspec-archive-change/SKILL.md +130 -0
  1075. package/framework/make_your_own/.qwen/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  1076. package/framework/make_your_own/.qwen/skills/openspec-continue-change/SKILL.md +134 -0
  1077. package/framework/make_your_own/.qwen/skills/openspec-explore/SKILL.md +306 -0
  1078. package/framework/make_your_own/.qwen/skills/openspec-ff-change/SKILL.md +117 -0
  1079. package/framework/make_your_own/.qwen/skills/openspec-new-change/SKILL.md +90 -0
  1080. package/framework/make_your_own/.qwen/skills/openspec-onboard/SKILL.md +529 -0
  1081. package/framework/make_your_own/.qwen/skills/openspec-sync-specs/SKILL.md +154 -0
  1082. package/framework/make_your_own/.qwen/skills/openspec-verify-change/SKILL.md +184 -0
  1083. package/framework/make_your_own/.qwen/skills/performance-optimizer/SKILL.md +43 -0
  1084. package/framework/make_your_own/.qwen/skills/project-constitution/SKILL.md +66 -0
  1085. package/framework/make_your_own/.qwen/skills/project-index/SKILL.md +234 -0
  1086. package/framework/make_your_own/.qwen/skills/project-index/scripts/scan_codebase.py +47 -0
  1087. package/framework/make_your_own/.qwen/skills/project-index/templates/agent-template.md +18 -0
  1088. package/framework/make_your_own/.qwen/skills/project-index/templates/skill-template.md +20 -0
  1089. package/framework/make_your_own/.qwen/skills/requirement-checklist/SKILL.md +90 -0
  1090. package/framework/make_your_own/.qwen/skills/research-retrieval/SKILL.md +357 -0
  1091. package/framework/make_your_own/.qwen/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  1092. package/framework/make_your_own/.qwen/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  1093. package/framework/make_your_own/.qwen/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  1094. package/framework/make_your_own/.qwen/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  1095. package/framework/make_your_own/.qwen/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  1096. package/framework/make_your_own/.qwen/skills/skill-writer/SKILL.md +385 -0
  1097. package/framework/make_your_own/.qwen/skills/spec-analysis/SKILL.md +65 -0
  1098. package/framework/make_your_own/.qwen/skills/spec-clarification/SKILL.md +73 -0
  1099. package/framework/make_your_own/.qwen/skills/sync-index/SKILL.md +35 -0
  1100. package/framework/make_your_own/.qwen/skills/systematic-debugging/SKILL.md +296 -0
  1101. package/framework/make_your_own/.qwen/skills/test-generator/SKILL.md +41 -0
  1102. package/framework/make_your_own/.qwen/skills/testing-qa/SKILL.md +249 -0
  1103. package/framework/make_your_own/.qwen/skills/vibe-security/SKILL.md +122 -0
  1104. package/framework/make_your_own/.qwen/skills/vibe-security/agents/openai.yaml +8 -0
  1105. package/framework/make_your_own/.qwen/skills/vibe-security/references/ai-integration.md +61 -0
  1106. package/framework/make_your_own/.qwen/skills/vibe-security/references/authentication.md +90 -0
  1107. package/framework/make_your_own/.qwen/skills/vibe-security/references/data-access.md +79 -0
  1108. package/framework/make_your_own/.qwen/skills/vibe-security/references/database-security.md +151 -0
  1109. package/framework/make_your_own/.qwen/skills/vibe-security/references/deployment.md +49 -0
  1110. package/framework/make_your_own/.qwen/skills/vibe-security/references/mobile.md +55 -0
  1111. package/framework/make_your_own/.qwen/skills/vibe-security/references/payments.md +63 -0
  1112. package/framework/make_your_own/.qwen/skills/vibe-security/references/rate-limiting.md +55 -0
  1113. package/framework/make_your_own/.qwen/skills/vibe-security/references/secrets-and-env.md +47 -0
  1114. package/framework/make_your_own/.roo/commands/ac-lite.md +42 -0
  1115. package/framework/make_your_own/.roo/commands/ac.md +95 -0
  1116. package/framework/make_your_own/.roo/commands/opsx-apply.md +149 -0
  1117. package/framework/make_your_own/.roo/commands/opsx-archive.md +154 -0
  1118. package/framework/make_your_own/.roo/commands/opsx-bulk-archive.md +239 -0
  1119. package/framework/make_your_own/.roo/commands/opsx-continue.md +111 -0
  1120. package/framework/make_your_own/.roo/commands/opsx-explore.md +171 -0
  1121. package/framework/make_your_own/.roo/commands/opsx-ff.md +91 -0
  1122. package/framework/make_your_own/.roo/commands/opsx-new.md +66 -0
  1123. package/framework/make_your_own/.roo/commands/opsx-onboard.md +522 -0
  1124. package/framework/make_your_own/.roo/commands/opsx-sync.md +131 -0
  1125. package/framework/make_your_own/.roo/commands/opsx-verify.md +161 -0
  1126. package/framework/make_your_own/.roo/skills/acfm-memory/SKILL.md +312 -0
  1127. package/framework/make_your_own/.roo/skills/acfm-spec-workflow/SKILL.md +269 -0
  1128. package/framework/make_your_own/.roo/skills/brainstorming/SKILL.md +282 -0
  1129. package/framework/make_your_own/.roo/skills/changelog-generator/SKILL.md +104 -0
  1130. package/framework/make_your_own/.roo/skills/ci-deploy/SKILL.md +501 -0
  1131. package/framework/make_your_own/.roo/skills/code-maintainability/SKILL.md +1108 -0
  1132. package/framework/make_your_own/.roo/skills/code-review/SKILL.md +250 -0
  1133. package/framework/make_your_own/.roo/skills/context-synthesizer/SKILL.md +322 -0
  1134. package/framework/make_your_own/.roo/skills/documentation/SKILL.md +441 -0
  1135. package/framework/make_your_own/.roo/skills/error-handling-patterns/SKILL.md +641 -0
  1136. package/framework/make_your_own/.roo/skills/find-skills/SKILL.md +130 -0
  1137. package/framework/make_your_own/.roo/skills/microtask-decomposition/SKILL.md +368 -0
  1138. package/framework/make_your_own/.roo/skills/openspec-apply-change/SKILL.md +172 -0
  1139. package/framework/make_your_own/.roo/skills/openspec-archive-change/SKILL.md +130 -0
  1140. package/framework/make_your_own/.roo/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  1141. package/framework/make_your_own/.roo/skills/openspec-continue-change/SKILL.md +134 -0
  1142. package/framework/make_your_own/.roo/skills/openspec-explore/SKILL.md +306 -0
  1143. package/framework/make_your_own/.roo/skills/openspec-ff-change/SKILL.md +117 -0
  1144. package/framework/make_your_own/.roo/skills/openspec-new-change/SKILL.md +90 -0
  1145. package/framework/make_your_own/.roo/skills/openspec-onboard/SKILL.md +529 -0
  1146. package/framework/make_your_own/.roo/skills/openspec-sync-specs/SKILL.md +154 -0
  1147. package/framework/make_your_own/.roo/skills/openspec-verify-change/SKILL.md +184 -0
  1148. package/framework/make_your_own/.roo/skills/performance-optimizer/SKILL.md +43 -0
  1149. package/framework/make_your_own/.roo/skills/project-constitution/SKILL.md +66 -0
  1150. package/framework/make_your_own/.roo/skills/project-index/SKILL.md +234 -0
  1151. package/framework/make_your_own/.roo/skills/project-index/scripts/scan_codebase.py +47 -0
  1152. package/framework/make_your_own/.roo/skills/project-index/templates/agent-template.md +18 -0
  1153. package/framework/make_your_own/.roo/skills/project-index/templates/skill-template.md +20 -0
  1154. package/framework/make_your_own/.roo/skills/requirement-checklist/SKILL.md +90 -0
  1155. package/framework/make_your_own/.roo/skills/research-retrieval/SKILL.md +357 -0
  1156. package/framework/make_your_own/.roo/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  1157. package/framework/make_your_own/.roo/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  1158. package/framework/make_your_own/.roo/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  1159. package/framework/make_your_own/.roo/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  1160. package/framework/make_your_own/.roo/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  1161. package/framework/make_your_own/.roo/skills/skill-writer/SKILL.md +385 -0
  1162. package/framework/make_your_own/.roo/skills/spec-analysis/SKILL.md +65 -0
  1163. package/framework/make_your_own/.roo/skills/spec-clarification/SKILL.md +73 -0
  1164. package/framework/make_your_own/.roo/skills/sync-index/SKILL.md +35 -0
  1165. package/framework/make_your_own/.roo/skills/systematic-debugging/SKILL.md +296 -0
  1166. package/framework/make_your_own/.roo/skills/test-generator/SKILL.md +41 -0
  1167. package/framework/make_your_own/.roo/skills/testing-qa/SKILL.md +249 -0
  1168. package/framework/make_your_own/.roo/skills/vibe-security/SKILL.md +122 -0
  1169. package/framework/make_your_own/.roo/skills/vibe-security/agents/openai.yaml +8 -0
  1170. package/framework/make_your_own/.roo/skills/vibe-security/references/ai-integration.md +61 -0
  1171. package/framework/make_your_own/.roo/skills/vibe-security/references/authentication.md +90 -0
  1172. package/framework/make_your_own/.roo/skills/vibe-security/references/data-access.md +79 -0
  1173. package/framework/make_your_own/.roo/skills/vibe-security/references/database-security.md +151 -0
  1174. package/framework/make_your_own/.roo/skills/vibe-security/references/deployment.md +49 -0
  1175. package/framework/make_your_own/.roo/skills/vibe-security/references/mobile.md +55 -0
  1176. package/framework/make_your_own/.roo/skills/vibe-security/references/payments.md +63 -0
  1177. package/framework/make_your_own/.roo/skills/vibe-security/references/rate-limiting.md +55 -0
  1178. package/framework/make_your_own/.roo/skills/vibe-security/references/secrets-and-env.md +47 -0
  1179. package/framework/make_your_own/.trae/skills/acfm-memory/SKILL.md +312 -0
  1180. package/framework/make_your_own/.trae/skills/acfm-spec-workflow/SKILL.md +269 -0
  1181. package/framework/make_your_own/.trae/skills/brainstorming/SKILL.md +282 -0
  1182. package/framework/make_your_own/.trae/skills/changelog-generator/SKILL.md +104 -0
  1183. package/framework/make_your_own/.trae/skills/ci-deploy/SKILL.md +501 -0
  1184. package/framework/make_your_own/.trae/skills/code-maintainability/SKILL.md +1108 -0
  1185. package/framework/make_your_own/.trae/skills/code-review/SKILL.md +250 -0
  1186. package/framework/make_your_own/.trae/skills/context-synthesizer/SKILL.md +322 -0
  1187. package/framework/make_your_own/.trae/skills/documentation/SKILL.md +441 -0
  1188. package/framework/make_your_own/.trae/skills/error-handling-patterns/SKILL.md +641 -0
  1189. package/framework/make_your_own/.trae/skills/find-skills/SKILL.md +130 -0
  1190. package/framework/make_your_own/.trae/skills/microtask-decomposition/SKILL.md +368 -0
  1191. package/framework/make_your_own/.trae/skills/openspec-apply-change/SKILL.md +172 -0
  1192. package/framework/make_your_own/.trae/skills/openspec-archive-change/SKILL.md +130 -0
  1193. package/framework/make_your_own/.trae/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  1194. package/framework/make_your_own/.trae/skills/openspec-continue-change/SKILL.md +134 -0
  1195. package/framework/make_your_own/.trae/skills/openspec-explore/SKILL.md +306 -0
  1196. package/framework/make_your_own/.trae/skills/openspec-ff-change/SKILL.md +117 -0
  1197. package/framework/make_your_own/.trae/skills/openspec-new-change/SKILL.md +90 -0
  1198. package/framework/make_your_own/.trae/skills/openspec-onboard/SKILL.md +529 -0
  1199. package/framework/make_your_own/.trae/skills/openspec-sync-specs/SKILL.md +154 -0
  1200. package/framework/make_your_own/.trae/skills/openspec-verify-change/SKILL.md +184 -0
  1201. package/framework/make_your_own/.trae/skills/performance-optimizer/SKILL.md +43 -0
  1202. package/framework/make_your_own/.trae/skills/project-constitution/SKILL.md +66 -0
  1203. package/framework/make_your_own/.trae/skills/project-index/SKILL.md +234 -0
  1204. package/framework/make_your_own/.trae/skills/project-index/scripts/scan_codebase.py +47 -0
  1205. package/framework/make_your_own/.trae/skills/project-index/templates/agent-template.md +18 -0
  1206. package/framework/make_your_own/.trae/skills/project-index/templates/skill-template.md +20 -0
  1207. package/framework/make_your_own/.trae/skills/requirement-checklist/SKILL.md +90 -0
  1208. package/framework/make_your_own/.trae/skills/research-retrieval/SKILL.md +357 -0
  1209. package/framework/make_your_own/.trae/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  1210. package/framework/make_your_own/.trae/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  1211. package/framework/make_your_own/.trae/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  1212. package/framework/make_your_own/.trae/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  1213. package/framework/make_your_own/.trae/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  1214. package/framework/make_your_own/.trae/skills/skill-writer/SKILL.md +385 -0
  1215. package/framework/make_your_own/.trae/skills/spec-analysis/SKILL.md +65 -0
  1216. package/framework/make_your_own/.trae/skills/spec-clarification/SKILL.md +73 -0
  1217. package/framework/make_your_own/.trae/skills/sync-index/SKILL.md +35 -0
  1218. package/framework/make_your_own/.trae/skills/systematic-debugging/SKILL.md +296 -0
  1219. package/framework/make_your_own/.trae/skills/test-generator/SKILL.md +41 -0
  1220. package/framework/make_your_own/.trae/skills/testing-qa/SKILL.md +249 -0
  1221. package/framework/make_your_own/.trae/skills/vibe-security/SKILL.md +122 -0
  1222. package/framework/make_your_own/.trae/skills/vibe-security/agents/openai.yaml +8 -0
  1223. package/framework/make_your_own/.trae/skills/vibe-security/references/ai-integration.md +61 -0
  1224. package/framework/make_your_own/.trae/skills/vibe-security/references/authentication.md +90 -0
  1225. package/framework/make_your_own/.trae/skills/vibe-security/references/data-access.md +79 -0
  1226. package/framework/make_your_own/.trae/skills/vibe-security/references/database-security.md +151 -0
  1227. package/framework/make_your_own/.trae/skills/vibe-security/references/deployment.md +49 -0
  1228. package/framework/make_your_own/.trae/skills/vibe-security/references/mobile.md +55 -0
  1229. package/framework/make_your_own/.trae/skills/vibe-security/references/payments.md +63 -0
  1230. package/framework/make_your_own/.trae/skills/vibe-security/references/rate-limiting.md +55 -0
  1231. package/framework/make_your_own/.trae/skills/vibe-security/references/secrets-and-env.md +47 -0
  1232. package/framework/make_your_own/.windsurf/skills/acfm-memory/SKILL.md +312 -0
  1233. package/framework/make_your_own/.windsurf/skills/acfm-spec-workflow/SKILL.md +269 -0
  1234. package/framework/make_your_own/.windsurf/skills/brainstorming/SKILL.md +282 -0
  1235. package/framework/make_your_own/.windsurf/skills/changelog-generator/SKILL.md +104 -0
  1236. package/framework/make_your_own/.windsurf/skills/ci-deploy/SKILL.md +501 -0
  1237. package/framework/make_your_own/.windsurf/skills/code-maintainability/SKILL.md +1108 -0
  1238. package/framework/make_your_own/.windsurf/skills/code-review/SKILL.md +250 -0
  1239. package/framework/make_your_own/.windsurf/skills/context-synthesizer/SKILL.md +322 -0
  1240. package/framework/make_your_own/.windsurf/skills/documentation/SKILL.md +441 -0
  1241. package/framework/make_your_own/.windsurf/skills/error-handling-patterns/SKILL.md +641 -0
  1242. package/framework/make_your_own/.windsurf/skills/find-skills/SKILL.md +130 -0
  1243. package/framework/make_your_own/.windsurf/skills/microtask-decomposition/SKILL.md +368 -0
  1244. package/framework/make_your_own/.windsurf/skills/openspec-apply-change/SKILL.md +172 -0
  1245. package/framework/make_your_own/.windsurf/skills/openspec-archive-change/SKILL.md +130 -0
  1246. package/framework/make_your_own/.windsurf/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  1247. package/framework/make_your_own/.windsurf/skills/openspec-continue-change/SKILL.md +134 -0
  1248. package/framework/make_your_own/.windsurf/skills/openspec-explore/SKILL.md +306 -0
  1249. package/framework/make_your_own/.windsurf/skills/openspec-ff-change/SKILL.md +117 -0
  1250. package/framework/make_your_own/.windsurf/skills/openspec-new-change/SKILL.md +90 -0
  1251. package/framework/make_your_own/.windsurf/skills/openspec-onboard/SKILL.md +529 -0
  1252. package/framework/make_your_own/.windsurf/skills/openspec-sync-specs/SKILL.md +154 -0
  1253. package/framework/make_your_own/.windsurf/skills/openspec-verify-change/SKILL.md +184 -0
  1254. package/framework/make_your_own/.windsurf/skills/performance-optimizer/SKILL.md +43 -0
  1255. package/framework/make_your_own/.windsurf/skills/project-constitution/SKILL.md +66 -0
  1256. package/framework/make_your_own/.windsurf/skills/project-index/SKILL.md +234 -0
  1257. package/framework/make_your_own/.windsurf/skills/project-index/scripts/scan_codebase.py +47 -0
  1258. package/framework/make_your_own/.windsurf/skills/project-index/templates/agent-template.md +18 -0
  1259. package/framework/make_your_own/.windsurf/skills/project-index/templates/skill-template.md +20 -0
  1260. package/framework/make_your_own/.windsurf/skills/requirement-checklist/SKILL.md +90 -0
  1261. package/framework/make_your_own/.windsurf/skills/research-retrieval/SKILL.md +357 -0
  1262. package/framework/make_your_own/.windsurf/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  1263. package/framework/make_your_own/.windsurf/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  1264. package/framework/make_your_own/.windsurf/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  1265. package/framework/make_your_own/.windsurf/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  1266. package/framework/make_your_own/.windsurf/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  1267. package/framework/make_your_own/.windsurf/skills/skill-writer/SKILL.md +385 -0
  1268. package/framework/make_your_own/.windsurf/skills/spec-analysis/SKILL.md +65 -0
  1269. package/framework/make_your_own/.windsurf/skills/spec-clarification/SKILL.md +73 -0
  1270. package/framework/make_your_own/.windsurf/skills/sync-index/SKILL.md +35 -0
  1271. package/framework/make_your_own/.windsurf/skills/systematic-debugging/SKILL.md +296 -0
  1272. package/framework/make_your_own/.windsurf/skills/test-generator/SKILL.md +41 -0
  1273. package/framework/make_your_own/.windsurf/skills/testing-qa/SKILL.md +249 -0
  1274. package/framework/make_your_own/.windsurf/skills/vibe-security/SKILL.md +122 -0
  1275. package/framework/make_your_own/.windsurf/skills/vibe-security/agents/openai.yaml +8 -0
  1276. package/framework/make_your_own/.windsurf/skills/vibe-security/references/ai-integration.md +61 -0
  1277. package/framework/make_your_own/.windsurf/skills/vibe-security/references/authentication.md +90 -0
  1278. package/framework/make_your_own/.windsurf/skills/vibe-security/references/data-access.md +79 -0
  1279. package/framework/make_your_own/.windsurf/skills/vibe-security/references/database-security.md +151 -0
  1280. package/framework/make_your_own/.windsurf/skills/vibe-security/references/deployment.md +49 -0
  1281. package/framework/make_your_own/.windsurf/skills/vibe-security/references/mobile.md +55 -0
  1282. package/framework/make_your_own/.windsurf/skills/vibe-security/references/payments.md +63 -0
  1283. package/framework/make_your_own/.windsurf/skills/vibe-security/references/rate-limiting.md +55 -0
  1284. package/framework/make_your_own/.windsurf/skills/vibe-security/references/secrets-and-env.md +47 -0
  1285. package/framework/make_your_own/.windsurf/workflows/ac-lite.md +42 -0
  1286. package/framework/make_your_own/.windsurf/workflows/ac.md +95 -0
  1287. package/framework/make_your_own/.windsurf/workflows/opsx-apply.md +152 -0
  1288. package/framework/make_your_own/.windsurf/workflows/opsx-archive.md +157 -0
  1289. package/framework/make_your_own/.windsurf/workflows/opsx-bulk-archive.md +242 -0
  1290. package/framework/make_your_own/.windsurf/workflows/opsx-continue.md +114 -0
  1291. package/framework/make_your_own/.windsurf/workflows/opsx-explore.md +174 -0
  1292. package/framework/make_your_own/.windsurf/workflows/opsx-ff.md +94 -0
  1293. package/framework/make_your_own/.windsurf/workflows/opsx-new.md +69 -0
  1294. package/framework/make_your_own/.windsurf/workflows/opsx-onboard.md +525 -0
  1295. package/framework/make_your_own/.windsurf/workflows/opsx-sync.md +134 -0
  1296. package/framework/make_your_own/.windsurf/workflows/opsx-verify.md +164 -0
  1297. package/framework/make_your_own/AGENTS.md +53 -0
  1298. package/framework/make_your_own/CLAUDE.md +53 -0
  1299. package/framework/make_your_own/GEMINI.md +53 -0
  1300. package/framework/make_your_own/copilot-instructions.md +53 -0
  1301. package/framework/make_your_own/openspec/config.yaml +20 -0
  1302. package/framework/mobile_development/.agents/skills/acfm-memory/SKILL.md +312 -0
  1303. package/framework/mobile_development/.agents/skills/acfm-spec-workflow/SKILL.md +269 -0
  1304. package/framework/mobile_development/.agents/skills/brainstorming/SKILL.md +282 -0
  1305. package/framework/mobile_development/.agents/skills/changelog-generator/SKILL.md +104 -0
  1306. package/framework/mobile_development/.agents/skills/context-synthesizer/SKILL.md +322 -0
  1307. package/framework/mobile_development/.agents/skills/microtask-decomposition/SKILL.md +368 -0
  1308. package/framework/mobile_development/.agents/skills/openspec-apply-change/SKILL.md +172 -0
  1309. package/framework/mobile_development/.agents/skills/openspec-archive-change/SKILL.md +130 -0
  1310. package/framework/mobile_development/.agents/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  1311. package/framework/mobile_development/.agents/skills/openspec-continue-change/SKILL.md +134 -0
  1312. package/framework/mobile_development/.agents/skills/openspec-explore/SKILL.md +306 -0
  1313. package/framework/mobile_development/.agents/skills/openspec-ff-change/SKILL.md +117 -0
  1314. package/framework/mobile_development/.agents/skills/openspec-new-change/SKILL.md +90 -0
  1315. package/framework/mobile_development/.agents/skills/openspec-onboard/SKILL.md +529 -0
  1316. package/framework/mobile_development/.agents/skills/openspec-sync-specs/SKILL.md +154 -0
  1317. package/framework/mobile_development/.agents/skills/openspec-verify-change/SKILL.md +184 -0
  1318. package/framework/mobile_development/.agents/skills/project-constitution/SKILL.md +66 -0
  1319. package/framework/mobile_development/.agents/skills/project-index/SKILL.md +234 -0
  1320. package/framework/mobile_development/.agents/skills/project-index/scripts/scan_codebase.py +47 -0
  1321. package/framework/mobile_development/.agents/skills/project-index/templates/agent-template.md +18 -0
  1322. package/framework/mobile_development/.agents/skills/project-index/templates/skill-template.md +20 -0
  1323. package/framework/mobile_development/.agents/skills/research-retrieval/SKILL.md +357 -0
  1324. package/framework/mobile_development/.agents/skills/spec-analysis/SKILL.md +65 -0
  1325. package/framework/mobile_development/.agents/skills/spec-clarification/SKILL.md +73 -0
  1326. package/framework/mobile_development/.agents/skills/sync-index/SKILL.md +35 -0
  1327. package/framework/mobile_development/.agents/skills/systematic-debugging/SKILL.md +296 -0
  1328. package/framework/mobile_development/.agents/skills/vibe-security/SKILL.md +122 -0
  1329. package/framework/mobile_development/.agents/skills/vibe-security/agents/openai.yaml +8 -0
  1330. package/framework/mobile_development/.agents/skills/vibe-security/references/ai-integration.md +61 -0
  1331. package/framework/mobile_development/.agents/skills/vibe-security/references/authentication.md +90 -0
  1332. package/framework/mobile_development/.agents/skills/vibe-security/references/data-access.md +79 -0
  1333. package/framework/mobile_development/.agents/skills/vibe-security/references/database-security.md +151 -0
  1334. package/framework/mobile_development/.agents/skills/vibe-security/references/deployment.md +49 -0
  1335. package/framework/mobile_development/.agents/skills/vibe-security/references/mobile.md +55 -0
  1336. package/framework/mobile_development/.agents/skills/vibe-security/references/payments.md +63 -0
  1337. package/framework/mobile_development/.agents/skills/vibe-security/references/rate-limiting.md +55 -0
  1338. package/framework/mobile_development/.agents/skills/vibe-security/references/secrets-and-env.md +47 -0
  1339. package/framework/mobile_development/.agents/workflows/ac-lite.md +187 -0
  1340. package/framework/mobile_development/.agents/workflows/ac.md +378 -0
  1341. package/framework/mobile_development/.agents/workflows/opsx-apply.md +149 -0
  1342. package/framework/mobile_development/.agents/workflows/opsx-archive.md +154 -0
  1343. package/framework/mobile_development/.agents/workflows/opsx-bulk-archive.md +239 -0
  1344. package/framework/mobile_development/.agents/workflows/opsx-continue.md +111 -0
  1345. package/framework/mobile_development/.agents/workflows/opsx-explore.md +171 -0
  1346. package/framework/mobile_development/.agents/workflows/opsx-ff.md +91 -0
  1347. package/framework/mobile_development/.agents/workflows/opsx-new.md +66 -0
  1348. package/framework/mobile_development/.agents/workflows/opsx-onboard.md +522 -0
  1349. package/framework/mobile_development/.agents/workflows/opsx-sync.md +131 -0
  1350. package/framework/mobile_development/.agents/workflows/opsx-verify.md +161 -0
  1351. package/framework/mobile_development/.amazonq/prompts/ac-lite.md +62 -5
  1352. package/framework/mobile_development/.amazonq/prompts/ac.md +75 -74
  1353. package/framework/mobile_development/.amazonq/skills/sync-index/SKILL.md +1 -1
  1354. package/framework/mobile_development/.amazonq/skills/vibe-security/SKILL.md +122 -0
  1355. package/framework/mobile_development/.amazonq/skills/vibe-security/agents/openai.yaml +8 -0
  1356. package/framework/mobile_development/.amazonq/skills/vibe-security/references/ai-integration.md +61 -0
  1357. package/framework/mobile_development/.amazonq/skills/vibe-security/references/authentication.md +90 -0
  1358. package/framework/mobile_development/.amazonq/skills/vibe-security/references/data-access.md +79 -0
  1359. package/framework/mobile_development/.amazonq/skills/vibe-security/references/database-security.md +151 -0
  1360. package/framework/mobile_development/.amazonq/skills/vibe-security/references/deployment.md +49 -0
  1361. package/framework/mobile_development/.amazonq/skills/vibe-security/references/mobile.md +55 -0
  1362. package/framework/mobile_development/.amazonq/skills/vibe-security/references/payments.md +63 -0
  1363. package/framework/mobile_development/.amazonq/skills/vibe-security/references/rate-limiting.md +55 -0
  1364. package/framework/mobile_development/.amazonq/skills/vibe-security/references/secrets-and-env.md +47 -0
  1365. package/framework/mobile_development/.augment/commands/ac-lite.md +62 -5
  1366. package/framework/mobile_development/.augment/commands/ac.md +75 -74
  1367. package/framework/mobile_development/.augment/skills/sync-index/SKILL.md +1 -1
  1368. package/framework/mobile_development/.augment/skills/vibe-security/SKILL.md +122 -0
  1369. package/framework/mobile_development/.augment/skills/vibe-security/agents/openai.yaml +8 -0
  1370. package/framework/mobile_development/.augment/skills/vibe-security/references/ai-integration.md +61 -0
  1371. package/framework/mobile_development/.augment/skills/vibe-security/references/authentication.md +90 -0
  1372. package/framework/mobile_development/.augment/skills/vibe-security/references/data-access.md +79 -0
  1373. package/framework/mobile_development/.augment/skills/vibe-security/references/database-security.md +151 -0
  1374. package/framework/mobile_development/.augment/skills/vibe-security/references/deployment.md +49 -0
  1375. package/framework/mobile_development/.augment/skills/vibe-security/references/mobile.md +55 -0
  1376. package/framework/mobile_development/.augment/skills/vibe-security/references/payments.md +63 -0
  1377. package/framework/mobile_development/.augment/skills/vibe-security/references/rate-limiting.md +55 -0
  1378. package/framework/mobile_development/.augment/skills/vibe-security/references/secrets-and-env.md +47 -0
  1379. package/framework/mobile_development/.claude/commands/opsx/ac-lite.md +62 -5
  1380. package/framework/mobile_development/.claude/commands/opsx/ac.md +75 -74
  1381. package/framework/mobile_development/.claude/skills/sync-index/SKILL.md +1 -1
  1382. package/framework/mobile_development/.claude/skills/vibe-security/SKILL.md +122 -0
  1383. package/framework/mobile_development/.claude/skills/vibe-security/agents/openai.yaml +8 -0
  1384. package/framework/mobile_development/.claude/skills/vibe-security/references/ai-integration.md +61 -0
  1385. package/framework/mobile_development/.claude/skills/vibe-security/references/authentication.md +90 -0
  1386. package/framework/mobile_development/.claude/skills/vibe-security/references/data-access.md +79 -0
  1387. package/framework/mobile_development/.claude/skills/vibe-security/references/database-security.md +151 -0
  1388. package/framework/mobile_development/.claude/skills/vibe-security/references/deployment.md +49 -0
  1389. package/framework/mobile_development/.claude/skills/vibe-security/references/mobile.md +55 -0
  1390. package/framework/mobile_development/.claude/skills/vibe-security/references/payments.md +63 -0
  1391. package/framework/mobile_development/.claude/skills/vibe-security/references/rate-limiting.md +55 -0
  1392. package/framework/mobile_development/.claude/skills/vibe-security/references/secrets-and-env.md +47 -0
  1393. package/framework/mobile_development/.cline/commands/opsx/ac-lite.md +62 -5
  1394. package/framework/mobile_development/.cline/commands/opsx/ac.md +75 -74
  1395. package/framework/mobile_development/.cline/skills/sync-index/SKILL.md +1 -1
  1396. package/framework/mobile_development/.cline/skills/vibe-security/SKILL.md +122 -0
  1397. package/framework/mobile_development/.cline/skills/vibe-security/agents/openai.yaml +8 -0
  1398. package/framework/mobile_development/.cline/skills/vibe-security/references/ai-integration.md +61 -0
  1399. package/framework/mobile_development/.cline/skills/vibe-security/references/authentication.md +90 -0
  1400. package/framework/mobile_development/.cline/skills/vibe-security/references/data-access.md +79 -0
  1401. package/framework/mobile_development/.cline/skills/vibe-security/references/database-security.md +151 -0
  1402. package/framework/mobile_development/.cline/skills/vibe-security/references/deployment.md +49 -0
  1403. package/framework/mobile_development/.cline/skills/vibe-security/references/mobile.md +55 -0
  1404. package/framework/mobile_development/.cline/skills/vibe-security/references/payments.md +63 -0
  1405. package/framework/mobile_development/.cline/skills/vibe-security/references/rate-limiting.md +55 -0
  1406. package/framework/mobile_development/.cline/skills/vibe-security/references/secrets-and-env.md +47 -0
  1407. package/framework/mobile_development/.clinerules/skills/sync-index/SKILL.md +1 -1
  1408. package/framework/mobile_development/.clinerules/skills/vibe-security/SKILL.md +122 -0
  1409. package/framework/mobile_development/.clinerules/skills/vibe-security/agents/openai.yaml +8 -0
  1410. package/framework/mobile_development/.clinerules/skills/vibe-security/references/ai-integration.md +61 -0
  1411. package/framework/mobile_development/.clinerules/skills/vibe-security/references/authentication.md +90 -0
  1412. package/framework/mobile_development/.clinerules/skills/vibe-security/references/data-access.md +79 -0
  1413. package/framework/mobile_development/.clinerules/skills/vibe-security/references/database-security.md +151 -0
  1414. package/framework/mobile_development/.clinerules/skills/vibe-security/references/deployment.md +49 -0
  1415. package/framework/mobile_development/.clinerules/skills/vibe-security/references/mobile.md +55 -0
  1416. package/framework/mobile_development/.clinerules/skills/vibe-security/references/payments.md +63 -0
  1417. package/framework/mobile_development/.clinerules/skills/vibe-security/references/rate-limiting.md +55 -0
  1418. package/framework/mobile_development/.clinerules/skills/vibe-security/references/secrets-and-env.md +47 -0
  1419. package/framework/mobile_development/.clinerules/workflows/ac-lite.md +62 -5
  1420. package/framework/mobile_development/.clinerules/workflows/ac.md +75 -74
  1421. package/framework/mobile_development/.codebuddy/commands/opsx/ac-lite.md +62 -5
  1422. package/framework/mobile_development/.codebuddy/commands/opsx/ac.md +75 -74
  1423. package/framework/mobile_development/.codebuddy/skills/sync-index/SKILL.md +1 -1
  1424. package/framework/mobile_development/.codebuddy/skills/vibe-security/SKILL.md +122 -0
  1425. package/framework/mobile_development/.codebuddy/skills/vibe-security/agents/openai.yaml +8 -0
  1426. package/framework/mobile_development/.codebuddy/skills/vibe-security/references/ai-integration.md +61 -0
  1427. package/framework/mobile_development/.codebuddy/skills/vibe-security/references/authentication.md +90 -0
  1428. package/framework/mobile_development/.codebuddy/skills/vibe-security/references/data-access.md +79 -0
  1429. package/framework/mobile_development/.codebuddy/skills/vibe-security/references/database-security.md +151 -0
  1430. package/framework/mobile_development/.codebuddy/skills/vibe-security/references/deployment.md +49 -0
  1431. package/framework/mobile_development/.codebuddy/skills/vibe-security/references/mobile.md +55 -0
  1432. package/framework/mobile_development/.codebuddy/skills/vibe-security/references/payments.md +63 -0
  1433. package/framework/mobile_development/.codebuddy/skills/vibe-security/references/rate-limiting.md +55 -0
  1434. package/framework/mobile_development/.codebuddy/skills/vibe-security/references/secrets-and-env.md +47 -0
  1435. package/framework/mobile_development/.codex/skills/sync-index/SKILL.md +1 -1
  1436. package/framework/mobile_development/.codex/skills/vibe-security/SKILL.md +122 -0
  1437. package/framework/mobile_development/.codex/skills/vibe-security/agents/openai.yaml +8 -0
  1438. package/framework/mobile_development/.codex/skills/vibe-security/references/ai-integration.md +61 -0
  1439. package/framework/mobile_development/.codex/skills/vibe-security/references/authentication.md +90 -0
  1440. package/framework/mobile_development/.codex/skills/vibe-security/references/data-access.md +79 -0
  1441. package/framework/mobile_development/.codex/skills/vibe-security/references/database-security.md +151 -0
  1442. package/framework/mobile_development/.codex/skills/vibe-security/references/deployment.md +49 -0
  1443. package/framework/mobile_development/.codex/skills/vibe-security/references/mobile.md +55 -0
  1444. package/framework/mobile_development/.codex/skills/vibe-security/references/payments.md +63 -0
  1445. package/framework/mobile_development/.codex/skills/vibe-security/references/rate-limiting.md +55 -0
  1446. package/framework/mobile_development/.codex/skills/vibe-security/references/secrets-and-env.md +47 -0
  1447. package/framework/mobile_development/.continue/prompts/ac-lite.md +62 -5
  1448. package/framework/mobile_development/.continue/prompts/ac.md +75 -74
  1449. package/framework/mobile_development/.continue/skills/sync-index/SKILL.md +1 -1
  1450. package/framework/mobile_development/.continue/skills/vibe-security/SKILL.md +122 -0
  1451. package/framework/mobile_development/.continue/skills/vibe-security/agents/openai.yaml +8 -0
  1452. package/framework/mobile_development/.continue/skills/vibe-security/references/ai-integration.md +61 -0
  1453. package/framework/mobile_development/.continue/skills/vibe-security/references/authentication.md +90 -0
  1454. package/framework/mobile_development/.continue/skills/vibe-security/references/data-access.md +79 -0
  1455. package/framework/mobile_development/.continue/skills/vibe-security/references/database-security.md +151 -0
  1456. package/framework/mobile_development/.continue/skills/vibe-security/references/deployment.md +49 -0
  1457. package/framework/mobile_development/.continue/skills/vibe-security/references/mobile.md +55 -0
  1458. package/framework/mobile_development/.continue/skills/vibe-security/references/payments.md +63 -0
  1459. package/framework/mobile_development/.continue/skills/vibe-security/references/rate-limiting.md +55 -0
  1460. package/framework/mobile_development/.continue/skills/vibe-security/references/secrets-and-env.md +47 -0
  1461. package/framework/mobile_development/.cospec/openspec/commands/ac-lite.md +62 -5
  1462. package/framework/mobile_development/.cospec/openspec/commands/ac.md +75 -74
  1463. package/framework/mobile_development/.cospec/skills/sync-index/SKILL.md +1 -1
  1464. package/framework/mobile_development/.cospec/skills/vibe-security/SKILL.md +122 -0
  1465. package/framework/mobile_development/.cospec/skills/vibe-security/agents/openai.yaml +8 -0
  1466. package/framework/mobile_development/.cospec/skills/vibe-security/references/ai-integration.md +61 -0
  1467. package/framework/mobile_development/.cospec/skills/vibe-security/references/authentication.md +90 -0
  1468. package/framework/mobile_development/.cospec/skills/vibe-security/references/data-access.md +79 -0
  1469. package/framework/mobile_development/.cospec/skills/vibe-security/references/database-security.md +151 -0
  1470. package/framework/mobile_development/.cospec/skills/vibe-security/references/deployment.md +49 -0
  1471. package/framework/mobile_development/.cospec/skills/vibe-security/references/mobile.md +55 -0
  1472. package/framework/mobile_development/.cospec/skills/vibe-security/references/payments.md +63 -0
  1473. package/framework/mobile_development/.cospec/skills/vibe-security/references/rate-limiting.md +55 -0
  1474. package/framework/mobile_development/.cospec/skills/vibe-security/references/secrets-and-env.md +47 -0
  1475. package/framework/mobile_development/.crush/commands/opsx/ac-lite.md +62 -5
  1476. package/framework/mobile_development/.crush/commands/opsx/ac.md +75 -74
  1477. package/framework/mobile_development/.crush/skills/sync-index/SKILL.md +1 -1
  1478. package/framework/mobile_development/.crush/skills/vibe-security/SKILL.md +122 -0
  1479. package/framework/mobile_development/.crush/skills/vibe-security/agents/openai.yaml +8 -0
  1480. package/framework/mobile_development/.crush/skills/vibe-security/references/ai-integration.md +61 -0
  1481. package/framework/mobile_development/.crush/skills/vibe-security/references/authentication.md +90 -0
  1482. package/framework/mobile_development/.crush/skills/vibe-security/references/data-access.md +79 -0
  1483. package/framework/mobile_development/.crush/skills/vibe-security/references/database-security.md +151 -0
  1484. package/framework/mobile_development/.crush/skills/vibe-security/references/deployment.md +49 -0
  1485. package/framework/mobile_development/.crush/skills/vibe-security/references/mobile.md +55 -0
  1486. package/framework/mobile_development/.crush/skills/vibe-security/references/payments.md +63 -0
  1487. package/framework/mobile_development/.crush/skills/vibe-security/references/rate-limiting.md +55 -0
  1488. package/framework/mobile_development/.crush/skills/vibe-security/references/secrets-and-env.md +47 -0
  1489. package/framework/mobile_development/.cursor/commands/ac-lite.md +62 -5
  1490. package/framework/mobile_development/.cursor/commands/ac.md +75 -74
  1491. package/framework/mobile_development/.cursor/skills/sync-index/SKILL.md +1 -1
  1492. package/framework/mobile_development/.cursor/skills/vibe-security/SKILL.md +122 -0
  1493. package/framework/mobile_development/.cursor/skills/vibe-security/agents/openai.yaml +8 -0
  1494. package/framework/mobile_development/.cursor/skills/vibe-security/references/ai-integration.md +61 -0
  1495. package/framework/mobile_development/.cursor/skills/vibe-security/references/authentication.md +90 -0
  1496. package/framework/mobile_development/.cursor/skills/vibe-security/references/data-access.md +79 -0
  1497. package/framework/mobile_development/.cursor/skills/vibe-security/references/database-security.md +151 -0
  1498. package/framework/mobile_development/.cursor/skills/vibe-security/references/deployment.md +49 -0
  1499. package/framework/mobile_development/.cursor/skills/vibe-security/references/mobile.md +55 -0
  1500. package/framework/mobile_development/.cursor/skills/vibe-security/references/payments.md +63 -0
  1501. package/framework/mobile_development/.cursor/skills/vibe-security/references/rate-limiting.md +55 -0
  1502. package/framework/mobile_development/.cursor/skills/vibe-security/references/secrets-and-env.md +47 -0
  1503. package/framework/mobile_development/.factory/commands/ac-lite.md +62 -5
  1504. package/framework/mobile_development/.factory/commands/ac.md +75 -74
  1505. package/framework/mobile_development/.factory/skills/sync-index/SKILL.md +1 -1
  1506. package/framework/mobile_development/.factory/skills/vibe-security/SKILL.md +122 -0
  1507. package/framework/mobile_development/.factory/skills/vibe-security/agents/openai.yaml +8 -0
  1508. package/framework/mobile_development/.factory/skills/vibe-security/references/ai-integration.md +61 -0
  1509. package/framework/mobile_development/.factory/skills/vibe-security/references/authentication.md +90 -0
  1510. package/framework/mobile_development/.factory/skills/vibe-security/references/data-access.md +79 -0
  1511. package/framework/mobile_development/.factory/skills/vibe-security/references/database-security.md +151 -0
  1512. package/framework/mobile_development/.factory/skills/vibe-security/references/deployment.md +49 -0
  1513. package/framework/mobile_development/.factory/skills/vibe-security/references/mobile.md +55 -0
  1514. package/framework/mobile_development/.factory/skills/vibe-security/references/payments.md +63 -0
  1515. package/framework/mobile_development/.factory/skills/vibe-security/references/rate-limiting.md +55 -0
  1516. package/framework/mobile_development/.factory/skills/vibe-security/references/secrets-and-env.md +47 -0
  1517. package/framework/mobile_development/.gemini/commands/opsx/ac-lite.md +62 -5
  1518. package/framework/mobile_development/.gemini/commands/opsx/ac.md +75 -74
  1519. package/framework/mobile_development/.gemini/skills/sync-index/SKILL.md +1 -1
  1520. package/framework/mobile_development/.gemini/skills/vibe-security/SKILL.md +122 -0
  1521. package/framework/mobile_development/.gemini/skills/vibe-security/agents/openai.yaml +8 -0
  1522. package/framework/mobile_development/.gemini/skills/vibe-security/references/ai-integration.md +61 -0
  1523. package/framework/mobile_development/.gemini/skills/vibe-security/references/authentication.md +90 -0
  1524. package/framework/mobile_development/.gemini/skills/vibe-security/references/data-access.md +79 -0
  1525. package/framework/mobile_development/.gemini/skills/vibe-security/references/database-security.md +151 -0
  1526. package/framework/mobile_development/.gemini/skills/vibe-security/references/deployment.md +49 -0
  1527. package/framework/mobile_development/.gemini/skills/vibe-security/references/mobile.md +55 -0
  1528. package/framework/mobile_development/.gemini/skills/vibe-security/references/payments.md +63 -0
  1529. package/framework/mobile_development/.gemini/skills/vibe-security/references/rate-limiting.md +55 -0
  1530. package/framework/mobile_development/.gemini/skills/vibe-security/references/secrets-and-env.md +47 -0
  1531. package/framework/mobile_development/.github/prompts/ac-lite.md +62 -5
  1532. package/framework/mobile_development/.github/prompts/ac.md +75 -74
  1533. package/framework/mobile_development/.github/skills/sync-index/SKILL.md +1 -1
  1534. package/framework/mobile_development/.github/skills/vibe-security/SKILL.md +122 -0
  1535. package/framework/mobile_development/.github/skills/vibe-security/agents/openai.yaml +8 -0
  1536. package/framework/mobile_development/.github/skills/vibe-security/references/ai-integration.md +61 -0
  1537. package/framework/mobile_development/.github/skills/vibe-security/references/authentication.md +90 -0
  1538. package/framework/mobile_development/.github/skills/vibe-security/references/data-access.md +79 -0
  1539. package/framework/mobile_development/.github/skills/vibe-security/references/database-security.md +151 -0
  1540. package/framework/mobile_development/.github/skills/vibe-security/references/deployment.md +49 -0
  1541. package/framework/mobile_development/.github/skills/vibe-security/references/mobile.md +55 -0
  1542. package/framework/mobile_development/.github/skills/vibe-security/references/payments.md +63 -0
  1543. package/framework/mobile_development/.github/skills/vibe-security/references/rate-limiting.md +55 -0
  1544. package/framework/mobile_development/.github/skills/vibe-security/references/secrets-and-env.md +47 -0
  1545. package/framework/mobile_development/.iflow/commands/ac-lite.md +62 -5
  1546. package/framework/mobile_development/.iflow/commands/ac.md +75 -74
  1547. package/framework/mobile_development/.iflow/skills/sync-index/SKILL.md +1 -1
  1548. package/framework/mobile_development/.iflow/skills/vibe-security/SKILL.md +122 -0
  1549. package/framework/mobile_development/.iflow/skills/vibe-security/agents/openai.yaml +8 -0
  1550. package/framework/mobile_development/.iflow/skills/vibe-security/references/ai-integration.md +61 -0
  1551. package/framework/mobile_development/.iflow/skills/vibe-security/references/authentication.md +90 -0
  1552. package/framework/mobile_development/.iflow/skills/vibe-security/references/data-access.md +79 -0
  1553. package/framework/mobile_development/.iflow/skills/vibe-security/references/database-security.md +151 -0
  1554. package/framework/mobile_development/.iflow/skills/vibe-security/references/deployment.md +49 -0
  1555. package/framework/mobile_development/.iflow/skills/vibe-security/references/mobile.md +55 -0
  1556. package/framework/mobile_development/.iflow/skills/vibe-security/references/payments.md +63 -0
  1557. package/framework/mobile_development/.iflow/skills/vibe-security/references/rate-limiting.md +55 -0
  1558. package/framework/mobile_development/.iflow/skills/vibe-security/references/secrets-and-env.md +47 -0
  1559. package/framework/mobile_development/.kilocode/skills/sync-index/SKILL.md +1 -1
  1560. package/framework/mobile_development/.kilocode/skills/vibe-security/SKILL.md +122 -0
  1561. package/framework/mobile_development/.kilocode/skills/vibe-security/agents/openai.yaml +8 -0
  1562. package/framework/mobile_development/.kilocode/skills/vibe-security/references/ai-integration.md +61 -0
  1563. package/framework/mobile_development/.kilocode/skills/vibe-security/references/authentication.md +90 -0
  1564. package/framework/mobile_development/.kilocode/skills/vibe-security/references/data-access.md +79 -0
  1565. package/framework/mobile_development/.kilocode/skills/vibe-security/references/database-security.md +151 -0
  1566. package/framework/mobile_development/.kilocode/skills/vibe-security/references/deployment.md +49 -0
  1567. package/framework/mobile_development/.kilocode/skills/vibe-security/references/mobile.md +55 -0
  1568. package/framework/mobile_development/.kilocode/skills/vibe-security/references/payments.md +63 -0
  1569. package/framework/mobile_development/.kilocode/skills/vibe-security/references/rate-limiting.md +55 -0
  1570. package/framework/mobile_development/.kilocode/skills/vibe-security/references/secrets-and-env.md +47 -0
  1571. package/framework/mobile_development/.kilocode/workflows/ac-lite.md +62 -5
  1572. package/framework/mobile_development/.kilocode/workflows/ac.md +75 -74
  1573. package/framework/mobile_development/.kimi/skills/sync-index/SKILL.md +1 -1
  1574. package/framework/mobile_development/.kimi/skills/vibe-security/SKILL.md +122 -0
  1575. package/framework/mobile_development/.kimi/skills/vibe-security/agents/openai.yaml +8 -0
  1576. package/framework/mobile_development/.kimi/skills/vibe-security/references/ai-integration.md +61 -0
  1577. package/framework/mobile_development/.kimi/skills/vibe-security/references/authentication.md +90 -0
  1578. package/framework/mobile_development/.kimi/skills/vibe-security/references/data-access.md +79 -0
  1579. package/framework/mobile_development/.kimi/skills/vibe-security/references/database-security.md +151 -0
  1580. package/framework/mobile_development/.kimi/skills/vibe-security/references/deployment.md +49 -0
  1581. package/framework/mobile_development/.kimi/skills/vibe-security/references/mobile.md +55 -0
  1582. package/framework/mobile_development/.kimi/skills/vibe-security/references/payments.md +63 -0
  1583. package/framework/mobile_development/.kimi/skills/vibe-security/references/rate-limiting.md +55 -0
  1584. package/framework/mobile_development/.kimi/skills/vibe-security/references/secrets-and-env.md +47 -0
  1585. package/framework/mobile_development/.kimi/workflows/ac-lite.md +62 -5
  1586. package/framework/mobile_development/.kimi/workflows/ac.md +75 -74
  1587. package/framework/mobile_development/.opencode/command/ac-lite.md +62 -5
  1588. package/framework/mobile_development/.opencode/command/ac.md +75 -74
  1589. package/framework/mobile_development/.opencode/skills/sync-index/SKILL.md +1 -1
  1590. package/framework/mobile_development/.opencode/skills/vibe-security/SKILL.md +122 -0
  1591. package/framework/mobile_development/.opencode/skills/vibe-security/agents/openai.yaml +8 -0
  1592. package/framework/mobile_development/.opencode/skills/vibe-security/references/ai-integration.md +61 -0
  1593. package/framework/mobile_development/.opencode/skills/vibe-security/references/authentication.md +90 -0
  1594. package/framework/mobile_development/.opencode/skills/vibe-security/references/data-access.md +79 -0
  1595. package/framework/mobile_development/.opencode/skills/vibe-security/references/database-security.md +151 -0
  1596. package/framework/mobile_development/.opencode/skills/vibe-security/references/deployment.md +49 -0
  1597. package/framework/mobile_development/.opencode/skills/vibe-security/references/mobile.md +55 -0
  1598. package/framework/mobile_development/.opencode/skills/vibe-security/references/payments.md +63 -0
  1599. package/framework/mobile_development/.opencode/skills/vibe-security/references/rate-limiting.md +55 -0
  1600. package/framework/mobile_development/.opencode/skills/vibe-security/references/secrets-and-env.md +47 -0
  1601. package/framework/mobile_development/.qoder/commands/opsx/ac-lite.md +62 -5
  1602. package/framework/mobile_development/.qoder/commands/opsx/ac.md +75 -74
  1603. package/framework/mobile_development/.qoder/skills/sync-index/SKILL.md +1 -1
  1604. package/framework/mobile_development/.qoder/skills/vibe-security/SKILL.md +122 -0
  1605. package/framework/mobile_development/.qoder/skills/vibe-security/agents/openai.yaml +8 -0
  1606. package/framework/mobile_development/.qoder/skills/vibe-security/references/ai-integration.md +61 -0
  1607. package/framework/mobile_development/.qoder/skills/vibe-security/references/authentication.md +90 -0
  1608. package/framework/mobile_development/.qoder/skills/vibe-security/references/data-access.md +79 -0
  1609. package/framework/mobile_development/.qoder/skills/vibe-security/references/database-security.md +151 -0
  1610. package/framework/mobile_development/.qoder/skills/vibe-security/references/deployment.md +49 -0
  1611. package/framework/mobile_development/.qoder/skills/vibe-security/references/mobile.md +55 -0
  1612. package/framework/mobile_development/.qoder/skills/vibe-security/references/payments.md +63 -0
  1613. package/framework/mobile_development/.qoder/skills/vibe-security/references/rate-limiting.md +55 -0
  1614. package/framework/mobile_development/.qoder/skills/vibe-security/references/secrets-and-env.md +47 -0
  1615. package/framework/mobile_development/.qwen/commands/ac-lite.md +62 -5
  1616. package/framework/mobile_development/.qwen/commands/ac.md +75 -74
  1617. package/framework/mobile_development/.qwen/skills/sync-index/SKILL.md +1 -1
  1618. package/framework/mobile_development/.qwen/skills/vibe-security/SKILL.md +122 -0
  1619. package/framework/mobile_development/.qwen/skills/vibe-security/agents/openai.yaml +8 -0
  1620. package/framework/mobile_development/.qwen/skills/vibe-security/references/ai-integration.md +61 -0
  1621. package/framework/mobile_development/.qwen/skills/vibe-security/references/authentication.md +90 -0
  1622. package/framework/mobile_development/.qwen/skills/vibe-security/references/data-access.md +79 -0
  1623. package/framework/mobile_development/.qwen/skills/vibe-security/references/database-security.md +151 -0
  1624. package/framework/mobile_development/.qwen/skills/vibe-security/references/deployment.md +49 -0
  1625. package/framework/mobile_development/.qwen/skills/vibe-security/references/mobile.md +55 -0
  1626. package/framework/mobile_development/.qwen/skills/vibe-security/references/payments.md +63 -0
  1627. package/framework/mobile_development/.qwen/skills/vibe-security/references/rate-limiting.md +55 -0
  1628. package/framework/mobile_development/.qwen/skills/vibe-security/references/secrets-and-env.md +47 -0
  1629. package/framework/mobile_development/.roo/commands/ac-lite.md +62 -5
  1630. package/framework/mobile_development/.roo/commands/ac.md +75 -74
  1631. package/framework/mobile_development/.roo/skills/sync-index/SKILL.md +1 -1
  1632. package/framework/mobile_development/.roo/skills/vibe-security/SKILL.md +122 -0
  1633. package/framework/mobile_development/.roo/skills/vibe-security/agents/openai.yaml +8 -0
  1634. package/framework/mobile_development/.roo/skills/vibe-security/references/ai-integration.md +61 -0
  1635. package/framework/mobile_development/.roo/skills/vibe-security/references/authentication.md +90 -0
  1636. package/framework/mobile_development/.roo/skills/vibe-security/references/data-access.md +79 -0
  1637. package/framework/mobile_development/.roo/skills/vibe-security/references/database-security.md +151 -0
  1638. package/framework/mobile_development/.roo/skills/vibe-security/references/deployment.md +49 -0
  1639. package/framework/mobile_development/.roo/skills/vibe-security/references/mobile.md +55 -0
  1640. package/framework/mobile_development/.roo/skills/vibe-security/references/payments.md +63 -0
  1641. package/framework/mobile_development/.roo/skills/vibe-security/references/rate-limiting.md +55 -0
  1642. package/framework/mobile_development/.roo/skills/vibe-security/references/secrets-and-env.md +47 -0
  1643. package/framework/mobile_development/.trae/skills/sync-index/SKILL.md +1 -1
  1644. package/framework/mobile_development/.trae/skills/vibe-security/SKILL.md +122 -0
  1645. package/framework/mobile_development/.trae/skills/vibe-security/agents/openai.yaml +8 -0
  1646. package/framework/mobile_development/.trae/skills/vibe-security/references/ai-integration.md +61 -0
  1647. package/framework/mobile_development/.trae/skills/vibe-security/references/authentication.md +90 -0
  1648. package/framework/mobile_development/.trae/skills/vibe-security/references/data-access.md +79 -0
  1649. package/framework/mobile_development/.trae/skills/vibe-security/references/database-security.md +151 -0
  1650. package/framework/mobile_development/.trae/skills/vibe-security/references/deployment.md +49 -0
  1651. package/framework/mobile_development/.trae/skills/vibe-security/references/mobile.md +55 -0
  1652. package/framework/mobile_development/.trae/skills/vibe-security/references/payments.md +63 -0
  1653. package/framework/mobile_development/.trae/skills/vibe-security/references/rate-limiting.md +55 -0
  1654. package/framework/mobile_development/.trae/skills/vibe-security/references/secrets-and-env.md +47 -0
  1655. package/framework/mobile_development/.windsurf/skills/sync-index/SKILL.md +1 -1
  1656. package/framework/mobile_development/.windsurf/skills/vibe-security/SKILL.md +122 -0
  1657. package/framework/mobile_development/.windsurf/skills/vibe-security/agents/openai.yaml +8 -0
  1658. package/framework/mobile_development/.windsurf/skills/vibe-security/references/ai-integration.md +61 -0
  1659. package/framework/mobile_development/.windsurf/skills/vibe-security/references/authentication.md +90 -0
  1660. package/framework/mobile_development/.windsurf/skills/vibe-security/references/data-access.md +79 -0
  1661. package/framework/mobile_development/.windsurf/skills/vibe-security/references/database-security.md +151 -0
  1662. package/framework/mobile_development/.windsurf/skills/vibe-security/references/deployment.md +49 -0
  1663. package/framework/mobile_development/.windsurf/skills/vibe-security/references/mobile.md +55 -0
  1664. package/framework/mobile_development/.windsurf/skills/vibe-security/references/payments.md +63 -0
  1665. package/framework/mobile_development/.windsurf/skills/vibe-security/references/rate-limiting.md +55 -0
  1666. package/framework/mobile_development/.windsurf/skills/vibe-security/references/secrets-and-env.md +47 -0
  1667. package/framework/mobile_development/.windsurf/workflows/ac-lite.md +62 -5
  1668. package/framework/mobile_development/.windsurf/workflows/ac.md +75 -74
  1669. package/framework/mobile_development/AGENTS.md +93 -11
  1670. package/framework/mobile_development/CLAUDE.md +93 -11
  1671. package/framework/mobile_development/GEMINI.md +93 -11
  1672. package/framework/mobile_development/copilot-instructions.md +93 -11
  1673. package/framework/new_project/.agents/skills/acfm-memory/SKILL.md +312 -0
  1674. package/framework/new_project/.agents/skills/acfm-spec-workflow/SKILL.md +269 -0
  1675. package/framework/new_project/.agents/skills/brainstorming/SKILL.md +282 -0
  1676. package/framework/new_project/.agents/skills/changelog-generator/SKILL.md +104 -0
  1677. package/framework/new_project/.agents/skills/ci-deploy/SKILL.md +501 -0
  1678. package/framework/new_project/.agents/skills/code-maintainability/SKILL.md +1108 -0
  1679. package/framework/new_project/.agents/skills/code-review/SKILL.md +250 -0
  1680. package/framework/new_project/.agents/skills/context-synthesizer/SKILL.md +322 -0
  1681. package/framework/new_project/.agents/skills/error-handling-patterns/SKILL.md +641 -0
  1682. package/framework/new_project/.agents/skills/microtask-decomposition/SKILL.md +368 -0
  1683. package/framework/new_project/.agents/skills/openspec-apply-change/SKILL.md +172 -0
  1684. package/framework/new_project/.agents/skills/openspec-archive-change/SKILL.md +130 -0
  1685. package/framework/new_project/.agents/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  1686. package/framework/new_project/.agents/skills/openspec-continue-change/SKILL.md +134 -0
  1687. package/framework/new_project/.agents/skills/openspec-explore/SKILL.md +306 -0
  1688. package/framework/new_project/.agents/skills/openspec-ff-change/SKILL.md +117 -0
  1689. package/framework/new_project/.agents/skills/openspec-new-change/SKILL.md +90 -0
  1690. package/framework/new_project/.agents/skills/openspec-onboard/SKILL.md +529 -0
  1691. package/framework/new_project/.agents/skills/openspec-sync-specs/SKILL.md +154 -0
  1692. package/framework/new_project/.agents/skills/openspec-verify-change/SKILL.md +184 -0
  1693. package/framework/new_project/.agents/skills/performance-optimizer/SKILL.md +43 -0
  1694. package/framework/new_project/.agents/skills/project-constitution/SKILL.md +66 -0
  1695. package/framework/new_project/.agents/skills/project-index/SKILL.md +234 -0
  1696. package/framework/new_project/.agents/skills/project-index/scripts/scan_codebase.py +47 -0
  1697. package/framework/new_project/.agents/skills/project-index/templates/agent-template.md +18 -0
  1698. package/framework/new_project/.agents/skills/project-index/templates/skill-template.md +20 -0
  1699. package/framework/new_project/.agents/skills/requirement-checklist/SKILL.md +90 -0
  1700. package/framework/new_project/.agents/skills/research-retrieval/SKILL.md +357 -0
  1701. package/framework/new_project/.agents/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  1702. package/framework/new_project/.agents/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  1703. package/framework/new_project/.agents/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  1704. package/framework/new_project/.agents/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  1705. package/framework/new_project/.agents/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  1706. package/framework/new_project/.agents/skills/skill-writer/SKILL.md +385 -0
  1707. package/framework/new_project/.agents/skills/spec-analysis/SKILL.md +65 -0
  1708. package/framework/new_project/.agents/skills/spec-clarification/SKILL.md +73 -0
  1709. package/framework/new_project/.agents/skills/sync-index/SKILL.md +35 -0
  1710. package/framework/new_project/.agents/skills/systematic-debugging/SKILL.md +296 -0
  1711. package/framework/new_project/.agents/skills/test-generator/SKILL.md +41 -0
  1712. package/framework/new_project/.agents/skills/testing-qa/SKILL.md +249 -0
  1713. package/framework/new_project/.agents/skills/vibe-security/SKILL.md +122 -0
  1714. package/framework/new_project/.agents/skills/vibe-security/agents/openai.yaml +8 -0
  1715. package/framework/new_project/.agents/skills/vibe-security/references/ai-integration.md +61 -0
  1716. package/framework/new_project/.agents/skills/vibe-security/references/authentication.md +90 -0
  1717. package/framework/new_project/.agents/skills/vibe-security/references/data-access.md +79 -0
  1718. package/framework/new_project/.agents/skills/vibe-security/references/database-security.md +151 -0
  1719. package/framework/new_project/.agents/skills/vibe-security/references/deployment.md +49 -0
  1720. package/framework/new_project/.agents/skills/vibe-security/references/mobile.md +55 -0
  1721. package/framework/new_project/.agents/skills/vibe-security/references/payments.md +63 -0
  1722. package/framework/new_project/.agents/skills/vibe-security/references/rate-limiting.md +55 -0
  1723. package/framework/new_project/.agents/skills/vibe-security/references/secrets-and-env.md +47 -0
  1724. package/framework/new_project/.agents/workflows/ac-lite.md +295 -0
  1725. package/framework/new_project/.agents/workflows/ac.md +585 -0
  1726. package/framework/new_project/.agents/workflows/opsx-apply.md +149 -0
  1727. package/framework/new_project/.agents/workflows/opsx-archive.md +154 -0
  1728. package/framework/new_project/.agents/workflows/opsx-bulk-archive.md +239 -0
  1729. package/framework/new_project/.agents/workflows/opsx-continue.md +111 -0
  1730. package/framework/new_project/.agents/workflows/opsx-explore.md +171 -0
  1731. package/framework/new_project/.agents/workflows/opsx-ff.md +91 -0
  1732. package/framework/new_project/.agents/workflows/opsx-new.md +66 -0
  1733. package/framework/new_project/.agents/workflows/opsx-onboard.md +522 -0
  1734. package/framework/new_project/.agents/workflows/opsx-sync.md +131 -0
  1735. package/framework/new_project/.agents/workflows/opsx-verify.md +161 -0
  1736. package/framework/new_project/.amazonq/prompts/ac-lite.md +61 -5
  1737. package/framework/new_project/.amazonq/prompts/ac.md +75 -37
  1738. package/framework/new_project/.amazonq/skills/sync-index/SKILL.md +1 -1
  1739. package/framework/new_project/.amazonq/skills/vibe-security/SKILL.md +122 -0
  1740. package/framework/new_project/.amazonq/skills/vibe-security/agents/openai.yaml +8 -0
  1741. package/framework/new_project/.amazonq/skills/vibe-security/references/ai-integration.md +61 -0
  1742. package/framework/new_project/.amazonq/skills/vibe-security/references/authentication.md +90 -0
  1743. package/framework/new_project/.amazonq/skills/vibe-security/references/data-access.md +79 -0
  1744. package/framework/new_project/.amazonq/skills/vibe-security/references/database-security.md +151 -0
  1745. package/framework/new_project/.amazonq/skills/vibe-security/references/deployment.md +49 -0
  1746. package/framework/new_project/.amazonq/skills/vibe-security/references/mobile.md +55 -0
  1747. package/framework/new_project/.amazonq/skills/vibe-security/references/payments.md +63 -0
  1748. package/framework/new_project/.amazonq/skills/vibe-security/references/rate-limiting.md +55 -0
  1749. package/framework/new_project/.amazonq/skills/vibe-security/references/secrets-and-env.md +47 -0
  1750. package/framework/new_project/.augment/commands/ac-lite.md +61 -5
  1751. package/framework/new_project/.augment/commands/ac.md +75 -37
  1752. package/framework/new_project/.augment/skills/sync-index/SKILL.md +1 -1
  1753. package/framework/new_project/.augment/skills/vibe-security/SKILL.md +122 -0
  1754. package/framework/new_project/.augment/skills/vibe-security/agents/openai.yaml +8 -0
  1755. package/framework/new_project/.augment/skills/vibe-security/references/ai-integration.md +61 -0
  1756. package/framework/new_project/.augment/skills/vibe-security/references/authentication.md +90 -0
  1757. package/framework/new_project/.augment/skills/vibe-security/references/data-access.md +79 -0
  1758. package/framework/new_project/.augment/skills/vibe-security/references/database-security.md +151 -0
  1759. package/framework/new_project/.augment/skills/vibe-security/references/deployment.md +49 -0
  1760. package/framework/new_project/.augment/skills/vibe-security/references/mobile.md +55 -0
  1761. package/framework/new_project/.augment/skills/vibe-security/references/payments.md +63 -0
  1762. package/framework/new_project/.augment/skills/vibe-security/references/rate-limiting.md +55 -0
  1763. package/framework/new_project/.augment/skills/vibe-security/references/secrets-and-env.md +47 -0
  1764. package/framework/new_project/.claude/commands/opsx/ac-lite.md +61 -5
  1765. package/framework/new_project/.claude/commands/opsx/ac.md +75 -37
  1766. package/framework/new_project/.claude/skills/sync-index/SKILL.md +1 -1
  1767. package/framework/new_project/.claude/skills/vibe-security/SKILL.md +122 -0
  1768. package/framework/new_project/.claude/skills/vibe-security/agents/openai.yaml +8 -0
  1769. package/framework/new_project/.claude/skills/vibe-security/references/ai-integration.md +61 -0
  1770. package/framework/new_project/.claude/skills/vibe-security/references/authentication.md +90 -0
  1771. package/framework/new_project/.claude/skills/vibe-security/references/data-access.md +79 -0
  1772. package/framework/new_project/.claude/skills/vibe-security/references/database-security.md +151 -0
  1773. package/framework/new_project/.claude/skills/vibe-security/references/deployment.md +49 -0
  1774. package/framework/new_project/.claude/skills/vibe-security/references/mobile.md +55 -0
  1775. package/framework/new_project/.claude/skills/vibe-security/references/payments.md +63 -0
  1776. package/framework/new_project/.claude/skills/vibe-security/references/rate-limiting.md +55 -0
  1777. package/framework/new_project/.claude/skills/vibe-security/references/secrets-and-env.md +47 -0
  1778. package/framework/new_project/.cline/commands/opsx/ac-lite.md +61 -5
  1779. package/framework/new_project/.cline/commands/opsx/ac.md +75 -37
  1780. package/framework/new_project/.cline/skills/sync-index/SKILL.md +1 -1
  1781. package/framework/new_project/.cline/skills/vibe-security/SKILL.md +122 -0
  1782. package/framework/new_project/.cline/skills/vibe-security/agents/openai.yaml +8 -0
  1783. package/framework/new_project/.cline/skills/vibe-security/references/ai-integration.md +61 -0
  1784. package/framework/new_project/.cline/skills/vibe-security/references/authentication.md +90 -0
  1785. package/framework/new_project/.cline/skills/vibe-security/references/data-access.md +79 -0
  1786. package/framework/new_project/.cline/skills/vibe-security/references/database-security.md +151 -0
  1787. package/framework/new_project/.cline/skills/vibe-security/references/deployment.md +49 -0
  1788. package/framework/new_project/.cline/skills/vibe-security/references/mobile.md +55 -0
  1789. package/framework/new_project/.cline/skills/vibe-security/references/payments.md +63 -0
  1790. package/framework/new_project/.cline/skills/vibe-security/references/rate-limiting.md +55 -0
  1791. package/framework/new_project/.cline/skills/vibe-security/references/secrets-and-env.md +47 -0
  1792. package/framework/new_project/.clinerules/skills/sync-index/SKILL.md +1 -1
  1793. package/framework/new_project/.clinerules/skills/vibe-security/SKILL.md +122 -0
  1794. package/framework/new_project/.clinerules/skills/vibe-security/agents/openai.yaml +8 -0
  1795. package/framework/new_project/.clinerules/skills/vibe-security/references/ai-integration.md +61 -0
  1796. package/framework/new_project/.clinerules/skills/vibe-security/references/authentication.md +90 -0
  1797. package/framework/new_project/.clinerules/skills/vibe-security/references/data-access.md +79 -0
  1798. package/framework/new_project/.clinerules/skills/vibe-security/references/database-security.md +151 -0
  1799. package/framework/new_project/.clinerules/skills/vibe-security/references/deployment.md +49 -0
  1800. package/framework/new_project/.clinerules/skills/vibe-security/references/mobile.md +55 -0
  1801. package/framework/new_project/.clinerules/skills/vibe-security/references/payments.md +63 -0
  1802. package/framework/new_project/.clinerules/skills/vibe-security/references/rate-limiting.md +55 -0
  1803. package/framework/new_project/.clinerules/skills/vibe-security/references/secrets-and-env.md +47 -0
  1804. package/framework/new_project/.clinerules/workflows/ac-lite.md +61 -5
  1805. package/framework/new_project/.clinerules/workflows/ac.md +75 -37
  1806. package/framework/new_project/.codebuddy/commands/opsx/ac-lite.md +61 -5
  1807. package/framework/new_project/.codebuddy/commands/opsx/ac.md +75 -37
  1808. package/framework/new_project/.codebuddy/skills/sync-index/SKILL.md +1 -1
  1809. package/framework/new_project/.codebuddy/skills/vibe-security/SKILL.md +122 -0
  1810. package/framework/new_project/.codebuddy/skills/vibe-security/agents/openai.yaml +8 -0
  1811. package/framework/new_project/.codebuddy/skills/vibe-security/references/ai-integration.md +61 -0
  1812. package/framework/new_project/.codebuddy/skills/vibe-security/references/authentication.md +90 -0
  1813. package/framework/new_project/.codebuddy/skills/vibe-security/references/data-access.md +79 -0
  1814. package/framework/new_project/.codebuddy/skills/vibe-security/references/database-security.md +151 -0
  1815. package/framework/new_project/.codebuddy/skills/vibe-security/references/deployment.md +49 -0
  1816. package/framework/new_project/.codebuddy/skills/vibe-security/references/mobile.md +55 -0
  1817. package/framework/new_project/.codebuddy/skills/vibe-security/references/payments.md +63 -0
  1818. package/framework/new_project/.codebuddy/skills/vibe-security/references/rate-limiting.md +55 -0
  1819. package/framework/new_project/.codebuddy/skills/vibe-security/references/secrets-and-env.md +47 -0
  1820. package/framework/new_project/.codex/skills/sync-index/SKILL.md +1 -1
  1821. package/framework/new_project/.codex/skills/vibe-security/SKILL.md +122 -0
  1822. package/framework/new_project/.codex/skills/vibe-security/agents/openai.yaml +8 -0
  1823. package/framework/new_project/.codex/skills/vibe-security/references/ai-integration.md +61 -0
  1824. package/framework/new_project/.codex/skills/vibe-security/references/authentication.md +90 -0
  1825. package/framework/new_project/.codex/skills/vibe-security/references/data-access.md +79 -0
  1826. package/framework/new_project/.codex/skills/vibe-security/references/database-security.md +151 -0
  1827. package/framework/new_project/.codex/skills/vibe-security/references/deployment.md +49 -0
  1828. package/framework/new_project/.codex/skills/vibe-security/references/mobile.md +55 -0
  1829. package/framework/new_project/.codex/skills/vibe-security/references/payments.md +63 -0
  1830. package/framework/new_project/.codex/skills/vibe-security/references/rate-limiting.md +55 -0
  1831. package/framework/new_project/.codex/skills/vibe-security/references/secrets-and-env.md +47 -0
  1832. package/framework/new_project/.continue/prompts/ac-lite.md +61 -5
  1833. package/framework/new_project/.continue/prompts/ac.md +75 -37
  1834. package/framework/new_project/.continue/skills/sync-index/SKILL.md +1 -1
  1835. package/framework/new_project/.continue/skills/vibe-security/SKILL.md +122 -0
  1836. package/framework/new_project/.continue/skills/vibe-security/agents/openai.yaml +8 -0
  1837. package/framework/new_project/.continue/skills/vibe-security/references/ai-integration.md +61 -0
  1838. package/framework/new_project/.continue/skills/vibe-security/references/authentication.md +90 -0
  1839. package/framework/new_project/.continue/skills/vibe-security/references/data-access.md +79 -0
  1840. package/framework/new_project/.continue/skills/vibe-security/references/database-security.md +151 -0
  1841. package/framework/new_project/.continue/skills/vibe-security/references/deployment.md +49 -0
  1842. package/framework/new_project/.continue/skills/vibe-security/references/mobile.md +55 -0
  1843. package/framework/new_project/.continue/skills/vibe-security/references/payments.md +63 -0
  1844. package/framework/new_project/.continue/skills/vibe-security/references/rate-limiting.md +55 -0
  1845. package/framework/new_project/.continue/skills/vibe-security/references/secrets-and-env.md +47 -0
  1846. package/framework/new_project/.cospec/openspec/commands/ac-lite.md +61 -5
  1847. package/framework/new_project/.cospec/openspec/commands/ac.md +75 -37
  1848. package/framework/new_project/.cospec/skills/sync-index/SKILL.md +1 -1
  1849. package/framework/new_project/.cospec/skills/vibe-security/SKILL.md +122 -0
  1850. package/framework/new_project/.cospec/skills/vibe-security/agents/openai.yaml +8 -0
  1851. package/framework/new_project/.cospec/skills/vibe-security/references/ai-integration.md +61 -0
  1852. package/framework/new_project/.cospec/skills/vibe-security/references/authentication.md +90 -0
  1853. package/framework/new_project/.cospec/skills/vibe-security/references/data-access.md +79 -0
  1854. package/framework/new_project/.cospec/skills/vibe-security/references/database-security.md +151 -0
  1855. package/framework/new_project/.cospec/skills/vibe-security/references/deployment.md +49 -0
  1856. package/framework/new_project/.cospec/skills/vibe-security/references/mobile.md +55 -0
  1857. package/framework/new_project/.cospec/skills/vibe-security/references/payments.md +63 -0
  1858. package/framework/new_project/.cospec/skills/vibe-security/references/rate-limiting.md +55 -0
  1859. package/framework/new_project/.cospec/skills/vibe-security/references/secrets-and-env.md +47 -0
  1860. package/framework/new_project/.crush/commands/opsx/ac-lite.md +61 -5
  1861. package/framework/new_project/.crush/commands/opsx/ac.md +75 -37
  1862. package/framework/new_project/.crush/skills/sync-index/SKILL.md +1 -1
  1863. package/framework/new_project/.crush/skills/vibe-security/SKILL.md +122 -0
  1864. package/framework/new_project/.crush/skills/vibe-security/agents/openai.yaml +8 -0
  1865. package/framework/new_project/.crush/skills/vibe-security/references/ai-integration.md +61 -0
  1866. package/framework/new_project/.crush/skills/vibe-security/references/authentication.md +90 -0
  1867. package/framework/new_project/.crush/skills/vibe-security/references/data-access.md +79 -0
  1868. package/framework/new_project/.crush/skills/vibe-security/references/database-security.md +151 -0
  1869. package/framework/new_project/.crush/skills/vibe-security/references/deployment.md +49 -0
  1870. package/framework/new_project/.crush/skills/vibe-security/references/mobile.md +55 -0
  1871. package/framework/new_project/.crush/skills/vibe-security/references/payments.md +63 -0
  1872. package/framework/new_project/.crush/skills/vibe-security/references/rate-limiting.md +55 -0
  1873. package/framework/new_project/.crush/skills/vibe-security/references/secrets-and-env.md +47 -0
  1874. package/framework/new_project/.cursor/commands/ac-lite.md +61 -5
  1875. package/framework/new_project/.cursor/commands/ac.md +75 -37
  1876. package/framework/new_project/.cursor/skills/sync-index/SKILL.md +1 -1
  1877. package/framework/new_project/.cursor/skills/vibe-security/SKILL.md +122 -0
  1878. package/framework/new_project/.cursor/skills/vibe-security/agents/openai.yaml +8 -0
  1879. package/framework/new_project/.cursor/skills/vibe-security/references/ai-integration.md +61 -0
  1880. package/framework/new_project/.cursor/skills/vibe-security/references/authentication.md +90 -0
  1881. package/framework/new_project/.cursor/skills/vibe-security/references/data-access.md +79 -0
  1882. package/framework/new_project/.cursor/skills/vibe-security/references/database-security.md +151 -0
  1883. package/framework/new_project/.cursor/skills/vibe-security/references/deployment.md +49 -0
  1884. package/framework/new_project/.cursor/skills/vibe-security/references/mobile.md +55 -0
  1885. package/framework/new_project/.cursor/skills/vibe-security/references/payments.md +63 -0
  1886. package/framework/new_project/.cursor/skills/vibe-security/references/rate-limiting.md +55 -0
  1887. package/framework/new_project/.cursor/skills/vibe-security/references/secrets-and-env.md +47 -0
  1888. package/framework/new_project/.factory/commands/ac-lite.md +61 -5
  1889. package/framework/new_project/.factory/commands/ac.md +75 -37
  1890. package/framework/new_project/.factory/skills/sync-index/SKILL.md +1 -1
  1891. package/framework/new_project/.factory/skills/vibe-security/SKILL.md +122 -0
  1892. package/framework/new_project/.factory/skills/vibe-security/agents/openai.yaml +8 -0
  1893. package/framework/new_project/.factory/skills/vibe-security/references/ai-integration.md +61 -0
  1894. package/framework/new_project/.factory/skills/vibe-security/references/authentication.md +90 -0
  1895. package/framework/new_project/.factory/skills/vibe-security/references/data-access.md +79 -0
  1896. package/framework/new_project/.factory/skills/vibe-security/references/database-security.md +151 -0
  1897. package/framework/new_project/.factory/skills/vibe-security/references/deployment.md +49 -0
  1898. package/framework/new_project/.factory/skills/vibe-security/references/mobile.md +55 -0
  1899. package/framework/new_project/.factory/skills/vibe-security/references/payments.md +63 -0
  1900. package/framework/new_project/.factory/skills/vibe-security/references/rate-limiting.md +55 -0
  1901. package/framework/new_project/.factory/skills/vibe-security/references/secrets-and-env.md +47 -0
  1902. package/framework/new_project/.gemini/commands/opsx/ac-lite.md +61 -5
  1903. package/framework/new_project/.gemini/commands/opsx/ac.md +75 -37
  1904. package/framework/new_project/.gemini/skills/sync-index/SKILL.md +1 -1
  1905. package/framework/new_project/.gemini/skills/vibe-security/SKILL.md +122 -0
  1906. package/framework/new_project/.gemini/skills/vibe-security/agents/openai.yaml +8 -0
  1907. package/framework/new_project/.gemini/skills/vibe-security/references/ai-integration.md +61 -0
  1908. package/framework/new_project/.gemini/skills/vibe-security/references/authentication.md +90 -0
  1909. package/framework/new_project/.gemini/skills/vibe-security/references/data-access.md +79 -0
  1910. package/framework/new_project/.gemini/skills/vibe-security/references/database-security.md +151 -0
  1911. package/framework/new_project/.gemini/skills/vibe-security/references/deployment.md +49 -0
  1912. package/framework/new_project/.gemini/skills/vibe-security/references/mobile.md +55 -0
  1913. package/framework/new_project/.gemini/skills/vibe-security/references/payments.md +63 -0
  1914. package/framework/new_project/.gemini/skills/vibe-security/references/rate-limiting.md +55 -0
  1915. package/framework/new_project/.gemini/skills/vibe-security/references/secrets-and-env.md +47 -0
  1916. package/framework/new_project/.github/prompts/ac-lite.md +61 -5
  1917. package/framework/new_project/.github/prompts/ac.md +75 -37
  1918. package/framework/new_project/.github/skills/sync-index/SKILL.md +1 -1
  1919. package/framework/new_project/.github/skills/vibe-security/SKILL.md +122 -0
  1920. package/framework/new_project/.github/skills/vibe-security/agents/openai.yaml +8 -0
  1921. package/framework/new_project/.github/skills/vibe-security/references/ai-integration.md +61 -0
  1922. package/framework/new_project/.github/skills/vibe-security/references/authentication.md +90 -0
  1923. package/framework/new_project/.github/skills/vibe-security/references/data-access.md +79 -0
  1924. package/framework/new_project/.github/skills/vibe-security/references/database-security.md +151 -0
  1925. package/framework/new_project/.github/skills/vibe-security/references/deployment.md +49 -0
  1926. package/framework/new_project/.github/skills/vibe-security/references/mobile.md +55 -0
  1927. package/framework/new_project/.github/skills/vibe-security/references/payments.md +63 -0
  1928. package/framework/new_project/.github/skills/vibe-security/references/rate-limiting.md +55 -0
  1929. package/framework/new_project/.github/skills/vibe-security/references/secrets-and-env.md +47 -0
  1930. package/framework/new_project/.iflow/commands/ac-lite.md +61 -5
  1931. package/framework/new_project/.iflow/commands/ac.md +75 -37
  1932. package/framework/new_project/.iflow/skills/sync-index/SKILL.md +1 -1
  1933. package/framework/new_project/.iflow/skills/vibe-security/SKILL.md +122 -0
  1934. package/framework/new_project/.iflow/skills/vibe-security/agents/openai.yaml +8 -0
  1935. package/framework/new_project/.iflow/skills/vibe-security/references/ai-integration.md +61 -0
  1936. package/framework/new_project/.iflow/skills/vibe-security/references/authentication.md +90 -0
  1937. package/framework/new_project/.iflow/skills/vibe-security/references/data-access.md +79 -0
  1938. package/framework/new_project/.iflow/skills/vibe-security/references/database-security.md +151 -0
  1939. package/framework/new_project/.iflow/skills/vibe-security/references/deployment.md +49 -0
  1940. package/framework/new_project/.iflow/skills/vibe-security/references/mobile.md +55 -0
  1941. package/framework/new_project/.iflow/skills/vibe-security/references/payments.md +63 -0
  1942. package/framework/new_project/.iflow/skills/vibe-security/references/rate-limiting.md +55 -0
  1943. package/framework/new_project/.iflow/skills/vibe-security/references/secrets-and-env.md +47 -0
  1944. package/framework/new_project/.kilocode/skills/sync-index/SKILL.md +1 -1
  1945. package/framework/new_project/.kilocode/skills/vibe-security/SKILL.md +122 -0
  1946. package/framework/new_project/.kilocode/skills/vibe-security/agents/openai.yaml +8 -0
  1947. package/framework/new_project/.kilocode/skills/vibe-security/references/ai-integration.md +61 -0
  1948. package/framework/new_project/.kilocode/skills/vibe-security/references/authentication.md +90 -0
  1949. package/framework/new_project/.kilocode/skills/vibe-security/references/data-access.md +79 -0
  1950. package/framework/new_project/.kilocode/skills/vibe-security/references/database-security.md +151 -0
  1951. package/framework/new_project/.kilocode/skills/vibe-security/references/deployment.md +49 -0
  1952. package/framework/new_project/.kilocode/skills/vibe-security/references/mobile.md +55 -0
  1953. package/framework/new_project/.kilocode/skills/vibe-security/references/payments.md +63 -0
  1954. package/framework/new_project/.kilocode/skills/vibe-security/references/rate-limiting.md +55 -0
  1955. package/framework/new_project/.kilocode/skills/vibe-security/references/secrets-and-env.md +47 -0
  1956. package/framework/new_project/.kilocode/workflows/ac-lite.md +61 -5
  1957. package/framework/new_project/.kilocode/workflows/ac.md +75 -37
  1958. package/framework/new_project/.kimi/skills/sync-index/SKILL.md +1 -1
  1959. package/framework/new_project/.kimi/skills/vibe-security/SKILL.md +122 -0
  1960. package/framework/new_project/.kimi/skills/vibe-security/agents/openai.yaml +8 -0
  1961. package/framework/new_project/.kimi/skills/vibe-security/references/ai-integration.md +61 -0
  1962. package/framework/new_project/.kimi/skills/vibe-security/references/authentication.md +90 -0
  1963. package/framework/new_project/.kimi/skills/vibe-security/references/data-access.md +79 -0
  1964. package/framework/new_project/.kimi/skills/vibe-security/references/database-security.md +151 -0
  1965. package/framework/new_project/.kimi/skills/vibe-security/references/deployment.md +49 -0
  1966. package/framework/new_project/.kimi/skills/vibe-security/references/mobile.md +55 -0
  1967. package/framework/new_project/.kimi/skills/vibe-security/references/payments.md +63 -0
  1968. package/framework/new_project/.kimi/skills/vibe-security/references/rate-limiting.md +55 -0
  1969. package/framework/new_project/.kimi/skills/vibe-security/references/secrets-and-env.md +47 -0
  1970. package/framework/new_project/.kimi/workflows/ac-lite.md +61 -5
  1971. package/framework/new_project/.kimi/workflows/ac.md +75 -37
  1972. package/framework/new_project/.opencode/command/ac-lite.md +61 -5
  1973. package/framework/new_project/.opencode/command/ac.md +75 -37
  1974. package/framework/new_project/.opencode/skills/sync-index/SKILL.md +1 -1
  1975. package/framework/new_project/.opencode/skills/vibe-security/SKILL.md +122 -0
  1976. package/framework/new_project/.opencode/skills/vibe-security/agents/openai.yaml +8 -0
  1977. package/framework/new_project/.opencode/skills/vibe-security/references/ai-integration.md +61 -0
  1978. package/framework/new_project/.opencode/skills/vibe-security/references/authentication.md +90 -0
  1979. package/framework/new_project/.opencode/skills/vibe-security/references/data-access.md +79 -0
  1980. package/framework/new_project/.opencode/skills/vibe-security/references/database-security.md +151 -0
  1981. package/framework/new_project/.opencode/skills/vibe-security/references/deployment.md +49 -0
  1982. package/framework/new_project/.opencode/skills/vibe-security/references/mobile.md +55 -0
  1983. package/framework/new_project/.opencode/skills/vibe-security/references/payments.md +63 -0
  1984. package/framework/new_project/.opencode/skills/vibe-security/references/rate-limiting.md +55 -0
  1985. package/framework/new_project/.opencode/skills/vibe-security/references/secrets-and-env.md +47 -0
  1986. package/framework/new_project/.qoder/commands/opsx/ac-lite.md +61 -5
  1987. package/framework/new_project/.qoder/commands/opsx/ac.md +75 -37
  1988. package/framework/new_project/.qoder/skills/sync-index/SKILL.md +1 -1
  1989. package/framework/new_project/.qoder/skills/vibe-security/SKILL.md +122 -0
  1990. package/framework/new_project/.qoder/skills/vibe-security/agents/openai.yaml +8 -0
  1991. package/framework/new_project/.qoder/skills/vibe-security/references/ai-integration.md +61 -0
  1992. package/framework/new_project/.qoder/skills/vibe-security/references/authentication.md +90 -0
  1993. package/framework/new_project/.qoder/skills/vibe-security/references/data-access.md +79 -0
  1994. package/framework/new_project/.qoder/skills/vibe-security/references/database-security.md +151 -0
  1995. package/framework/new_project/.qoder/skills/vibe-security/references/deployment.md +49 -0
  1996. package/framework/new_project/.qoder/skills/vibe-security/references/mobile.md +55 -0
  1997. package/framework/new_project/.qoder/skills/vibe-security/references/payments.md +63 -0
  1998. package/framework/new_project/.qoder/skills/vibe-security/references/rate-limiting.md +55 -0
  1999. package/framework/new_project/.qoder/skills/vibe-security/references/secrets-and-env.md +47 -0
  2000. package/framework/new_project/.qwen/commands/ac-lite.md +61 -5
  2001. package/framework/new_project/.qwen/commands/ac.md +75 -37
  2002. package/framework/new_project/.qwen/skills/sync-index/SKILL.md +1 -1
  2003. package/framework/new_project/.qwen/skills/vibe-security/SKILL.md +122 -0
  2004. package/framework/new_project/.qwen/skills/vibe-security/agents/openai.yaml +8 -0
  2005. package/framework/new_project/.qwen/skills/vibe-security/references/ai-integration.md +61 -0
  2006. package/framework/new_project/.qwen/skills/vibe-security/references/authentication.md +90 -0
  2007. package/framework/new_project/.qwen/skills/vibe-security/references/data-access.md +79 -0
  2008. package/framework/new_project/.qwen/skills/vibe-security/references/database-security.md +151 -0
  2009. package/framework/new_project/.qwen/skills/vibe-security/references/deployment.md +49 -0
  2010. package/framework/new_project/.qwen/skills/vibe-security/references/mobile.md +55 -0
  2011. package/framework/new_project/.qwen/skills/vibe-security/references/payments.md +63 -0
  2012. package/framework/new_project/.qwen/skills/vibe-security/references/rate-limiting.md +55 -0
  2013. package/framework/new_project/.qwen/skills/vibe-security/references/secrets-and-env.md +47 -0
  2014. package/framework/new_project/.roo/commands/ac-lite.md +61 -5
  2015. package/framework/new_project/.roo/commands/ac.md +75 -37
  2016. package/framework/new_project/.roo/skills/sync-index/SKILL.md +1 -1
  2017. package/framework/new_project/.roo/skills/vibe-security/SKILL.md +122 -0
  2018. package/framework/new_project/.roo/skills/vibe-security/agents/openai.yaml +8 -0
  2019. package/framework/new_project/.roo/skills/vibe-security/references/ai-integration.md +61 -0
  2020. package/framework/new_project/.roo/skills/vibe-security/references/authentication.md +90 -0
  2021. package/framework/new_project/.roo/skills/vibe-security/references/data-access.md +79 -0
  2022. package/framework/new_project/.roo/skills/vibe-security/references/database-security.md +151 -0
  2023. package/framework/new_project/.roo/skills/vibe-security/references/deployment.md +49 -0
  2024. package/framework/new_project/.roo/skills/vibe-security/references/mobile.md +55 -0
  2025. package/framework/new_project/.roo/skills/vibe-security/references/payments.md +63 -0
  2026. package/framework/new_project/.roo/skills/vibe-security/references/rate-limiting.md +55 -0
  2027. package/framework/new_project/.roo/skills/vibe-security/references/secrets-and-env.md +47 -0
  2028. package/framework/new_project/.trae/skills/sync-index/SKILL.md +1 -1
  2029. package/framework/new_project/.trae/skills/vibe-security/SKILL.md +122 -0
  2030. package/framework/new_project/.trae/skills/vibe-security/agents/openai.yaml +8 -0
  2031. package/framework/new_project/.trae/skills/vibe-security/references/ai-integration.md +61 -0
  2032. package/framework/new_project/.trae/skills/vibe-security/references/authentication.md +90 -0
  2033. package/framework/new_project/.trae/skills/vibe-security/references/data-access.md +79 -0
  2034. package/framework/new_project/.trae/skills/vibe-security/references/database-security.md +151 -0
  2035. package/framework/new_project/.trae/skills/vibe-security/references/deployment.md +49 -0
  2036. package/framework/new_project/.trae/skills/vibe-security/references/mobile.md +55 -0
  2037. package/framework/new_project/.trae/skills/vibe-security/references/payments.md +63 -0
  2038. package/framework/new_project/.trae/skills/vibe-security/references/rate-limiting.md +55 -0
  2039. package/framework/new_project/.trae/skills/vibe-security/references/secrets-and-env.md +47 -0
  2040. package/framework/new_project/.windsurf/skills/sync-index/SKILL.md +1 -1
  2041. package/framework/new_project/.windsurf/skills/vibe-security/SKILL.md +122 -0
  2042. package/framework/new_project/.windsurf/skills/vibe-security/agents/openai.yaml +8 -0
  2043. package/framework/new_project/.windsurf/skills/vibe-security/references/ai-integration.md +61 -0
  2044. package/framework/new_project/.windsurf/skills/vibe-security/references/authentication.md +90 -0
  2045. package/framework/new_project/.windsurf/skills/vibe-security/references/data-access.md +79 -0
  2046. package/framework/new_project/.windsurf/skills/vibe-security/references/database-security.md +151 -0
  2047. package/framework/new_project/.windsurf/skills/vibe-security/references/deployment.md +49 -0
  2048. package/framework/new_project/.windsurf/skills/vibe-security/references/mobile.md +55 -0
  2049. package/framework/new_project/.windsurf/skills/vibe-security/references/payments.md +63 -0
  2050. package/framework/new_project/.windsurf/skills/vibe-security/references/rate-limiting.md +55 -0
  2051. package/framework/new_project/.windsurf/skills/vibe-security/references/secrets-and-env.md +47 -0
  2052. package/framework/new_project/.windsurf/workflows/ac-lite.md +61 -5
  2053. package/framework/new_project/.windsurf/workflows/ac.md +75 -37
  2054. package/framework/new_project/AGENTS.md +77 -27
  2055. package/framework/new_project/CLAUDE.md +90 -11
  2056. package/framework/new_project/GEMINI.md +90 -11
  2057. package/framework/new_project/copilot-instructions.md +90 -11
  2058. package/framework/web_development/.agents/skills/acfm-memory/SKILL.md +312 -0
  2059. package/framework/web_development/.agents/skills/acfm-spec-workflow/SKILL.md +269 -0
  2060. package/framework/web_development/.agents/skills/brainstorming/SKILL.md +282 -0
  2061. package/framework/web_development/.agents/skills/changelog-generator/SKILL.md +104 -0
  2062. package/framework/web_development/.agents/skills/ci-deploy/SKILL.md +501 -0
  2063. package/framework/web_development/.agents/skills/code-maintainability/SKILL.md +1108 -0
  2064. package/framework/web_development/.agents/skills/code-review/SKILL.md +250 -0
  2065. package/framework/web_development/.agents/skills/context-synthesizer/SKILL.md +322 -0
  2066. package/framework/web_development/.agents/skills/error-handling-patterns/SKILL.md +641 -0
  2067. package/framework/web_development/.agents/skills/microtask-decomposition/SKILL.md +368 -0
  2068. package/framework/web_development/.agents/skills/openspec-apply-change/SKILL.md +172 -0
  2069. package/framework/web_development/.agents/skills/openspec-archive-change/SKILL.md +130 -0
  2070. package/framework/web_development/.agents/skills/openspec-bulk-archive-change/SKILL.md +262 -0
  2071. package/framework/web_development/.agents/skills/openspec-continue-change/SKILL.md +134 -0
  2072. package/framework/web_development/.agents/skills/openspec-explore/SKILL.md +306 -0
  2073. package/framework/web_development/.agents/skills/openspec-ff-change/SKILL.md +117 -0
  2074. package/framework/web_development/.agents/skills/openspec-new-change/SKILL.md +90 -0
  2075. package/framework/web_development/.agents/skills/openspec-onboard/SKILL.md +529 -0
  2076. package/framework/web_development/.agents/skills/openspec-sync-specs/SKILL.md +154 -0
  2077. package/framework/web_development/.agents/skills/openspec-verify-change/SKILL.md +184 -0
  2078. package/framework/web_development/.agents/skills/performance-optimizer/SKILL.md +43 -0
  2079. package/framework/web_development/.agents/skills/project-constitution/SKILL.md +66 -0
  2080. package/framework/web_development/.agents/skills/project-index/SKILL.md +234 -0
  2081. package/framework/web_development/.agents/skills/project-index/scripts/scan_codebase.py +47 -0
  2082. package/framework/web_development/.agents/skills/project-index/templates/agent-template.md +18 -0
  2083. package/framework/web_development/.agents/skills/project-index/templates/skill-template.md +20 -0
  2084. package/framework/web_development/.agents/skills/requirement-checklist/SKILL.md +90 -0
  2085. package/framework/web_development/.agents/skills/research-retrieval/SKILL.md +357 -0
  2086. package/framework/web_development/.agents/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  2087. package/framework/web_development/.agents/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  2088. package/framework/web_development/.agents/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  2089. package/framework/web_development/.agents/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  2090. package/framework/web_development/.agents/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  2091. package/framework/web_development/.agents/skills/skill-writer/SKILL.md +385 -0
  2092. package/framework/web_development/.agents/skills/spec-analysis/SKILL.md +65 -0
  2093. package/framework/web_development/.agents/skills/spec-clarification/SKILL.md +73 -0
  2094. package/framework/web_development/.agents/skills/sync-index/SKILL.md +35 -0
  2095. package/framework/web_development/.agents/skills/systematic-debugging/SKILL.md +296 -0
  2096. package/framework/web_development/.agents/skills/test-generator/SKILL.md +41 -0
  2097. package/framework/web_development/.agents/skills/testing-qa/SKILL.md +249 -0
  2098. package/framework/web_development/.agents/skills/vibe-security/SKILL.md +122 -0
  2099. package/framework/web_development/.agents/skills/vibe-security/agents/openai.yaml +8 -0
  2100. package/framework/web_development/.agents/skills/vibe-security/references/ai-integration.md +61 -0
  2101. package/framework/web_development/.agents/skills/vibe-security/references/authentication.md +90 -0
  2102. package/framework/web_development/.agents/skills/vibe-security/references/data-access.md +79 -0
  2103. package/framework/web_development/.agents/skills/vibe-security/references/database-security.md +151 -0
  2104. package/framework/web_development/.agents/skills/vibe-security/references/deployment.md +49 -0
  2105. package/framework/web_development/.agents/skills/vibe-security/references/mobile.md +55 -0
  2106. package/framework/web_development/.agents/skills/vibe-security/references/payments.md +63 -0
  2107. package/framework/web_development/.agents/skills/vibe-security/references/rate-limiting.md +55 -0
  2108. package/framework/web_development/.agents/skills/vibe-security/references/secrets-and-env.md +47 -0
  2109. package/framework/web_development/.agents/workflows/ac-lite.md +295 -0
  2110. package/framework/web_development/.agents/workflows/ac.md +585 -0
  2111. package/framework/web_development/.agents/workflows/opsx-apply.md +149 -0
  2112. package/framework/web_development/.agents/workflows/opsx-archive.md +154 -0
  2113. package/framework/web_development/.agents/workflows/opsx-bulk-archive.md +239 -0
  2114. package/framework/web_development/.agents/workflows/opsx-continue.md +111 -0
  2115. package/framework/web_development/.agents/workflows/opsx-explore.md +171 -0
  2116. package/framework/web_development/.agents/workflows/opsx-ff.md +91 -0
  2117. package/framework/web_development/.agents/workflows/opsx-new.md +66 -0
  2118. package/framework/web_development/.agents/workflows/opsx-onboard.md +522 -0
  2119. package/framework/web_development/.agents/workflows/opsx-sync.md +131 -0
  2120. package/framework/web_development/.agents/workflows/opsx-verify.md +161 -0
  2121. package/framework/web_development/.amazonq/prompts/ac-lite.md +61 -5
  2122. package/framework/web_development/.amazonq/prompts/ac.md +75 -37
  2123. package/framework/web_development/.amazonq/skills/sync-index/SKILL.md +1 -1
  2124. package/framework/web_development/.amazonq/skills/vibe-security/SKILL.md +122 -0
  2125. package/framework/web_development/.amazonq/skills/vibe-security/agents/openai.yaml +8 -0
  2126. package/framework/web_development/.amazonq/skills/vibe-security/references/ai-integration.md +61 -0
  2127. package/framework/web_development/.amazonq/skills/vibe-security/references/authentication.md +90 -0
  2128. package/framework/web_development/.amazonq/skills/vibe-security/references/data-access.md +79 -0
  2129. package/framework/web_development/.amazonq/skills/vibe-security/references/database-security.md +151 -0
  2130. package/framework/web_development/.amazonq/skills/vibe-security/references/deployment.md +49 -0
  2131. package/framework/web_development/.amazonq/skills/vibe-security/references/mobile.md +55 -0
  2132. package/framework/web_development/.amazonq/skills/vibe-security/references/payments.md +63 -0
  2133. package/framework/web_development/.amazonq/skills/vibe-security/references/rate-limiting.md +55 -0
  2134. package/framework/web_development/.amazonq/skills/vibe-security/references/secrets-and-env.md +47 -0
  2135. package/framework/web_development/.augment/commands/ac-lite.md +61 -5
  2136. package/framework/web_development/.augment/commands/ac.md +75 -37
  2137. package/framework/web_development/.augment/skills/sync-index/SKILL.md +1 -1
  2138. package/framework/web_development/.augment/skills/vibe-security/SKILL.md +122 -0
  2139. package/framework/web_development/.augment/skills/vibe-security/agents/openai.yaml +8 -0
  2140. package/framework/web_development/.augment/skills/vibe-security/references/ai-integration.md +61 -0
  2141. package/framework/web_development/.augment/skills/vibe-security/references/authentication.md +90 -0
  2142. package/framework/web_development/.augment/skills/vibe-security/references/data-access.md +79 -0
  2143. package/framework/web_development/.augment/skills/vibe-security/references/database-security.md +151 -0
  2144. package/framework/web_development/.augment/skills/vibe-security/references/deployment.md +49 -0
  2145. package/framework/web_development/.augment/skills/vibe-security/references/mobile.md +55 -0
  2146. package/framework/web_development/.augment/skills/vibe-security/references/payments.md +63 -0
  2147. package/framework/web_development/.augment/skills/vibe-security/references/rate-limiting.md +55 -0
  2148. package/framework/web_development/.augment/skills/vibe-security/references/secrets-and-env.md +47 -0
  2149. package/framework/web_development/.claude/commands/opsx/ac-lite.md +61 -5
  2150. package/framework/web_development/.claude/commands/opsx/ac.md +75 -37
  2151. package/framework/web_development/.claude/skills/sync-index/SKILL.md +1 -1
  2152. package/framework/web_development/.claude/skills/vibe-security/SKILL.md +122 -0
  2153. package/framework/web_development/.claude/skills/vibe-security/agents/openai.yaml +8 -0
  2154. package/framework/web_development/.claude/skills/vibe-security/references/ai-integration.md +61 -0
  2155. package/framework/web_development/.claude/skills/vibe-security/references/authentication.md +90 -0
  2156. package/framework/web_development/.claude/skills/vibe-security/references/data-access.md +79 -0
  2157. package/framework/web_development/.claude/skills/vibe-security/references/database-security.md +151 -0
  2158. package/framework/web_development/.claude/skills/vibe-security/references/deployment.md +49 -0
  2159. package/framework/web_development/.claude/skills/vibe-security/references/mobile.md +55 -0
  2160. package/framework/web_development/.claude/skills/vibe-security/references/payments.md +63 -0
  2161. package/framework/web_development/.claude/skills/vibe-security/references/rate-limiting.md +55 -0
  2162. package/framework/web_development/.claude/skills/vibe-security/references/secrets-and-env.md +47 -0
  2163. package/framework/web_development/.cline/commands/opsx/ac-lite.md +61 -5
  2164. package/framework/web_development/.cline/commands/opsx/ac.md +75 -37
  2165. package/framework/web_development/.cline/skills/sync-index/SKILL.md +1 -1
  2166. package/framework/web_development/.cline/skills/vibe-security/SKILL.md +122 -0
  2167. package/framework/web_development/.cline/skills/vibe-security/agents/openai.yaml +8 -0
  2168. package/framework/web_development/.cline/skills/vibe-security/references/ai-integration.md +61 -0
  2169. package/framework/web_development/.cline/skills/vibe-security/references/authentication.md +90 -0
  2170. package/framework/web_development/.cline/skills/vibe-security/references/data-access.md +79 -0
  2171. package/framework/web_development/.cline/skills/vibe-security/references/database-security.md +151 -0
  2172. package/framework/web_development/.cline/skills/vibe-security/references/deployment.md +49 -0
  2173. package/framework/web_development/.cline/skills/vibe-security/references/mobile.md +55 -0
  2174. package/framework/web_development/.cline/skills/vibe-security/references/payments.md +63 -0
  2175. package/framework/web_development/.cline/skills/vibe-security/references/rate-limiting.md +55 -0
  2176. package/framework/web_development/.cline/skills/vibe-security/references/secrets-and-env.md +47 -0
  2177. package/framework/web_development/.clinerules/skills/sync-index/SKILL.md +1 -1
  2178. package/framework/web_development/.clinerules/skills/vibe-security/SKILL.md +122 -0
  2179. package/framework/web_development/.clinerules/skills/vibe-security/agents/openai.yaml +8 -0
  2180. package/framework/web_development/.clinerules/skills/vibe-security/references/ai-integration.md +61 -0
  2181. package/framework/web_development/.clinerules/skills/vibe-security/references/authentication.md +90 -0
  2182. package/framework/web_development/.clinerules/skills/vibe-security/references/data-access.md +79 -0
  2183. package/framework/web_development/.clinerules/skills/vibe-security/references/database-security.md +151 -0
  2184. package/framework/web_development/.clinerules/skills/vibe-security/references/deployment.md +49 -0
  2185. package/framework/web_development/.clinerules/skills/vibe-security/references/mobile.md +55 -0
  2186. package/framework/web_development/.clinerules/skills/vibe-security/references/payments.md +63 -0
  2187. package/framework/web_development/.clinerules/skills/vibe-security/references/rate-limiting.md +55 -0
  2188. package/framework/web_development/.clinerules/skills/vibe-security/references/secrets-and-env.md +47 -0
  2189. package/framework/web_development/.clinerules/workflows/ac-lite.md +61 -5
  2190. package/framework/web_development/.clinerules/workflows/ac.md +75 -37
  2191. package/framework/web_development/.codebuddy/commands/opsx/ac-lite.md +61 -5
  2192. package/framework/web_development/.codebuddy/commands/opsx/ac.md +75 -37
  2193. package/framework/web_development/.codebuddy/skills/sync-index/SKILL.md +1 -1
  2194. package/framework/web_development/.codebuddy/skills/vibe-security/SKILL.md +122 -0
  2195. package/framework/web_development/.codebuddy/skills/vibe-security/agents/openai.yaml +8 -0
  2196. package/framework/web_development/.codebuddy/skills/vibe-security/references/ai-integration.md +61 -0
  2197. package/framework/web_development/.codebuddy/skills/vibe-security/references/authentication.md +90 -0
  2198. package/framework/web_development/.codebuddy/skills/vibe-security/references/data-access.md +79 -0
  2199. package/framework/web_development/.codebuddy/skills/vibe-security/references/database-security.md +151 -0
  2200. package/framework/web_development/.codebuddy/skills/vibe-security/references/deployment.md +49 -0
  2201. package/framework/web_development/.codebuddy/skills/vibe-security/references/mobile.md +55 -0
  2202. package/framework/web_development/.codebuddy/skills/vibe-security/references/payments.md +63 -0
  2203. package/framework/web_development/.codebuddy/skills/vibe-security/references/rate-limiting.md +55 -0
  2204. package/framework/web_development/.codebuddy/skills/vibe-security/references/secrets-and-env.md +47 -0
  2205. package/framework/web_development/.codex/skills/sync-index/SKILL.md +1 -1
  2206. package/framework/web_development/.codex/skills/vibe-security/SKILL.md +122 -0
  2207. package/framework/web_development/.codex/skills/vibe-security/agents/openai.yaml +8 -0
  2208. package/framework/web_development/.codex/skills/vibe-security/references/ai-integration.md +61 -0
  2209. package/framework/web_development/.codex/skills/vibe-security/references/authentication.md +90 -0
  2210. package/framework/web_development/.codex/skills/vibe-security/references/data-access.md +79 -0
  2211. package/framework/web_development/.codex/skills/vibe-security/references/database-security.md +151 -0
  2212. package/framework/web_development/.codex/skills/vibe-security/references/deployment.md +49 -0
  2213. package/framework/web_development/.codex/skills/vibe-security/references/mobile.md +55 -0
  2214. package/framework/web_development/.codex/skills/vibe-security/references/payments.md +63 -0
  2215. package/framework/web_development/.codex/skills/vibe-security/references/rate-limiting.md +55 -0
  2216. package/framework/web_development/.codex/skills/vibe-security/references/secrets-and-env.md +47 -0
  2217. package/framework/web_development/.continue/prompts/ac-lite.md +61 -5
  2218. package/framework/web_development/.continue/prompts/ac.md +75 -37
  2219. package/framework/web_development/.continue/skills/sync-index/SKILL.md +1 -1
  2220. package/framework/web_development/.continue/skills/vibe-security/SKILL.md +122 -0
  2221. package/framework/web_development/.continue/skills/vibe-security/agents/openai.yaml +8 -0
  2222. package/framework/web_development/.continue/skills/vibe-security/references/ai-integration.md +61 -0
  2223. package/framework/web_development/.continue/skills/vibe-security/references/authentication.md +90 -0
  2224. package/framework/web_development/.continue/skills/vibe-security/references/data-access.md +79 -0
  2225. package/framework/web_development/.continue/skills/vibe-security/references/database-security.md +151 -0
  2226. package/framework/web_development/.continue/skills/vibe-security/references/deployment.md +49 -0
  2227. package/framework/web_development/.continue/skills/vibe-security/references/mobile.md +55 -0
  2228. package/framework/web_development/.continue/skills/vibe-security/references/payments.md +63 -0
  2229. package/framework/web_development/.continue/skills/vibe-security/references/rate-limiting.md +55 -0
  2230. package/framework/web_development/.continue/skills/vibe-security/references/secrets-and-env.md +47 -0
  2231. package/framework/web_development/.cospec/openspec/commands/ac-lite.md +61 -5
  2232. package/framework/web_development/.cospec/openspec/commands/ac.md +75 -37
  2233. package/framework/web_development/.cospec/skills/sync-index/SKILL.md +1 -1
  2234. package/framework/web_development/.cospec/skills/vibe-security/SKILL.md +122 -0
  2235. package/framework/web_development/.cospec/skills/vibe-security/agents/openai.yaml +8 -0
  2236. package/framework/web_development/.cospec/skills/vibe-security/references/ai-integration.md +61 -0
  2237. package/framework/web_development/.cospec/skills/vibe-security/references/authentication.md +90 -0
  2238. package/framework/web_development/.cospec/skills/vibe-security/references/data-access.md +79 -0
  2239. package/framework/web_development/.cospec/skills/vibe-security/references/database-security.md +151 -0
  2240. package/framework/web_development/.cospec/skills/vibe-security/references/deployment.md +49 -0
  2241. package/framework/web_development/.cospec/skills/vibe-security/references/mobile.md +55 -0
  2242. package/framework/web_development/.cospec/skills/vibe-security/references/payments.md +63 -0
  2243. package/framework/web_development/.cospec/skills/vibe-security/references/rate-limiting.md +55 -0
  2244. package/framework/web_development/.cospec/skills/vibe-security/references/secrets-and-env.md +47 -0
  2245. package/framework/web_development/.crush/commands/opsx/ac-lite.md +61 -5
  2246. package/framework/web_development/.crush/commands/opsx/ac.md +75 -37
  2247. package/framework/web_development/.crush/skills/sync-index/SKILL.md +1 -1
  2248. package/framework/web_development/.crush/skills/vibe-security/SKILL.md +122 -0
  2249. package/framework/web_development/.crush/skills/vibe-security/agents/openai.yaml +8 -0
  2250. package/framework/web_development/.crush/skills/vibe-security/references/ai-integration.md +61 -0
  2251. package/framework/web_development/.crush/skills/vibe-security/references/authentication.md +90 -0
  2252. package/framework/web_development/.crush/skills/vibe-security/references/data-access.md +79 -0
  2253. package/framework/web_development/.crush/skills/vibe-security/references/database-security.md +151 -0
  2254. package/framework/web_development/.crush/skills/vibe-security/references/deployment.md +49 -0
  2255. package/framework/web_development/.crush/skills/vibe-security/references/mobile.md +55 -0
  2256. package/framework/web_development/.crush/skills/vibe-security/references/payments.md +63 -0
  2257. package/framework/web_development/.crush/skills/vibe-security/references/rate-limiting.md +55 -0
  2258. package/framework/web_development/.crush/skills/vibe-security/references/secrets-and-env.md +47 -0
  2259. package/framework/web_development/.cursor/commands/ac-lite.md +61 -5
  2260. package/framework/web_development/.cursor/commands/ac.md +75 -37
  2261. package/framework/web_development/.cursor/skills/sync-index/SKILL.md +1 -1
  2262. package/framework/web_development/.cursor/skills/vibe-security/SKILL.md +122 -0
  2263. package/framework/web_development/.cursor/skills/vibe-security/agents/openai.yaml +8 -0
  2264. package/framework/web_development/.cursor/skills/vibe-security/references/ai-integration.md +61 -0
  2265. package/framework/web_development/.cursor/skills/vibe-security/references/authentication.md +90 -0
  2266. package/framework/web_development/.cursor/skills/vibe-security/references/data-access.md +79 -0
  2267. package/framework/web_development/.cursor/skills/vibe-security/references/database-security.md +151 -0
  2268. package/framework/web_development/.cursor/skills/vibe-security/references/deployment.md +49 -0
  2269. package/framework/web_development/.cursor/skills/vibe-security/references/mobile.md +55 -0
  2270. package/framework/web_development/.cursor/skills/vibe-security/references/payments.md +63 -0
  2271. package/framework/web_development/.cursor/skills/vibe-security/references/rate-limiting.md +55 -0
  2272. package/framework/web_development/.cursor/skills/vibe-security/references/secrets-and-env.md +47 -0
  2273. package/framework/web_development/.factory/commands/ac-lite.md +61 -5
  2274. package/framework/web_development/.factory/commands/ac.md +75 -37
  2275. package/framework/web_development/.factory/skills/sync-index/SKILL.md +1 -1
  2276. package/framework/web_development/.factory/skills/vibe-security/SKILL.md +122 -0
  2277. package/framework/web_development/.factory/skills/vibe-security/agents/openai.yaml +8 -0
  2278. package/framework/web_development/.factory/skills/vibe-security/references/ai-integration.md +61 -0
  2279. package/framework/web_development/.factory/skills/vibe-security/references/authentication.md +90 -0
  2280. package/framework/web_development/.factory/skills/vibe-security/references/data-access.md +79 -0
  2281. package/framework/web_development/.factory/skills/vibe-security/references/database-security.md +151 -0
  2282. package/framework/web_development/.factory/skills/vibe-security/references/deployment.md +49 -0
  2283. package/framework/web_development/.factory/skills/vibe-security/references/mobile.md +55 -0
  2284. package/framework/web_development/.factory/skills/vibe-security/references/payments.md +63 -0
  2285. package/framework/web_development/.factory/skills/vibe-security/references/rate-limiting.md +55 -0
  2286. package/framework/web_development/.factory/skills/vibe-security/references/secrets-and-env.md +47 -0
  2287. package/framework/web_development/.gemini/commands/opsx/ac-lite.md +61 -5
  2288. package/framework/web_development/.gemini/commands/opsx/ac.md +75 -37
  2289. package/framework/web_development/.gemini/skills/sync-index/SKILL.md +1 -1
  2290. package/framework/web_development/.gemini/skills/vibe-security/SKILL.md +122 -0
  2291. package/framework/web_development/.gemini/skills/vibe-security/agents/openai.yaml +8 -0
  2292. package/framework/web_development/.gemini/skills/vibe-security/references/ai-integration.md +61 -0
  2293. package/framework/web_development/.gemini/skills/vibe-security/references/authentication.md +90 -0
  2294. package/framework/web_development/.gemini/skills/vibe-security/references/data-access.md +79 -0
  2295. package/framework/web_development/.gemini/skills/vibe-security/references/database-security.md +151 -0
  2296. package/framework/web_development/.gemini/skills/vibe-security/references/deployment.md +49 -0
  2297. package/framework/web_development/.gemini/skills/vibe-security/references/mobile.md +55 -0
  2298. package/framework/web_development/.gemini/skills/vibe-security/references/payments.md +63 -0
  2299. package/framework/web_development/.gemini/skills/vibe-security/references/rate-limiting.md +55 -0
  2300. package/framework/web_development/.gemini/skills/vibe-security/references/secrets-and-env.md +47 -0
  2301. package/framework/web_development/.github/prompts/ac-lite.md +61 -5
  2302. package/framework/web_development/.github/prompts/ac.md +75 -37
  2303. package/framework/web_development/.github/skills/sync-index/SKILL.md +1 -1
  2304. package/framework/web_development/.github/skills/vibe-security/SKILL.md +122 -0
  2305. package/framework/web_development/.github/skills/vibe-security/agents/openai.yaml +8 -0
  2306. package/framework/web_development/.github/skills/vibe-security/references/ai-integration.md +61 -0
  2307. package/framework/web_development/.github/skills/vibe-security/references/authentication.md +90 -0
  2308. package/framework/web_development/.github/skills/vibe-security/references/data-access.md +79 -0
  2309. package/framework/web_development/.github/skills/vibe-security/references/database-security.md +151 -0
  2310. package/framework/web_development/.github/skills/vibe-security/references/deployment.md +49 -0
  2311. package/framework/web_development/.github/skills/vibe-security/references/mobile.md +55 -0
  2312. package/framework/web_development/.github/skills/vibe-security/references/payments.md +63 -0
  2313. package/framework/web_development/.github/skills/vibe-security/references/rate-limiting.md +55 -0
  2314. package/framework/web_development/.github/skills/vibe-security/references/secrets-and-env.md +47 -0
  2315. package/framework/web_development/.iflow/commands/ac-lite.md +61 -5
  2316. package/framework/web_development/.iflow/commands/ac.md +75 -37
  2317. package/framework/web_development/.iflow/skills/sync-index/SKILL.md +1 -1
  2318. package/framework/web_development/.iflow/skills/vibe-security/SKILL.md +122 -0
  2319. package/framework/web_development/.iflow/skills/vibe-security/agents/openai.yaml +8 -0
  2320. package/framework/web_development/.iflow/skills/vibe-security/references/ai-integration.md +61 -0
  2321. package/framework/web_development/.iflow/skills/vibe-security/references/authentication.md +90 -0
  2322. package/framework/web_development/.iflow/skills/vibe-security/references/data-access.md +79 -0
  2323. package/framework/web_development/.iflow/skills/vibe-security/references/database-security.md +151 -0
  2324. package/framework/web_development/.iflow/skills/vibe-security/references/deployment.md +49 -0
  2325. package/framework/web_development/.iflow/skills/vibe-security/references/mobile.md +55 -0
  2326. package/framework/web_development/.iflow/skills/vibe-security/references/payments.md +63 -0
  2327. package/framework/web_development/.iflow/skills/vibe-security/references/rate-limiting.md +55 -0
  2328. package/framework/web_development/.iflow/skills/vibe-security/references/secrets-and-env.md +47 -0
  2329. package/framework/web_development/.kilocode/skills/sync-index/SKILL.md +1 -1
  2330. package/framework/web_development/.kilocode/skills/vibe-security/SKILL.md +122 -0
  2331. package/framework/web_development/.kilocode/skills/vibe-security/agents/openai.yaml +8 -0
  2332. package/framework/web_development/.kilocode/skills/vibe-security/references/ai-integration.md +61 -0
  2333. package/framework/web_development/.kilocode/skills/vibe-security/references/authentication.md +90 -0
  2334. package/framework/web_development/.kilocode/skills/vibe-security/references/data-access.md +79 -0
  2335. package/framework/web_development/.kilocode/skills/vibe-security/references/database-security.md +151 -0
  2336. package/framework/web_development/.kilocode/skills/vibe-security/references/deployment.md +49 -0
  2337. package/framework/web_development/.kilocode/skills/vibe-security/references/mobile.md +55 -0
  2338. package/framework/web_development/.kilocode/skills/vibe-security/references/payments.md +63 -0
  2339. package/framework/web_development/.kilocode/skills/vibe-security/references/rate-limiting.md +55 -0
  2340. package/framework/web_development/.kilocode/skills/vibe-security/references/secrets-and-env.md +47 -0
  2341. package/framework/web_development/.kilocode/workflows/ac-lite.md +61 -5
  2342. package/framework/web_development/.kilocode/workflows/ac.md +75 -37
  2343. package/framework/web_development/.kimi/skills/sync-index/SKILL.md +1 -1
  2344. package/framework/web_development/.kimi/skills/vibe-security/SKILL.md +122 -0
  2345. package/framework/web_development/.kimi/skills/vibe-security/agents/openai.yaml +8 -0
  2346. package/framework/web_development/.kimi/skills/vibe-security/references/ai-integration.md +61 -0
  2347. package/framework/web_development/.kimi/skills/vibe-security/references/authentication.md +90 -0
  2348. package/framework/web_development/.kimi/skills/vibe-security/references/data-access.md +79 -0
  2349. package/framework/web_development/.kimi/skills/vibe-security/references/database-security.md +151 -0
  2350. package/framework/web_development/.kimi/skills/vibe-security/references/deployment.md +49 -0
  2351. package/framework/web_development/.kimi/skills/vibe-security/references/mobile.md +55 -0
  2352. package/framework/web_development/.kimi/skills/vibe-security/references/payments.md +63 -0
  2353. package/framework/web_development/.kimi/skills/vibe-security/references/rate-limiting.md +55 -0
  2354. package/framework/web_development/.kimi/skills/vibe-security/references/secrets-and-env.md +47 -0
  2355. package/framework/web_development/.kimi/workflows/ac-lite.md +61 -5
  2356. package/framework/web_development/.kimi/workflows/ac.md +75 -37
  2357. package/framework/web_development/.opencode/command/ac-lite.md +61 -5
  2358. package/framework/web_development/.opencode/command/ac.md +75 -37
  2359. package/framework/web_development/.opencode/skills/sync-index/SKILL.md +1 -1
  2360. package/framework/web_development/.opencode/skills/vibe-security/SKILL.md +122 -0
  2361. package/framework/web_development/.opencode/skills/vibe-security/agents/openai.yaml +8 -0
  2362. package/framework/web_development/.opencode/skills/vibe-security/references/ai-integration.md +61 -0
  2363. package/framework/web_development/.opencode/skills/vibe-security/references/authentication.md +90 -0
  2364. package/framework/web_development/.opencode/skills/vibe-security/references/data-access.md +79 -0
  2365. package/framework/web_development/.opencode/skills/vibe-security/references/database-security.md +151 -0
  2366. package/framework/web_development/.opencode/skills/vibe-security/references/deployment.md +49 -0
  2367. package/framework/web_development/.opencode/skills/vibe-security/references/mobile.md +55 -0
  2368. package/framework/web_development/.opencode/skills/vibe-security/references/payments.md +63 -0
  2369. package/framework/web_development/.opencode/skills/vibe-security/references/rate-limiting.md +55 -0
  2370. package/framework/web_development/.opencode/skills/vibe-security/references/secrets-and-env.md +47 -0
  2371. package/framework/web_development/.qoder/commands/opsx/ac-lite.md +61 -5
  2372. package/framework/web_development/.qoder/commands/opsx/ac.md +75 -37
  2373. package/framework/web_development/.qoder/skills/sync-index/SKILL.md +1 -1
  2374. package/framework/web_development/.qoder/skills/vibe-security/SKILL.md +122 -0
  2375. package/framework/web_development/.qoder/skills/vibe-security/agents/openai.yaml +8 -0
  2376. package/framework/web_development/.qoder/skills/vibe-security/references/ai-integration.md +61 -0
  2377. package/framework/web_development/.qoder/skills/vibe-security/references/authentication.md +90 -0
  2378. package/framework/web_development/.qoder/skills/vibe-security/references/data-access.md +79 -0
  2379. package/framework/web_development/.qoder/skills/vibe-security/references/database-security.md +151 -0
  2380. package/framework/web_development/.qoder/skills/vibe-security/references/deployment.md +49 -0
  2381. package/framework/web_development/.qoder/skills/vibe-security/references/mobile.md +55 -0
  2382. package/framework/web_development/.qoder/skills/vibe-security/references/payments.md +63 -0
  2383. package/framework/web_development/.qoder/skills/vibe-security/references/rate-limiting.md +55 -0
  2384. package/framework/web_development/.qoder/skills/vibe-security/references/secrets-and-env.md +47 -0
  2385. package/framework/web_development/.qwen/commands/ac-lite.md +61 -5
  2386. package/framework/web_development/.qwen/commands/ac.md +75 -37
  2387. package/framework/web_development/.qwen/skills/sync-index/SKILL.md +1 -1
  2388. package/framework/web_development/.qwen/skills/vibe-security/SKILL.md +122 -0
  2389. package/framework/web_development/.qwen/skills/vibe-security/agents/openai.yaml +8 -0
  2390. package/framework/web_development/.qwen/skills/vibe-security/references/ai-integration.md +61 -0
  2391. package/framework/web_development/.qwen/skills/vibe-security/references/authentication.md +90 -0
  2392. package/framework/web_development/.qwen/skills/vibe-security/references/data-access.md +79 -0
  2393. package/framework/web_development/.qwen/skills/vibe-security/references/database-security.md +151 -0
  2394. package/framework/web_development/.qwen/skills/vibe-security/references/deployment.md +49 -0
  2395. package/framework/web_development/.qwen/skills/vibe-security/references/mobile.md +55 -0
  2396. package/framework/web_development/.qwen/skills/vibe-security/references/payments.md +63 -0
  2397. package/framework/web_development/.qwen/skills/vibe-security/references/rate-limiting.md +55 -0
  2398. package/framework/web_development/.qwen/skills/vibe-security/references/secrets-and-env.md +47 -0
  2399. package/framework/web_development/.roo/commands/ac-lite.md +61 -5
  2400. package/framework/web_development/.roo/commands/ac.md +75 -37
  2401. package/framework/web_development/.roo/skills/sync-index/SKILL.md +1 -1
  2402. package/framework/web_development/.roo/skills/vibe-security/SKILL.md +122 -0
  2403. package/framework/web_development/.roo/skills/vibe-security/agents/openai.yaml +8 -0
  2404. package/framework/web_development/.roo/skills/vibe-security/references/ai-integration.md +61 -0
  2405. package/framework/web_development/.roo/skills/vibe-security/references/authentication.md +90 -0
  2406. package/framework/web_development/.roo/skills/vibe-security/references/data-access.md +79 -0
  2407. package/framework/web_development/.roo/skills/vibe-security/references/database-security.md +151 -0
  2408. package/framework/web_development/.roo/skills/vibe-security/references/deployment.md +49 -0
  2409. package/framework/web_development/.roo/skills/vibe-security/references/mobile.md +55 -0
  2410. package/framework/web_development/.roo/skills/vibe-security/references/payments.md +63 -0
  2411. package/framework/web_development/.roo/skills/vibe-security/references/rate-limiting.md +55 -0
  2412. package/framework/web_development/.roo/skills/vibe-security/references/secrets-and-env.md +47 -0
  2413. package/framework/web_development/.trae/skills/sync-index/SKILL.md +1 -1
  2414. package/framework/web_development/.trae/skills/vibe-security/SKILL.md +122 -0
  2415. package/framework/web_development/.trae/skills/vibe-security/agents/openai.yaml +8 -0
  2416. package/framework/web_development/.trae/skills/vibe-security/references/ai-integration.md +61 -0
  2417. package/framework/web_development/.trae/skills/vibe-security/references/authentication.md +90 -0
  2418. package/framework/web_development/.trae/skills/vibe-security/references/data-access.md +79 -0
  2419. package/framework/web_development/.trae/skills/vibe-security/references/database-security.md +151 -0
  2420. package/framework/web_development/.trae/skills/vibe-security/references/deployment.md +49 -0
  2421. package/framework/web_development/.trae/skills/vibe-security/references/mobile.md +55 -0
  2422. package/framework/web_development/.trae/skills/vibe-security/references/payments.md +63 -0
  2423. package/framework/web_development/.trae/skills/vibe-security/references/rate-limiting.md +55 -0
  2424. package/framework/web_development/.trae/skills/vibe-security/references/secrets-and-env.md +47 -0
  2425. package/framework/web_development/.windsurf/skills/sync-index/SKILL.md +1 -1
  2426. package/framework/web_development/.windsurf/skills/vibe-security/SKILL.md +122 -0
  2427. package/framework/web_development/.windsurf/skills/vibe-security/agents/openai.yaml +8 -0
  2428. package/framework/web_development/.windsurf/skills/vibe-security/references/ai-integration.md +61 -0
  2429. package/framework/web_development/.windsurf/skills/vibe-security/references/authentication.md +90 -0
  2430. package/framework/web_development/.windsurf/skills/vibe-security/references/data-access.md +79 -0
  2431. package/framework/web_development/.windsurf/skills/vibe-security/references/database-security.md +151 -0
  2432. package/framework/web_development/.windsurf/skills/vibe-security/references/deployment.md +49 -0
  2433. package/framework/web_development/.windsurf/skills/vibe-security/references/mobile.md +55 -0
  2434. package/framework/web_development/.windsurf/skills/vibe-security/references/payments.md +63 -0
  2435. package/framework/web_development/.windsurf/skills/vibe-security/references/rate-limiting.md +55 -0
  2436. package/framework/web_development/.windsurf/skills/vibe-security/references/secrets-and-env.md +47 -0
  2437. package/framework/web_development/.windsurf/workflows/ac-lite.md +61 -5
  2438. package/framework/web_development/.windsurf/workflows/ac.md +75 -37
  2439. package/framework/web_development/AGENTS.md +77 -27
  2440. package/framework/web_development/CLAUDE.md +90 -11
  2441. package/framework/web_development/GEMINI.md +90 -11
  2442. package/framework/web_development/copilot-instructions.md +90 -11
  2443. package/package.json +7 -7
  2444. package/src/agents/runtime.js +159 -8
  2445. package/src/commands/agents.js +53 -12
  2446. package/src/config/constants.js +18 -4
  2447. package/src/config/ide-mapping.js +1 -1
  2448. package/src/mcp/collab-server.js +25 -2
  2449. package/src/services/installer.js +21 -5
  2450. package/framework/mobile_development/.agent/skills/sync-index/SKILL.md +0 -35
  2451. package/framework/mobile_development/.agent/workflows/ac-lite.md +0 -130
  2452. package/framework/mobile_development/.agent/workflows/ac.md +0 -377
  2453. package/framework/mobile_development/.antigravity/skills/flutter-expert/SKILL.md +0 -197
  2454. package/framework/mobile_development/.antigravity/skills/ios-developer/SKILL.md +0 -217
  2455. package/framework/mobile_development/.antigravity/skills/mobile-android-design/SKILL.md +0 -433
  2456. package/framework/mobile_development/.antigravity/skills/mobile-android-design/references/android-navigation.md +0 -698
  2457. package/framework/mobile_development/.antigravity/skills/mobile-android-design/references/compose-components.md +0 -796
  2458. package/framework/mobile_development/.antigravity/skills/mobile-android-design/references/material3-theming.md +0 -604
  2459. package/framework/mobile_development/.antigravity/skills/mobile-design/SKILL.md +0 -289
  2460. package/framework/mobile_development/.antigravity/skills/mobile-design/decision-trees.md +0 -516
  2461. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-backend.md +0 -491
  2462. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-color-system.md +0 -420
  2463. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-debugging.md +0 -122
  2464. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-design-thinking.md +0 -357
  2465. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-navigation.md +0 -458
  2466. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-performance.md +0 -767
  2467. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-testing.md +0 -356
  2468. package/framework/mobile_development/.antigravity/skills/mobile-design/mobile-typography.md +0 -433
  2469. package/framework/mobile_development/.antigravity/skills/mobile-design/platform-android.md +0 -666
  2470. package/framework/mobile_development/.antigravity/skills/mobile-design/platform-ios.md +0 -561
  2471. package/framework/mobile_development/.antigravity/skills/mobile-design/scripts/mobile_audit.py +0 -670
  2472. package/framework/mobile_development/.antigravity/skills/mobile-design/touch-psychology.md +0 -537
  2473. package/framework/mobile_development/.antigravity/skills/mobile-ios-design/SKILL.md +0 -259
  2474. package/framework/mobile_development/.antigravity/skills/mobile-ios-design/references/hig-patterns.md +0 -529
  2475. package/framework/mobile_development/.antigravity/skills/mobile-ios-design/references/ios-navigation.md +0 -556
  2476. package/framework/mobile_development/.antigravity/skills/mobile-ios-design/references/swiftui-components.md +0 -575
  2477. package/framework/mobile_development/.antigravity/skills/react-native-architecture/SKILL.md +0 -666
  2478. package/framework/mobile_development/.antigravity/skills/react-native-design/SKILL.md +0 -432
  2479. package/framework/mobile_development/.antigravity/skills/react-native-design/references/navigation-patterns.md +0 -832
  2480. package/framework/mobile_development/.antigravity/skills/react-native-design/references/reanimated-patterns.md +0 -775
  2481. package/framework/mobile_development/.antigravity/skills/react-native-design/references/styling-patterns.md +0 -871
  2482. package/framework/mobile_development/.antigravity/skills/react-state-management/SKILL.md +0 -430
  2483. package/framework/mobile_development/.antigravity/skills/sync-index/SKILL.md +0 -35
  2484. package/framework/mobile_development/.antigravity/workflows/ac-lite.md +0 -130
  2485. package/framework/mobile_development/.antigravity/workflows/ac.md +0 -377
  2486. package/framework/new_project/.agent/skills/sync-index/SKILL.md +0 -35
  2487. package/framework/new_project/.agent/workflows/ac-lite.md +0 -239
  2488. package/framework/new_project/.agent/workflows/ac.md +0 -547
  2489. package/framework/new_project/.antigravity/skills/documentation/SKILL.md +0 -441
  2490. package/framework/new_project/.antigravity/skills/sync-index/SKILL.md +0 -35
  2491. package/framework/new_project/.antigravity/workflows/ac-lite.md +0 -239
  2492. package/framework/new_project/.antigravity/workflows/ac.md +0 -547
  2493. package/framework/web_development/.agent/skills/api-design-principles/SKILL.md +0 -528
  2494. package/framework/web_development/.agent/skills/api-design-principles/assets/api-design-checklist.md +0 -155
  2495. package/framework/web_development/.agent/skills/api-design-principles/assets/rest-api-template.py +0 -182
  2496. package/framework/web_development/.agent/skills/api-design-principles/references/graphql-schema-design.md +0 -583
  2497. package/framework/web_development/.agent/skills/api-design-principles/references/rest-best-practices.md +0 -408
  2498. package/framework/web_development/.agent/skills/documentation/SKILL.md +0 -441
  2499. package/framework/web_development/.agent/skills/interface-design/SKILL.md +0 -310
  2500. package/framework/web_development/.agent/skills/interface-design/references/example.md +0 -86
  2501. package/framework/web_development/.agent/skills/interface-design/references/principles.md +0 -235
  2502. package/framework/web_development/.agent/skills/interface-design/references/validation.md +0 -48
  2503. package/framework/web_development/.agent/skills/sync-index/SKILL.md +0 -35
  2504. package/framework/web_development/.agent/skills/vercel-react-best-practices/AGENTS.md +0 -2934
  2505. package/framework/web_development/.agent/skills/vercel-react-best-practices/SKILL.md +0 -136
  2506. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +0 -55
  2507. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/advanced-init-once.md +0 -42
  2508. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/advanced-use-latest.md +0 -39
  2509. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/async-api-routes.md +0 -38
  2510. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/async-defer-await.md +0 -80
  2511. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/async-dependencies.md +0 -51
  2512. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/async-parallel.md +0 -28
  2513. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +0 -99
  2514. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +0 -59
  2515. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/bundle-conditional.md +0 -31
  2516. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +0 -49
  2517. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +0 -35
  2518. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/bundle-preload.md +0 -50
  2519. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/client-event-listeners.md +0 -74
  2520. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +0 -71
  2521. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +0 -48
  2522. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/client-swr-dedup.md +0 -56
  2523. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +0 -107
  2524. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-cache-function-results.md +0 -80
  2525. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-cache-property-access.md +0 -28
  2526. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-cache-storage.md +0 -70
  2527. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-combine-iterations.md +0 -32
  2528. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-early-exit.md +0 -50
  2529. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +0 -45
  2530. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-index-maps.md +0 -37
  2531. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-length-check-first.md +0 -49
  2532. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-min-max-loop.md +0 -82
  2533. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +0 -24
  2534. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +0 -57
  2535. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rendering-activity.md +0 -26
  2536. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +0 -47
  2537. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +0 -40
  2538. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +0 -38
  2539. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +0 -46
  2540. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +0 -82
  2541. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +0 -30
  2542. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +0 -28
  2543. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +0 -75
  2544. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +0 -39
  2545. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-dependencies.md +0 -45
  2546. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +0 -40
  2547. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-derived-state.md +0 -29
  2548. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +0 -74
  2549. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +0 -58
  2550. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +0 -38
  2551. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-memo.md +0 -44
  2552. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +0 -45
  2553. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +0 -35
  2554. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-transitions.md +0 -40
  2555. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +0 -73
  2556. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +0 -73
  2557. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/server-auth-actions.md +0 -96
  2558. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/server-cache-lru.md +0 -41
  2559. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/server-cache-react.md +0 -76
  2560. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/server-dedup-props.md +0 -65
  2561. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +0 -83
  2562. package/framework/web_development/.agent/skills/vercel-react-best-practices/rules/server-serialization.md +0 -38
  2563. package/framework/web_development/.agent/workflows/ac-lite.md +0 -239
  2564. package/framework/web_development/.agent/workflows/ac.md +0 -547
  2565. package/framework/web_development/.antigravity/skills/api-design-principles/SKILL.md +0 -528
  2566. package/framework/web_development/.antigravity/skills/api-design-principles/assets/api-design-checklist.md +0 -155
  2567. package/framework/web_development/.antigravity/skills/api-design-principles/assets/rest-api-template.py +0 -182
  2568. package/framework/web_development/.antigravity/skills/api-design-principles/references/graphql-schema-design.md +0 -583
  2569. package/framework/web_development/.antigravity/skills/api-design-principles/references/rest-best-practices.md +0 -408
  2570. package/framework/web_development/.antigravity/skills/documentation/SKILL.md +0 -441
  2571. package/framework/web_development/.antigravity/skills/interface-design/SKILL.md +0 -310
  2572. package/framework/web_development/.antigravity/skills/interface-design/references/example.md +0 -86
  2573. package/framework/web_development/.antigravity/skills/interface-design/references/principles.md +0 -235
  2574. package/framework/web_development/.antigravity/skills/interface-design/references/validation.md +0 -48
  2575. package/framework/web_development/.antigravity/skills/sync-index/SKILL.md +0 -35
  2576. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/AGENTS.md +0 -2934
  2577. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/SKILL.md +0 -136
  2578. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +0 -55
  2579. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/advanced-init-once.md +0 -42
  2580. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/advanced-use-latest.md +0 -39
  2581. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/async-api-routes.md +0 -38
  2582. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/async-defer-await.md +0 -80
  2583. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/async-dependencies.md +0 -51
  2584. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/async-parallel.md +0 -28
  2585. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +0 -99
  2586. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +0 -59
  2587. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/bundle-conditional.md +0 -31
  2588. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +0 -49
  2589. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +0 -35
  2590. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/bundle-preload.md +0 -50
  2591. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/client-event-listeners.md +0 -74
  2592. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +0 -71
  2593. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +0 -48
  2594. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/client-swr-dedup.md +0 -56
  2595. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +0 -107
  2596. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-cache-function-results.md +0 -80
  2597. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-cache-property-access.md +0 -28
  2598. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-cache-storage.md +0 -70
  2599. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-combine-iterations.md +0 -32
  2600. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-early-exit.md +0 -50
  2601. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +0 -45
  2602. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-index-maps.md +0 -37
  2603. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-length-check-first.md +0 -49
  2604. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-min-max-loop.md +0 -82
  2605. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +0 -24
  2606. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +0 -57
  2607. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rendering-activity.md +0 -26
  2608. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +0 -47
  2609. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +0 -40
  2610. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +0 -38
  2611. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +0 -46
  2612. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +0 -82
  2613. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +0 -30
  2614. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +0 -28
  2615. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +0 -75
  2616. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +0 -39
  2617. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-dependencies.md +0 -45
  2618. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +0 -40
  2619. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-derived-state.md +0 -29
  2620. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +0 -74
  2621. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +0 -58
  2622. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +0 -38
  2623. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-memo.md +0 -44
  2624. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +0 -45
  2625. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +0 -35
  2626. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-transitions.md +0 -40
  2627. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +0 -73
  2628. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +0 -73
  2629. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/server-auth-actions.md +0 -96
  2630. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/server-cache-lru.md +0 -41
  2631. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/server-cache-react.md +0 -76
  2632. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/server-dedup-props.md +0 -65
  2633. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +0 -83
  2634. package/framework/web_development/.antigravity/skills/vercel-react-best-practices/rules/server-serialization.md +0 -38
  2635. package/framework/web_development/.antigravity/workflows/ac-lite.md +0 -239
  2636. package/framework/web_development/.antigravity/workflows/ac.md +0 -547
  2637. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/acfm-memory/SKILL.md +0 -0
  2638. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/acfm-spec-workflow/SKILL.md +0 -0
  2639. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/brainstorming/SKILL.md +0 -0
  2640. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/changelog-generator/SKILL.md +0 -0
  2641. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/ci-deploy/SKILL.md +0 -0
  2642. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/code-maintainability/SKILL.md +0 -0
  2643. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/code-review/SKILL.md +0 -0
  2644. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/context-synthesizer/SKILL.md +0 -0
  2645. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/error-handling-patterns/SKILL.md +0 -0
  2646. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/microtask-decomposition/SKILL.md +0 -0
  2647. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-apply-change/SKILL.md +0 -0
  2648. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-archive-change/SKILL.md +0 -0
  2649. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-bulk-archive-change/SKILL.md +0 -0
  2650. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-continue-change/SKILL.md +0 -0
  2651. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-explore/SKILL.md +0 -0
  2652. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-ff-change/SKILL.md +0 -0
  2653. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-new-change/SKILL.md +0 -0
  2654. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-onboard/SKILL.md +0 -0
  2655. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-sync-specs/SKILL.md +0 -0
  2656. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/openspec-verify-change/SKILL.md +0 -0
  2657. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/performance-optimizer/SKILL.md +0 -0
  2658. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/project-constitution/SKILL.md +0 -0
  2659. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/project-index/SKILL.md +0 -0
  2660. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/project-index/scripts/scan_codebase.py +0 -0
  2661. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/project-index/templates/agent-template.md +0 -0
  2662. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/project-index/templates/skill-template.md +0 -0
  2663. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/requirement-checklist/SKILL.md +0 -0
  2664. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/research-retrieval/SKILL.md +0 -0
  2665. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/secure-coding-cybersecurity/SKILL.md +0 -0
  2666. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +0 -0
  2667. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +0 -0
  2668. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +0 -0
  2669. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/secure-coding-cybersecurity/scripts/security_audit.py +0 -0
  2670. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/skill-writer/SKILL.md +0 -0
  2671. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/spec-analysis/SKILL.md +0 -0
  2672. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/spec-clarification/SKILL.md +0 -0
  2673. /package/framework/{mobile_development/.agent → make_your_own/.agents}/skills/systematic-debugging/SKILL.md +0 -0
  2674. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/test-generator/SKILL.md +0 -0
  2675. /package/framework/{new_project/.agent → make_your_own/.agents}/skills/testing-qa/SKILL.md +0 -0
  2676. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-apply.md +0 -0
  2677. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-archive.md +0 -0
  2678. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-bulk-archive.md +0 -0
  2679. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-continue.md +0 -0
  2680. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-explore.md +0 -0
  2681. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-ff.md +0 -0
  2682. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-new.md +0 -0
  2683. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-onboard.md +0 -0
  2684. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-sync.md +0 -0
  2685. /package/framework/{mobile_development/.agent → make_your_own/.agents}/workflows/opsx-verify.md +0 -0
  2686. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-apply.md +0 -0
  2687. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-archive.md +0 -0
  2688. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-bulk-archive.md +0 -0
  2689. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-continue.md +0 -0
  2690. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-explore.md +0 -0
  2691. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-ff.md +0 -0
  2692. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-new.md +0 -0
  2693. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-onboard.md +0 -0
  2694. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-sync.md +0 -0
  2695. /package/framework/{new_project/.agent/workflows → make_your_own/.amazonq/prompts}/opsx-verify.md +0 -0
  2696. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/acfm-memory/SKILL.md +0 -0
  2697. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/acfm-spec-workflow/SKILL.md +0 -0
  2698. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/brainstorming/SKILL.md +0 -0
  2699. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/changelog-generator/SKILL.md +0 -0
  2700. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/ci-deploy/SKILL.md +0 -0
  2701. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/code-maintainability/SKILL.md +0 -0
  2702. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/code-review/SKILL.md +0 -0
  2703. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/context-synthesizer/SKILL.md +0 -0
  2704. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/error-handling-patterns/SKILL.md +0 -0
  2705. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/microtask-decomposition/SKILL.md +0 -0
  2706. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-apply-change/SKILL.md +0 -0
  2707. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-archive-change/SKILL.md +0 -0
  2708. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-bulk-archive-change/SKILL.md +0 -0
  2709. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-continue-change/SKILL.md +0 -0
  2710. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-explore/SKILL.md +0 -0
  2711. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-ff-change/SKILL.md +0 -0
  2712. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-new-change/SKILL.md +0 -0
  2713. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-onboard/SKILL.md +0 -0
  2714. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-sync-specs/SKILL.md +0 -0
  2715. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/openspec-verify-change/SKILL.md +0 -0
  2716. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/performance-optimizer/SKILL.md +0 -0
  2717. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/project-constitution/SKILL.md +0 -0
  2718. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/project-index/SKILL.md +0 -0
  2719. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/project-index/scripts/scan_codebase.py +0 -0
  2720. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/project-index/templates/agent-template.md +0 -0
  2721. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/project-index/templates/skill-template.md +0 -0
  2722. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/requirement-checklist/SKILL.md +0 -0
  2723. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/research-retrieval/SKILL.md +0 -0
  2724. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/secure-coding-cybersecurity/SKILL.md +0 -0
  2725. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +0 -0
  2726. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +0 -0
  2727. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +0 -0
  2728. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/secure-coding-cybersecurity/scripts/security_audit.py +0 -0
  2729. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/skill-writer/SKILL.md +0 -0
  2730. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/spec-analysis/SKILL.md +0 -0
  2731. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/spec-clarification/SKILL.md +0 -0
  2732. /package/framework/{mobile_development/.antigravity → make_your_own/.amazonq}/skills/systematic-debugging/SKILL.md +0 -0
  2733. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/test-generator/SKILL.md +0 -0
  2734. /package/framework/{new_project/.antigravity → make_your_own/.amazonq}/skills/testing-qa/SKILL.md +0 -0
  2735. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/acfm-memory/SKILL.md +0 -0
  2736. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/acfm-spec-workflow/SKILL.md +0 -0
  2737. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/brainstorming/SKILL.md +0 -0
  2738. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/changelog-generator/SKILL.md +0 -0
  2739. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/ci-deploy/SKILL.md +0 -0
  2740. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/code-maintainability/SKILL.md +0 -0
  2741. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/code-review/SKILL.md +0 -0
  2742. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/context-synthesizer/SKILL.md +0 -0
  2743. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/error-handling-patterns/SKILL.md +0 -0
  2744. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/microtask-decomposition/SKILL.md +0 -0
  2745. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-apply-change/SKILL.md +0 -0
  2746. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-archive-change/SKILL.md +0 -0
  2747. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-bulk-archive-change/SKILL.md +0 -0
  2748. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-continue-change/SKILL.md +0 -0
  2749. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-explore/SKILL.md +0 -0
  2750. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-ff-change/SKILL.md +0 -0
  2751. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-new-change/SKILL.md +0 -0
  2752. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-onboard/SKILL.md +0 -0
  2753. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-sync-specs/SKILL.md +0 -0
  2754. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/openspec-verify-change/SKILL.md +0 -0
  2755. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/performance-optimizer/SKILL.md +0 -0
  2756. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/project-constitution/SKILL.md +0 -0
  2757. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/project-index/SKILL.md +0 -0
  2758. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/project-index/scripts/scan_codebase.py +0 -0
  2759. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/project-index/templates/agent-template.md +0 -0
  2760. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/project-index/templates/skill-template.md +0 -0
  2761. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/requirement-checklist/SKILL.md +0 -0
  2762. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/research-retrieval/SKILL.md +0 -0
  2763. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/secure-coding-cybersecurity/SKILL.md +0 -0
  2764. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +0 -0
  2765. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +0 -0
  2766. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +0 -0
  2767. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/secure-coding-cybersecurity/scripts/security_audit.py +0 -0
  2768. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/skill-writer/SKILL.md +0 -0
  2769. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/spec-analysis/SKILL.md +0 -0
  2770. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/spec-clarification/SKILL.md +0 -0
  2771. /package/framework/{new_project/.agent → make_your_own/.augment}/skills/systematic-debugging/SKILL.md +0 -0
  2772. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/test-generator/SKILL.md +0 -0
  2773. /package/framework/{web_development/.agent → make_your_own/.augment}/skills/testing-qa/SKILL.md +0 -0
  2774. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/acfm-memory/SKILL.md +0 -0
  2775. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/acfm-spec-workflow/SKILL.md +0 -0
  2776. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/brainstorming/SKILL.md +0 -0
  2777. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/changelog-generator/SKILL.md +0 -0
  2778. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/ci-deploy/SKILL.md +0 -0
  2779. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/code-maintainability/SKILL.md +0 -0
  2780. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/code-review/SKILL.md +0 -0
  2781. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/context-synthesizer/SKILL.md +0 -0
  2782. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/error-handling-patterns/SKILL.md +0 -0
  2783. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/microtask-decomposition/SKILL.md +0 -0
  2784. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-apply-change/SKILL.md +0 -0
  2785. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-archive-change/SKILL.md +0 -0
  2786. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-bulk-archive-change/SKILL.md +0 -0
  2787. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-continue-change/SKILL.md +0 -0
  2788. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-explore/SKILL.md +0 -0
  2789. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-ff-change/SKILL.md +0 -0
  2790. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-new-change/SKILL.md +0 -0
  2791. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-onboard/SKILL.md +0 -0
  2792. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-sync-specs/SKILL.md +0 -0
  2793. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/openspec-verify-change/SKILL.md +0 -0
  2794. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/performance-optimizer/SKILL.md +0 -0
  2795. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/project-constitution/SKILL.md +0 -0
  2796. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/project-index/SKILL.md +0 -0
  2797. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/project-index/scripts/scan_codebase.py +0 -0
  2798. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/project-index/templates/agent-template.md +0 -0
  2799. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/project-index/templates/skill-template.md +0 -0
  2800. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/requirement-checklist/SKILL.md +0 -0
  2801. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/research-retrieval/SKILL.md +0 -0
  2802. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/secure-coding-cybersecurity/SKILL.md +0 -0
  2803. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +0 -0
  2804. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +0 -0
  2805. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +0 -0
  2806. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/secure-coding-cybersecurity/scripts/security_audit.py +0 -0
  2807. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/skill-writer/SKILL.md +0 -0
  2808. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/spec-analysis/SKILL.md +0 -0
  2809. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/spec-clarification/SKILL.md +0 -0
  2810. /package/framework/{new_project/.antigravity → make_your_own/.claude}/skills/systematic-debugging/SKILL.md +0 -0
  2811. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/test-generator/SKILL.md +0 -0
  2812. /package/framework/{web_development/.antigravity → make_your_own/.claude}/skills/testing-qa/SKILL.md +0 -0
  2813. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/acfm-memory/SKILL.md +0 -0
  2814. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/acfm-spec-workflow/SKILL.md +0 -0
  2815. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/brainstorming/SKILL.md +0 -0
  2816. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/changelog-generator/SKILL.md +0 -0
  2817. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/context-synthesizer/SKILL.md +0 -0
  2818. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/microtask-decomposition/SKILL.md +0 -0
  2819. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-apply-change/SKILL.md +0 -0
  2820. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-archive-change/SKILL.md +0 -0
  2821. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-bulk-archive-change/SKILL.md +0 -0
  2822. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-continue-change/SKILL.md +0 -0
  2823. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-explore/SKILL.md +0 -0
  2824. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-ff-change/SKILL.md +0 -0
  2825. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-new-change/SKILL.md +0 -0
  2826. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-onboard/SKILL.md +0 -0
  2827. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-sync-specs/SKILL.md +0 -0
  2828. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/openspec-verify-change/SKILL.md +0 -0
  2829. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/project-constitution/SKILL.md +0 -0
  2830. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/project-index/SKILL.md +0 -0
  2831. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/project-index/scripts/scan_codebase.py +0 -0
  2832. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/project-index/templates/agent-template.md +0 -0
  2833. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/project-index/templates/skill-template.md +0 -0
  2834. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/research-retrieval/SKILL.md +0 -0
  2835. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/spec-analysis/SKILL.md +0 -0
  2836. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/spec-clarification/SKILL.md +0 -0
  2837. /package/framework/{web_development/.agent → make_your_own/.cline}/skills/systematic-debugging/SKILL.md +0 -0
  2838. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/acfm-memory/SKILL.md +0 -0
  2839. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/acfm-spec-workflow/SKILL.md +0 -0
  2840. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/brainstorming/SKILL.md +0 -0
  2841. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/changelog-generator/SKILL.md +0 -0
  2842. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/context-synthesizer/SKILL.md +0 -0
  2843. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/microtask-decomposition/SKILL.md +0 -0
  2844. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-apply-change/SKILL.md +0 -0
  2845. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-archive-change/SKILL.md +0 -0
  2846. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-bulk-archive-change/SKILL.md +0 -0
  2847. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-continue-change/SKILL.md +0 -0
  2848. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-explore/SKILL.md +0 -0
  2849. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-ff-change/SKILL.md +0 -0
  2850. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-new-change/SKILL.md +0 -0
  2851. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-onboard/SKILL.md +0 -0
  2852. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-sync-specs/SKILL.md +0 -0
  2853. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/openspec-verify-change/SKILL.md +0 -0
  2854. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/project-constitution/SKILL.md +0 -0
  2855. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/project-index/SKILL.md +0 -0
  2856. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/project-index/scripts/scan_codebase.py +0 -0
  2857. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/project-index/templates/agent-template.md +0 -0
  2858. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/project-index/templates/skill-template.md +0 -0
  2859. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/research-retrieval/SKILL.md +0 -0
  2860. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/spec-analysis/SKILL.md +0 -0
  2861. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/spec-clarification/SKILL.md +0 -0
  2862. /package/framework/{web_development/.antigravity → make_your_own/.clinerules}/skills/systematic-debugging/SKILL.md +0 -0
  2863. /package/framework/{web_development/.agent/workflows/opsx-apply.md → make_your_own/.github/prompts/opsx-apply.prompt.md} +0 -0
  2864. /package/framework/{web_development/.agent/workflows/opsx-archive.md → make_your_own/.github/prompts/opsx-archive.prompt.md} +0 -0
  2865. /package/framework/{web_development/.agent/workflows/opsx-bulk-archive.md → make_your_own/.github/prompts/opsx-bulk-archive.prompt.md} +0 -0
  2866. /package/framework/{web_development/.agent/workflows/opsx-continue.md → make_your_own/.github/prompts/opsx-continue.prompt.md} +0 -0
  2867. /package/framework/{web_development/.agent/workflows/opsx-explore.md → make_your_own/.github/prompts/opsx-explore.prompt.md} +0 -0
  2868. /package/framework/{web_development/.agent/workflows/opsx-ff.md → make_your_own/.github/prompts/opsx-ff.prompt.md} +0 -0
  2869. /package/framework/{web_development/.agent/workflows/opsx-new.md → make_your_own/.github/prompts/opsx-new.prompt.md} +0 -0
  2870. /package/framework/{web_development/.agent/workflows/opsx-onboard.md → make_your_own/.github/prompts/opsx-onboard.prompt.md} +0 -0
  2871. /package/framework/{web_development/.agent/workflows/opsx-sync.md → make_your_own/.github/prompts/opsx-sync.prompt.md} +0 -0
  2872. /package/framework/{web_development/.agent/workflows/opsx-verify.md → make_your_own/.github/prompts/opsx-verify.prompt.md} +0 -0
  2873. /package/framework/mobile_development/{.agent → .agents}/skills/documentation/SKILL.md +0 -0
  2874. /package/framework/mobile_development/{.agent → .agents}/skills/flutter-expert/SKILL.md +0 -0
  2875. /package/framework/mobile_development/{.agent → .agents}/skills/ios-developer/SKILL.md +0 -0
  2876. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-android-design/SKILL.md +0 -0
  2877. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-android-design/references/android-navigation.md +0 -0
  2878. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-android-design/references/compose-components.md +0 -0
  2879. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-android-design/references/material3-theming.md +0 -0
  2880. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/SKILL.md +0 -0
  2881. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/decision-trees.md +0 -0
  2882. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/mobile-backend.md +0 -0
  2883. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/mobile-color-system.md +0 -0
  2884. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/mobile-debugging.md +0 -0
  2885. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/mobile-design-thinking.md +0 -0
  2886. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/mobile-navigation.md +0 -0
  2887. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/mobile-performance.md +0 -0
  2888. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/mobile-testing.md +0 -0
  2889. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/mobile-typography.md +0 -0
  2890. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/platform-android.md +0 -0
  2891. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/platform-ios.md +0 -0
  2892. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/scripts/mobile_audit.py +0 -0
  2893. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-design/touch-psychology.md +0 -0
  2894. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-ios-design/SKILL.md +0 -0
  2895. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-ios-design/references/hig-patterns.md +0 -0
  2896. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-ios-design/references/ios-navigation.md +0 -0
  2897. /package/framework/mobile_development/{.agent → .agents}/skills/mobile-ios-design/references/swiftui-components.md +0 -0
  2898. /package/framework/mobile_development/{.agent → .agents}/skills/react-native-architecture/SKILL.md +0 -0
  2899. /package/framework/mobile_development/{.agent → .agents}/skills/react-native-design/SKILL.md +0 -0
  2900. /package/framework/mobile_development/{.agent → .agents}/skills/react-native-design/references/navigation-patterns.md +0 -0
  2901. /package/framework/mobile_development/{.agent → .agents}/skills/react-native-design/references/reanimated-patterns.md +0 -0
  2902. /package/framework/mobile_development/{.agent → .agents}/skills/react-native-design/references/styling-patterns.md +0 -0
  2903. /package/framework/mobile_development/{.agent → .agents}/skills/react-state-management/SKILL.md +0 -0
  2904. /package/framework/new_project/{.agent → .agents}/skills/api-design-principles/SKILL.md +0 -0
  2905. /package/framework/new_project/{.agent → .agents}/skills/api-design-principles/assets/api-design-checklist.md +0 -0
  2906. /package/framework/new_project/{.agent → .agents}/skills/api-design-principles/assets/rest-api-template.py +0 -0
  2907. /package/framework/new_project/{.agent → .agents}/skills/api-design-principles/references/graphql-schema-design.md +0 -0
  2908. /package/framework/new_project/{.agent → .agents}/skills/api-design-principles/references/rest-best-practices.md +0 -0
  2909. /package/framework/{mobile_development/.antigravity → new_project/.agents}/skills/documentation/SKILL.md +0 -0
  2910. /package/framework/new_project/{.agent → .agents}/skills/interface-design/SKILL.md +0 -0
  2911. /package/framework/new_project/{.agent → .agents}/skills/interface-design/references/example.md +0 -0
  2912. /package/framework/new_project/{.agent → .agents}/skills/interface-design/references/principles.md +0 -0
  2913. /package/framework/new_project/{.agent → .agents}/skills/interface-design/references/validation.md +0 -0
  2914. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/AGENTS.md +0 -0
  2915. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/SKILL.md +0 -0
  2916. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +0 -0
  2917. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/advanced-init-once.md +0 -0
  2918. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/advanced-use-latest.md +0 -0
  2919. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/async-api-routes.md +0 -0
  2920. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/async-defer-await.md +0 -0
  2921. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/async-dependencies.md +0 -0
  2922. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/async-parallel.md +0 -0
  2923. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +0 -0
  2924. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +0 -0
  2925. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/bundle-conditional.md +0 -0
  2926. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +0 -0
  2927. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +0 -0
  2928. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/bundle-preload.md +0 -0
  2929. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/client-event-listeners.md +0 -0
  2930. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +0 -0
  2931. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +0 -0
  2932. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/client-swr-dedup.md +0 -0
  2933. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +0 -0
  2934. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-cache-function-results.md +0 -0
  2935. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-cache-property-access.md +0 -0
  2936. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-cache-storage.md +0 -0
  2937. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-combine-iterations.md +0 -0
  2938. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-early-exit.md +0 -0
  2939. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +0 -0
  2940. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-index-maps.md +0 -0
  2941. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-length-check-first.md +0 -0
  2942. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-min-max-loop.md +0 -0
  2943. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +0 -0
  2944. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +0 -0
  2945. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rendering-activity.md +0 -0
  2946. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +0 -0
  2947. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +0 -0
  2948. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +0 -0
  2949. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +0 -0
  2950. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +0 -0
  2951. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +0 -0
  2952. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +0 -0
  2953. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +0 -0
  2954. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +0 -0
  2955. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-dependencies.md +0 -0
  2956. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +0 -0
  2957. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-derived-state.md +0 -0
  2958. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +0 -0
  2959. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +0 -0
  2960. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +0 -0
  2961. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-memo.md +0 -0
  2962. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +0 -0
  2963. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +0 -0
  2964. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-transitions.md +0 -0
  2965. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +0 -0
  2966. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +0 -0
  2967. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/server-auth-actions.md +0 -0
  2968. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/server-cache-lru.md +0 -0
  2969. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/server-cache-react.md +0 -0
  2970. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/server-dedup-props.md +0 -0
  2971. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +0 -0
  2972. /package/framework/new_project/{.agent → .agents}/skills/vercel-react-best-practices/rules/server-serialization.md +0 -0
  2973. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/api-design-principles/SKILL.md +0 -0
  2974. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/api-design-principles/assets/api-design-checklist.md +0 -0
  2975. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/api-design-principles/assets/rest-api-template.py +0 -0
  2976. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/api-design-principles/references/graphql-schema-design.md +0 -0
  2977. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/api-design-principles/references/rest-best-practices.md +0 -0
  2978. /package/framework/{new_project/.agent → web_development/.agents}/skills/documentation/SKILL.md +0 -0
  2979. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/interface-design/SKILL.md +0 -0
  2980. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/interface-design/references/example.md +0 -0
  2981. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/interface-design/references/principles.md +0 -0
  2982. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/interface-design/references/validation.md +0 -0
  2983. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/AGENTS.md +0 -0
  2984. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/SKILL.md +0 -0
  2985. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +0 -0
  2986. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/advanced-init-once.md +0 -0
  2987. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/advanced-use-latest.md +0 -0
  2988. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/async-api-routes.md +0 -0
  2989. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/async-defer-await.md +0 -0
  2990. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/async-dependencies.md +0 -0
  2991. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/async-parallel.md +0 -0
  2992. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +0 -0
  2993. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +0 -0
  2994. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/bundle-conditional.md +0 -0
  2995. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +0 -0
  2996. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +0 -0
  2997. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/bundle-preload.md +0 -0
  2998. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/client-event-listeners.md +0 -0
  2999. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +0 -0
  3000. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +0 -0
  3001. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/client-swr-dedup.md +0 -0
  3002. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +0 -0
  3003. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-cache-function-results.md +0 -0
  3004. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-cache-property-access.md +0 -0
  3005. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-cache-storage.md +0 -0
  3006. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-combine-iterations.md +0 -0
  3007. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-early-exit.md +0 -0
  3008. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +0 -0
  3009. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-index-maps.md +0 -0
  3010. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-length-check-first.md +0 -0
  3011. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-min-max-loop.md +0 -0
  3012. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +0 -0
  3013. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +0 -0
  3014. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rendering-activity.md +0 -0
  3015. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +0 -0
  3016. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +0 -0
  3017. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +0 -0
  3018. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +0 -0
  3019. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +0 -0
  3020. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +0 -0
  3021. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +0 -0
  3022. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +0 -0
  3023. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +0 -0
  3024. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-dependencies.md +0 -0
  3025. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +0 -0
  3026. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-derived-state.md +0 -0
  3027. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +0 -0
  3028. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +0 -0
  3029. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +0 -0
  3030. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-memo.md +0 -0
  3031. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +0 -0
  3032. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +0 -0
  3033. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-transitions.md +0 -0
  3034. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +0 -0
  3035. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +0 -0
  3036. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/server-auth-actions.md +0 -0
  3037. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/server-cache-lru.md +0 -0
  3038. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/server-cache-react.md +0 -0
  3039. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/server-dedup-props.md +0 -0
  3040. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +0 -0
  3041. /package/framework/{new_project/.antigravity → web_development/.agents}/skills/vercel-react-best-practices/rules/server-serialization.md +0 -0
@@ -0,0 +1,239 @@
1
+ # OPSX: Bulk Archive
2
+
3
+ Archive multiple completed changes at once
4
+
5
+ Archive multiple completed changes in a single operation.
6
+
7
+ This skill allows you to batch-archive changes, handling spec conflicts intelligently by checking the codebase to determine what's actually implemented.
8
+
9
+ **Input**: None required (prompts for selection)
10
+
11
+ **Steps**
12
+
13
+ 1. **Get active changes**
14
+
15
+ Run `acfm spec list --json` to get all active changes.
16
+
17
+ If no active changes exist, inform user and stop.
18
+
19
+ 2. **Prompt for change selection**
20
+
21
+ Use **AskUserQuestion tool** with multi-select to let user choose changes:
22
+ - Show each change with its schema
23
+ - Include an option for "All changes"
24
+ - Allow any number of selections (1+ works, 2+ is the typical use case)
25
+
26
+ **IMPORTANT**: Do NOT auto-select. Always let the user choose.
27
+
28
+ 3. **Batch validation - gather status for all selected changes**
29
+
30
+ For each selected change, collect:
31
+
32
+ a. **Artifact status** - Run `acfm spec status --change "<name>" --json`
33
+ - Parse `schemaName` and `artifacts` list
34
+ - Note which artifacts are `done` vs other states
35
+
36
+ b. **Task completion** - Read `openspec/changes/<name>/tasks.md`
37
+ - Count `- [ ]` (incomplete) vs `- [x]` (complete)
38
+ - If no tasks file exists, note as "No tasks"
39
+
40
+ c. **Delta specs** - Check `openspec/changes/<name>/specs/` directory
41
+ - List which capability specs exist
42
+ - For each, extract requirement names (lines matching `### Requirement: <name>`)
43
+
44
+ 4. **Detect spec conflicts**
45
+
46
+ Build a map of `capability -> [changes that touch it]`:
47
+
48
+ ```
49
+ auth -> [change-a, change-b] <- CONFLICT (2+ changes)
50
+ api -> [change-c] <- OK (only 1 change)
51
+ ```
52
+
53
+ A conflict exists when 2+ selected changes have delta specs for the same capability.
54
+
55
+ 5. **Resolve conflicts agentically**
56
+
57
+ **For each conflict**, investigate the codebase:
58
+
59
+ a. **Read the delta specs** from each conflicting change to understand what each claims to add/modify
60
+
61
+ b. **Search the codebase** for implementation evidence:
62
+ - Look for code implementing requirements from each delta spec
63
+ - Check for related files, functions, or tests
64
+
65
+ c. **Determine resolution**:
66
+ - If only one change is actually implemented -> sync that one's specs
67
+ - If both implemented -> apply in chronological order (older first, newer overwrites)
68
+ - If neither implemented -> skip spec sync, warn user
69
+
70
+ d. **Record resolution** for each conflict:
71
+ - Which change's specs to apply
72
+ - In what order (if both)
73
+ - Rationale (what was found in codebase)
74
+
75
+ 6. **Show consolidated status table**
76
+
77
+ Display a table summarizing all changes:
78
+
79
+ ```
80
+ | Change | Artifacts | Tasks | Specs | Conflicts | Status |
81
+ |---------------------|-----------|-------|---------|-----------|--------|
82
+ | schema-management | Done | 5/5 | 2 delta | None | Ready |
83
+ | project-config | Done | 3/3 | 1 delta | None | Ready |
84
+ | add-oauth | Done | 4/4 | 1 delta | auth (!) | Ready* |
85
+ | add-verify-skill | 1 left | 2/5 | None | None | Warn |
86
+ ```
87
+
88
+ For conflicts, show the resolution:
89
+ ```
90
+ * Conflict resolution:
91
+ - auth spec: Will apply add-oauth then add-jwt (both implemented, chronological order)
92
+ ```
93
+
94
+ For incomplete changes, show warnings:
95
+ ```
96
+ Warnings:
97
+ - add-verify-skill: 1 incomplete artifact, 3 incomplete tasks
98
+ ```
99
+
100
+ 7. **Confirm batch operation**
101
+
102
+ Use **AskUserQuestion tool** with a single confirmation:
103
+
104
+ - "Archive N changes?" with options based on status
105
+ - Options might include:
106
+ - "Archive all N changes"
107
+ - "Archive only N ready changes (skip incomplete)"
108
+ - "Cancel"
109
+
110
+ If there are incomplete changes, make clear they'll be archived with warnings.
111
+
112
+ 8. **Execute archive for each confirmed change**
113
+
114
+ Process changes in the determined order (respecting conflict resolution):
115
+
116
+ a. **Sync specs** if delta specs exist:
117
+ - Use the openspec-sync-specs approach (agent-driven intelligent merge)
118
+ - For conflicts, apply in resolved order
119
+ - Track if sync was done
120
+
121
+ b. **Perform the archive**:
122
+ ```bash
123
+ mkdir -p openspec/changes/archive
124
+ mv openspec/changes/<name> openspec/changes/archive/YYYY-MM-DD-<name>
125
+ ```
126
+
127
+ c. **Track outcome** for each change:
128
+ - Success: archived successfully
129
+ - Failed: error during archive (record error)
130
+ - Skipped: user chose not to archive (if applicable)
131
+
132
+ 9. **Display summary**
133
+
134
+ Show final results:
135
+
136
+ ```
137
+ ## Bulk Archive Complete
138
+
139
+ Archived 3 changes:
140
+ - schema-management-cli -> archive/2026-01-19-schema-management-cli/
141
+ - project-config -> archive/2026-01-19-project-config/
142
+ - add-oauth -> archive/2026-01-19-add-oauth/
143
+
144
+ Skipped 1 change:
145
+ - add-verify-skill (user chose not to archive incomplete)
146
+
147
+ Spec sync summary:
148
+ - 4 delta specs synced to main specs
149
+ - 1 conflict resolved (auth: applied both in chronological order)
150
+ ```
151
+
152
+ If any failures:
153
+ ```
154
+ Failed 1 change:
155
+ - some-change: Archive directory already exists
156
+ ```
157
+
158
+ **Conflict Resolution Examples**
159
+
160
+ Example 1: Only one implemented
161
+ ```
162
+ Conflict: specs/auth/spec.md touched by [add-oauth, add-jwt]
163
+
164
+ Checking add-oauth:
165
+ - Delta adds "OAuth Provider Integration" requirement
166
+ - Searching codebase... found src/auth/oauth.ts implementing OAuth flow
167
+
168
+ Checking add-jwt:
169
+ - Delta adds "JWT Token Handling" requirement
170
+ - Searching codebase... no JWT implementation found
171
+
172
+ Resolution: Only add-oauth is implemented. Will sync add-oauth specs only.
173
+ ```
174
+
175
+ Example 2: Both implemented
176
+ ```
177
+ Conflict: specs/api/spec.md touched by [add-rest-api, add-graphql]
178
+
179
+ Checking add-rest-api (created 2026-01-10):
180
+ - Delta adds "REST Endpoints" requirement
181
+ - Searching codebase... found src/api/rest.ts
182
+
183
+ Checking add-graphql (created 2026-01-15):
184
+ - Delta adds "GraphQL Schema" requirement
185
+ - Searching codebase... found src/api/graphql.ts
186
+
187
+ Resolution: Both implemented. Will apply add-rest-api specs first,
188
+ then add-graphql specs (chronological order, newer takes precedence).
189
+ ```
190
+
191
+ **Output On Success**
192
+
193
+ ```
194
+ ## Bulk Archive Complete
195
+
196
+ Archived N changes:
197
+ - <change-1> -> archive/YYYY-MM-DD-<change-1>/
198
+ - <change-2> -> archive/YYYY-MM-DD-<change-2>/
199
+
200
+ Spec sync summary:
201
+ - N delta specs synced to main specs
202
+ - No conflicts (or: M conflicts resolved)
203
+ ```
204
+
205
+ **Output On Partial Success**
206
+
207
+ ```
208
+ ## Bulk Archive Complete (partial)
209
+
210
+ Archived N changes:
211
+ - <change-1> -> archive/YYYY-MM-DD-<change-1>/
212
+
213
+ Skipped M changes:
214
+ - <change-2> (user chose not to archive incomplete)
215
+
216
+ Failed K changes:
217
+ - <change-3>: Archive directory already exists
218
+ ```
219
+
220
+ **Output When No Changes**
221
+
222
+ ```
223
+ ## No Changes to Archive
224
+
225
+ No active changes found. Use `/opsx:new` to create a new change.
226
+ ```
227
+
228
+ **Guardrails**
229
+ - Allow any number of changes (1+ is fine, 2+ is the typical use case)
230
+ - Always prompt for selection, never auto-select
231
+ - Detect spec conflicts early and resolve by checking codebase
232
+ - When both changes are implemented, apply specs in chronological order
233
+ - Skip spec sync only when implementation is missing (warn user)
234
+ - Show clear per-change status before confirming
235
+ - Use single confirmation for entire batch
236
+ - Track and report all outcomes (success/skip/fail)
237
+ - Preserve .openspec.yaml when moving to archive
238
+ - Archive directory target uses current date: YYYY-MM-DD-<name>
239
+ - If archive target exists, fail that change but continue with others
@@ -0,0 +1,111 @@
1
+ # OPSX: Continue
2
+
3
+ Continue working on a change - create the next artifact (Experimental)
4
+
5
+ Continue working on a change by creating the next artifact.
6
+
7
+ **Input**: Optionally specify a change name after `/opsx:continue` (e.g., `/opsx:continue add-auth`). If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
8
+
9
+ **Steps**
10
+
11
+ 1. **If no change name provided, prompt for selection**
12
+
13
+ Run `acfm spec list --json` to get available changes sorted by most recently modified. Then use the **AskUserQuestion tool** to let the user select which change to work on.
14
+
15
+ Present the top 3-4 most recently modified changes as options, showing:
16
+ - Change name
17
+ - Schema (from `schema` field if present, otherwise "spec-driven")
18
+ - Status (e.g., "0/5 tasks", "complete", "no tasks")
19
+ - How recently it was modified (from `lastModified` field)
20
+
21
+ Mark the most recently modified change as "(Recommended)" since it's likely what the user wants to continue.
22
+
23
+ **IMPORTANT**: Do NOT guess or auto-select a change. Always let the user choose.
24
+
25
+ 2. **Check current status**
26
+ ```bash
27
+ acfm spec status --change "<name>" --json
28
+ ```
29
+ Parse the JSON to understand current state. The response includes:
30
+ - `schemaName`: The workflow schema being used (e.g., "spec-driven")
31
+ - `artifacts`: Array of artifacts with their status ("done", "ready", "blocked")
32
+ - `isComplete`: Boolean indicating if all artifacts are complete
33
+
34
+ 3. **Act based on status**:
35
+
36
+ ---
37
+
38
+ **If all artifacts are complete (`isComplete: true`)**:
39
+ - Congratulate the user
40
+ - Show final status including the schema used
41
+ - Suggest: "All artifacts created! You can now implement this change with `/opsx:apply` or archive it with `/opsx:archive`."
42
+ - STOP
43
+
44
+ ---
45
+
46
+ **If artifacts are ready to create** (status shows artifacts with `status: "ready"`):
47
+ - Pick the FIRST artifact with `status: "ready"` from the status output
48
+ - Get its instructions:
49
+ ```bash
50
+ acfm spec instructions <artifact-id> --change "<name>" --json
51
+ ```
52
+ - Parse the JSON. The key fields are:
53
+ - `context`: Project background (constraints for you - do NOT include in output)
54
+ - `rules`: Artifact-specific rules (constraints for you - do NOT include in output)
55
+ - `template`: The structure to use for your output file
56
+ - `instruction`: Schema-specific guidance
57
+ - `outputPath`: Where to write the artifact
58
+ - `dependencies`: Completed artifacts to read for context
59
+ - **Create the artifact file**:
60
+ - Read any completed dependency files for context
61
+ - Use `template` as the structure - fill in its sections
62
+ - Apply `context` and `rules` as constraints when writing - but do NOT copy them into the file
63
+ - Write to the output path specified in instructions
64
+ - Show what was created and what's now unlocked
65
+ - STOP after creating ONE artifact
66
+
67
+ ---
68
+
69
+ **If no artifacts are ready (all blocked)**:
70
+ - This shouldn't happen with a valid schema
71
+ - Show status and suggest checking for issues
72
+
73
+ 4. **After creating an artifact, show progress**
74
+ ```bash
75
+ acfm spec status --change "<name>"
76
+ ```
77
+
78
+ **Output**
79
+
80
+ After each invocation, show:
81
+ - Which artifact was created
82
+ - Schema workflow being used
83
+ - Current progress (N/M complete)
84
+ - What artifacts are now unlocked
85
+ - Prompt: "Run `/opsx:continue` to create the next artifact"
86
+
87
+ **Artifact Creation Guidelines**
88
+
89
+ The artifact types and their purpose depend on the schema. Use the `instruction` field from the instructions output to understand what to create.
90
+
91
+ Common artifact patterns:
92
+
93
+ **spec-driven schema** (proposal → specs → design → tasks):
94
+ - **proposal.md**: Ask user about the change if not clear. Fill in Why, What Changes, Capabilities, Impact.
95
+ - The Capabilities section is critical - each capability listed will need a spec file.
96
+ - **specs/<capability>/spec.md**: Create one spec per capability listed in the proposal's Capabilities section (use the capability name, not the change name).
97
+ - **design.md**: Document technical decisions, architecture, and implementation approach.
98
+ - **tasks.md**: Break down implementation into checkboxed tasks.
99
+
100
+ For other schemas, follow the `instruction` field from the CLI output.
101
+
102
+ **Guardrails**
103
+ - Create ONE artifact per invocation
104
+ - Always read dependency artifacts before creating a new one
105
+ - Never skip artifacts or create out of order
106
+ - If context is unclear, ask the user before creating
107
+ - Verify the artifact file exists after writing before marking progress
108
+ - Use the schema's artifact sequence, don't assume specific artifact names
109
+ - **IMPORTANT**: `context` and `rules` are constraints for YOU, not content for the file
110
+ - Do NOT copy `<context>`, `<rules>`, `<project_context>` blocks into the artifact
111
+ - These guide what you write, but should never appear in the output
@@ -0,0 +1,171 @@
1
+ # OPSX: Explore
2
+
3
+ Enter explore mode - think through ideas, investigate problems, clarify requirements
4
+
5
+ Enter explore mode. Think deeply. Visualize freely. Follow the conversation wherever it goes.
6
+
7
+ **IMPORTANT: Explore mode is for thinking, not implementing.** You may read files, search code, and investigate the codebase, but you must NEVER write code or implement features. If the user asks you to implement something, remind them to exit explore mode first (e.g., start a change with `/opsx:new` or `/opsx:ff`). You MAY create OpenSpec artifacts (proposals, designs, specs) if the user asks—that's capturing thinking, not implementing.
8
+
9
+ **This is a stance, not a workflow.** There are no fixed steps, no required sequence, no mandatory outputs. You're a thinking partner helping the user explore.
10
+
11
+ **Input**: The argument after `/opsx:explore` is whatever the user wants to think about. Could be:
12
+ - A vague idea: "real-time collaboration"
13
+ - A specific problem: "the auth system is getting unwieldy"
14
+ - A change name: "add-dark-mode" (to explore in context of that change)
15
+ - A comparison: "postgres vs sqlite for this"
16
+ - Nothing (just enter explore mode)
17
+
18
+ ---
19
+
20
+ ## The Stance
21
+
22
+ - **Curious, not prescriptive** - Ask questions that emerge naturally, don't follow a script
23
+ - **Open threads, not interrogations** - Surface multiple interesting directions and let the user follow what resonates. Don't funnel them through a single path of questions.
24
+ - **Visual** - Use ASCII diagrams liberally when they'd help clarify thinking
25
+ - **Adaptive** - Follow interesting threads, pivot when new information emerges
26
+ - **Patient** - Don't rush to conclusions, let the shape of the problem emerge
27
+ - **Grounded** - Explore the actual codebase when relevant, don't just theorize
28
+
29
+ ---
30
+
31
+ ## What You Might Do
32
+
33
+ Depending on what the user brings, you might:
34
+
35
+ **Explore the problem space**
36
+ - Ask clarifying questions that emerge from what they said
37
+ - Challenge assumptions
38
+ - Reframe the problem
39
+ - Find analogies
40
+
41
+ **Investigate the codebase**
42
+ - Map existing architecture relevant to the discussion
43
+ - Find integration points
44
+ - Identify patterns already in use
45
+ - Surface hidden complexity
46
+
47
+ **Compare options**
48
+ - Brainstorm multiple approaches
49
+ - Build comparison tables
50
+ - Sketch tradeoffs
51
+ - Recommend a path (if asked)
52
+
53
+ **Visualize**
54
+ ```
55
+ ┌─────────────────────────────────────────┐
56
+ │ Use ASCII diagrams liberally │
57
+ ├─────────────────────────────────────────┤
58
+ │ │
59
+ │ ┌────────┐ ┌────────┐ │
60
+ │ │ State │────────▶│ State │ │
61
+ │ │ A │ │ B │ │
62
+ │ └────────┘ └────────┘ │
63
+ │ │
64
+ │ System diagrams, state machines, │
65
+ │ data flows, architecture sketches, │
66
+ │ dependency graphs, comparison tables │
67
+ │ │
68
+ └─────────────────────────────────────────┘
69
+ ```
70
+
71
+ **Surface risks and unknowns**
72
+ - Identify what could go wrong
73
+ - Find gaps in understanding
74
+ - Suggest spikes or investigations
75
+
76
+ ---
77
+
78
+ ## OpenSpec Awareness
79
+
80
+ You have full context of the OpenSpec system. Use it naturally, don't force it.
81
+
82
+ ### Check for context
83
+
84
+ At the start, quickly check what exists:
85
+ ```bash
86
+ acfm spec list --json
87
+ ```
88
+
89
+ This tells you:
90
+ - If there are active changes
91
+ - Their names, schemas, and status
92
+ - What the user might be working on
93
+
94
+ If the user mentioned a specific change name, read its artifacts for context.
95
+
96
+ ### When no change exists
97
+
98
+ Think freely. When insights crystallize, you might offer:
99
+
100
+ - "This feels solid enough to start a change. Want me to create one?"
101
+ → Can transition to `/opsx:new` or `/opsx:ff`
102
+ - Or keep exploring - no pressure to formalize
103
+
104
+ ### When a change exists
105
+
106
+ If the user mentions a change or you detect one is relevant:
107
+
108
+ 1. **Read existing artifacts for context**
109
+ - `openspec/changes/<name>/proposal.md`
110
+ - `openspec/changes/<name>/design.md`
111
+ - `openspec/changes/<name>/tasks.md`
112
+ - etc.
113
+
114
+ 2. **Reference them naturally in conversation**
115
+ - "Your design mentions using Redis, but we just realized SQLite fits better..."
116
+ - "The proposal scopes this to premium users, but we're now thinking everyone..."
117
+
118
+ 3. **Offer to capture when decisions are made**
119
+
120
+ | Insight Type | Where to Capture |
121
+ |--------------|------------------|
122
+ | New requirement discovered | `specs/<capability>/spec.md` |
123
+ | Requirement changed | `specs/<capability>/spec.md` |
124
+ | Design decision made | `design.md` |
125
+ | Scope changed | `proposal.md` |
126
+ | New work identified | `tasks.md` |
127
+ | Assumption invalidated | Relevant artifact |
128
+
129
+ Example offers:
130
+ - "That's a design decision. Capture it in design.md?"
131
+ - "This is a new requirement. Add it to specs?"
132
+ - "This changes scope. Update the proposal?"
133
+
134
+ 4. **The user decides** - Offer and move on. Don't pressure. Don't auto-capture.
135
+
136
+ ---
137
+
138
+ ## What You Don't Have To Do
139
+
140
+ - Follow a script
141
+ - Ask the same questions every time
142
+ - Produce a specific artifact
143
+ - Reach a conclusion
144
+ - Stay on topic if a tangent is valuable
145
+ - Be brief (this is thinking time)
146
+
147
+ ---
148
+
149
+ ## Ending Discovery
150
+
151
+ There's no required ending. Discovery might:
152
+
153
+ - **Flow into action**: "Ready to start? `/opsx:new` or `/opsx:ff`"
154
+ - **Result in artifact updates**: "Updated design.md with these decisions"
155
+ - **Just provide clarity**: User has what they need, moves on
156
+ - **Continue later**: "We can pick this up anytime"
157
+
158
+ When things crystallize, you might offer a summary - but it's optional. Sometimes the thinking IS the value.
159
+
160
+ ---
161
+
162
+ ## Guardrails
163
+
164
+ - **Don't implement** - Never write code or implement features. Creating OpenSpec artifacts is fine, writing application code is not.
165
+ - **Don't fake understanding** - If something is unclear, dig deeper
166
+ - **Don't rush** - Discovery is thinking time, not task time
167
+ - **Don't force structure** - Let patterns emerge naturally
168
+ - **Don't auto-capture** - Offer to save insights, don't just do it
169
+ - **Do visualize** - A good diagram is worth many paragraphs
170
+ - **Do explore the codebase** - Ground discussions in reality
171
+ - **Do question assumptions** - Including the user's and your own
@@ -0,0 +1,91 @@
1
+ # OPSX: Fast Forward
2
+
3
+ Create a change and generate all artifacts needed for implementation in one go
4
+
5
+ Fast-forward through artifact creation - generate everything needed to start implementation.
6
+
7
+ **Input**: The argument after `/opsx:ff` is the change name (kebab-case), OR a description of what the user wants to build.
8
+
9
+ **Steps**
10
+
11
+ 1. **If no input provided, ask what they want to build**
12
+
13
+ Use the **AskUserQuestion tool** (open-ended, no preset options) to ask:
14
+ > "What change do you want to work on? Describe what you want to build or fix."
15
+
16
+ From their description, derive a kebab-case name (e.g., "add user authentication" → `add-user-auth`).
17
+
18
+ **IMPORTANT**: Do NOT proceed without understanding what the user wants to build.
19
+
20
+ 2. **Create the change directory**
21
+ ```bash
22
+ acfm spec new "<name>"
23
+ ```
24
+ This creates a scaffolded change at `openspec/changes/<name>/`.
25
+
26
+ 3. **Get the artifact build order**
27
+ ```bash
28
+ acfm spec status --change "<name>" --json
29
+ ```
30
+ Parse the JSON to get:
31
+ - `applyRequires`: array of artifact IDs needed before implementation (e.g., `["tasks"]`)
32
+ - `artifacts`: list of all artifacts with their status and dependencies
33
+
34
+ 4. **Create artifacts in sequence until apply-ready**
35
+
36
+ Use the **TodoWrite tool** to track progress through the artifacts.
37
+
38
+ Loop through artifacts in dependency order (artifacts with no pending dependencies first):
39
+
40
+ a. **For each artifact that is `ready` (dependencies satisfied)**:
41
+ - Get instructions:
42
+ ```bash
43
+ acfm spec instructions <artifact-id> --change "<name>" --json
44
+ ```
45
+ - The instructions JSON includes:
46
+ - `context`: Project background (constraints for you - do NOT include in output)
47
+ - `rules`: Artifact-specific rules (constraints for you - do NOT include in output)
48
+ - `template`: The structure to use for your output file
49
+ - `instruction`: Schema-specific guidance for this artifact type
50
+ - `outputPath`: Where to write the artifact
51
+ - `dependencies`: Completed artifacts to read for context
52
+ - Read any completed dependency files for context
53
+ - Create the artifact file using `template` as the structure
54
+ - Apply `context` and `rules` as constraints - but do NOT copy them into the file
55
+ - Show brief progress: "✓ Created <artifact-id>"
56
+
57
+ b. **Continue until all `applyRequires` artifacts are complete**
58
+ - After creating each artifact, re-run `acfm spec status --change "<name>" --json`
59
+ - Check if every artifact ID in `applyRequires` has `status: "done"` in the artifacts array
60
+ - Stop when all `applyRequires` artifacts are done
61
+
62
+ c. **If an artifact requires user input** (unclear context):
63
+ - Use **AskUserQuestion tool** to clarify
64
+ - Then continue with creation
65
+
66
+ 5. **Show final status**
67
+ ```bash
68
+ acfm spec status --change "<name>"
69
+ ```
70
+
71
+ **Output**
72
+
73
+ After completing all artifacts, summarize:
74
+ - Change name and location
75
+ - List of artifacts created with brief descriptions
76
+ - What's ready: "All artifacts created! Ready for implementation."
77
+ - Prompt: "Run `/opsx:apply` to start implementing."
78
+
79
+ **Artifact Creation Guidelines**
80
+
81
+ - Follow the `instruction` field from `acfm spec instructions` for each artifact type
82
+ - The schema defines what each artifact should contain - follow it
83
+ - Read dependency artifacts for context before creating new ones
84
+ - Use the `template` as a starting point, filling in based on context
85
+
86
+ **Guardrails**
87
+ - Create ALL artifacts needed for implementation (as defined by schema's `apply.requires`)
88
+ - Always read dependency artifacts before creating a new one
89
+ - If context is critically unclear, ask the user - but prefer making reasonable decisions to keep momentum
90
+ - If a change with that name already exists, ask if user wants to continue it or create a new one
91
+ - Verify each artifact file exists after writing before proceeding to next
@@ -0,0 +1,66 @@
1
+ # OPSX: New
2
+
3
+ Start a new change using the experimental artifact workflow (OPSX)
4
+
5
+ Start a new change using the experimental artifact-driven approach.
6
+
7
+ **Input**: The argument after `/opsx:new` is the change name (kebab-case), OR a description of what the user wants to build.
8
+
9
+ **Steps**
10
+
11
+ 1. **If no input provided, ask what they want to build**
12
+
13
+ Use the **AskUserQuestion tool** (open-ended, no preset options) to ask:
14
+ > "What change do you want to work on? Describe what you want to build or fix."
15
+
16
+ From their description, derive a kebab-case name (e.g., "add user authentication" → `add-user-auth`).
17
+
18
+ **IMPORTANT**: Do NOT proceed without understanding what the user wants to build.
19
+
20
+ 2. **Determine the workflow schema**
21
+
22
+ Use the default schema (omit `--schema`) unless the user explicitly requests a different workflow.
23
+
24
+ **Use a different schema only if the user mentions:**
25
+ - A specific schema name → use `--schema <name>`
26
+ - "show workflows" or "what workflows" → run `acfm spec schemas --json` and let them choose
27
+
28
+ **Otherwise**: Omit `--schema` to use the default.
29
+
30
+ 3. **Create the change directory**
31
+ ```bash
32
+ acfm spec new "<name>"
33
+ ```
34
+ Add `--schema <name>` only if the user requested a specific workflow.
35
+ This creates a scaffolded change at `openspec/changes/<name>/` with the selected schema.
36
+
37
+ 4. **Show the artifact status**
38
+ ```bash
39
+ acfm spec status --change "<name>"
40
+ ```
41
+ This shows which artifacts need to be created and which are ready (dependencies satisfied).
42
+
43
+ 5. **Get instructions for the first artifact**
44
+ The first artifact depends on the schema. Check the status output to find the first artifact with status "ready".
45
+ ```bash
46
+ acfm spec instructions <first-artifact-id> --change "<name>"
47
+ ```
48
+ This outputs the template and context for creating the first artifact.
49
+
50
+ 6. **STOP and wait for user direction**
51
+
52
+ **Output**
53
+
54
+ After completing the steps, summarize:
55
+ - Change name and location
56
+ - Schema/workflow being used and its artifact sequence
57
+ - Current status (0/N artifacts complete)
58
+ - The template for the first artifact
59
+ - Prompt: "Ready to create the first artifact? Run `/opsx:continue` or just describe what this change is about and I'll draft it."
60
+
61
+ **Guardrails**
62
+ - Do NOT create any artifacts yet - just show the instructions
63
+ - Do NOT advance beyond showing the first artifact template
64
+ - If the name is invalid (not kebab-case), ask for a valid name
65
+ - If a change with that name already exists, suggest using `/opsx:continue` instead
66
+ - Pass --schema if using a non-default workflow