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,1108 @@
1
+ ---
2
+ name: code-maintainability
3
+ description: "Comprehensive guide to prevent unmaintainable code, especially from AI generation. Covers code duplication, documentation, error handling, naming conventions, architecture, performance, dependencies, modularity, testing, and technical debt prevention. Essential for code reviews and ensuring long-term code health."
4
+ ---
5
+
6
+ # Code Maintainability & Quality Skill
7
+
8
+ ## Vision and Purpose
9
+
10
+ This skill establishes maintainability as a critical quality attribute in code generation and review. It recognizes that AI-generated code often prioritizes immediate functionality over long-term maintainability, creating technical debt that compounds over time. This skill provides comprehensive guidelines, checklists, and best practices to ensure all code—especially AI-generated—is clean, readable, testable, and maintainable.
11
+
12
+ ## Critical Understanding: Why AI Code is Often Unmaintainable
13
+
14
+ AI models optimize for "working code" and "completing the task" before "maintainable architecture." This creates patterns that are functional today but become liabilities tomorrow.
15
+
16
+ ### Root Causes of AI Maintainability Failures
17
+
18
+ 1. **Functionality over Structure**: AI generates code that passes immediate tests but lacks proper architecture, creating monolithic functions and tight coupling.
19
+
20
+ 2. **Pattern Repetition from Training Data**: AI learns from codebases with varying quality standards, inheriting bad practices like magic numbers, poor naming, and spaghetti code.
21
+
22
+ 3. **Lack of Context Awareness**: AI doesn't understand your team's conventions, existing architecture, or long-term maintenance needs.
23
+
24
+ 4. **Boilerplate Bloat**: Studies show AI generates code with 8x more duplication than human developers, creating maintenance nightmares.
25
+
26
+ 5. **Happy Path Bias**: AI focuses on successful scenarios, neglecting error handling, edge cases, and failure modes.
27
+
28
+ ## The Maintainability Non-Negotiables
29
+
30
+ These rules must NEVER be violated, regardless of time pressure or "temporary" solutions:
31
+
32
+ 1. **No Code Duplication**: Don't repeat logic—extract to reusable functions, utilities, or shared components.
33
+
34
+ 2. **Document the "Why", Not the "What"**: Comments should explain business decisions and rationale, not restate the code.
35
+
36
+ 3. **Handle All Edge Cases**: Every function must consider null values, empty inputs, boundary conditions, and failures.
37
+
38
+ 4. **Consistent Naming**: Use clear, descriptive names that reveal intent. Avoid abbreviations and single-letter variables.
39
+
40
+ 5. **Single Responsibility**: Each function, class, and module should have one reason to change.
41
+
42
+ 6. **Test Everything**: All code paths—including error conditions—must have automated tests.
43
+
44
+ 7. **No Hardcoded Values**: Use constants, configuration, or environment variables for values that might change.
45
+
46
+ ## Comprehensive Maintainability Checklist
47
+
48
+ ### 1. Code Duplication and Bloat
49
+
50
+ **The Problem**: AI generates duplicated code blocks at 8x the rate of human developers. This creates maintenance overhead, increases bug propagation, and violates the DRY (Don't Repeat Yourself) principle.
51
+
52
+ #### Checklist
53
+
54
+ - [ ] **Detect duplicate blocks**: Search for functions with 90%+ identical logic
55
+ - Look for similar conditional structures repeated across files
56
+ - Identify loops with nearly identical processing logic
57
+ - Find validation patterns copied multiple times
58
+
59
+ - [ ] **Identify unnecessary layers**: Review wrapper functions that add no value
60
+ - `processData()` that only calls `coreProcessData()` with same arguments
61
+ - Adapter layers that don't transform anything
62
+ - Redundant abstraction hierarchies
63
+
64
+ - [ ] **Remove dead code**: Eliminate unused artifacts
65
+ - Variables declared but never referenced
66
+ - Import statements for unused dependencies
67
+ - Functions that are never called
68
+ - Commented-out code blocks
69
+ - Unreachable code paths
70
+
71
+ - [ ] **Measure code volume**: Compare against human-written equivalents
72
+ - If AI code is 2x+ longer, investigate bloat
73
+ - Look for verbose patterns that could be simplified
74
+ - Check for unnecessary intermediate variables
75
+
76
+ #### Verification Steps
77
+
78
+ 1. **Duplication Scan**: Use tools like SonarQube, jscpd, or PMD CPD to find duplicates
79
+ 2. **Dead Code Analysis**: Use IDE inspections or tools like vulture (Python), unimport
80
+ 3. **Complexity Metrics**: Calculate lines of code per function and cyclomatic complexity
81
+
82
+ #### Common AI Mistakes to Avoid
83
+
84
+ ```python
85
+ # ❌ NEVER DO THIS - Duplicated logic
86
+ def process_user_data(data):
87
+ if data is None:
88
+ return None
89
+ cleaned = data.strip().lower()
90
+ validated = validate_length(cleaned, 100)
91
+ return validated
92
+
93
+ def process_product_data(data):
94
+ if data is None:
95
+ return None
96
+ cleaned = data.strip().lower()
97
+ validated = validate_length(cleaned, 100)
98
+ return validated
99
+
100
+ # ✅ DO THIS INSTEAD - Reusable function
101
+ def normalize_text(data, max_length=100):
102
+ """
103
+ Normalize text input by cleaning and validating.
104
+
105
+ Business Rule: All text inputs must be normalized before storage
106
+ to ensure consistency in search and display.
107
+
108
+ Args:
109
+ data: Raw text input
110
+ max_length: Maximum allowed length (default: 100)
111
+
112
+ Returns:
113
+ Normalized string or None if input is None
114
+ """
115
+ if data is None:
116
+ return None
117
+ cleaned = data.strip().lower()
118
+ return validate_length(cleaned, max_length)
119
+
120
+ # Usage
121
+ user_name = normalize_text(raw_user_name)
122
+ product_name = normalize_text(raw_product_name)
123
+ ```
124
+
125
+ ```javascript
126
+ // ❌ NEVER DO THIS - Unnecessary wrapper
127
+ function processData(data) {
128
+ return coreProcessData(data); // No transformation, no value added
129
+ }
130
+
131
+ // ✅ DO THIS INSTEAD - Use core function directly
132
+ // Or add meaningful transformation:
133
+ function processAndValidateData(data) {
134
+ const processed = coreProcessData(data);
135
+ return validateBusinessRules(processed);
136
+ }
137
+ ```
138
+
139
+ ---
140
+
141
+ ### 2. Documentation and Comments
142
+
143
+ **The Problem**: AI generates comments that merely restate what the code does, providing zero value. Missing context about business decisions, edge cases, and integration points makes maintenance difficult.
144
+
145
+ #### Checklist
146
+
147
+ - [ ] **Explain the "Why"**: Every non-obvious decision needs explanation
148
+ - Why was this algorithm chosen?
149
+ - Why this specific limit/boundary?
150
+ - What business rule does this enforce?
151
+
152
+ - [ ] **Document business context**: Include domain knowledge
153
+ - Reference to requirements or tickets
154
+ - Explanation of business constraints
155
+ - Links to related documentation
156
+
157
+ - [ ] **Document integration points**: Explain external dependencies
158
+ - How this code interacts with other modules
159
+ - Expected contract of external APIs
160
+ - Side effects and state changes
161
+
162
+ - [ ] **Document edge cases**: Explicitly call out special handling
163
+ - Null/undefined behavior
164
+ - Empty collection handling
165
+ - Boundary conditions
166
+ - Concurrency considerations
167
+
168
+ - [ ] **Useful vs. useless comments**: Ensure comments add value
169
+ - ❌ Bad: `// increment counter` (restates code)
170
+ - ✅ Good: `// API retry limit: max 3 attempts with exponential backoff starting at 100ms`
171
+
172
+ #### Verification Steps
173
+
174
+ 1. **Comment Review**: Check that comments explain rationale, not mechanics
175
+ 2. **Documentation Coverage**: Ensure all public APIs have docstrings/JSDoc
176
+ 3. **Edge Case Documentation**: Verify all special cases are documented
177
+
178
+ #### Common AI Mistakes to Avoid
179
+
180
+ ```python
181
+ # ❌ NEVER DO THIS - Useless comment
182
+ # increment counter
183
+ counter += 1
184
+
185
+ # ❌ NEVER DO THIS - Restating the obvious
186
+ def calculate_total(price, quantity):
187
+ # multiply price by quantity
188
+ return price * quantity
189
+
190
+ # ✅ DO THIS INSTEAD - Explain business context
191
+ def calculate_total(price, quantity):
192
+ """
193
+ Calculate order total with volume discount rules.
194
+
195
+ Business Rules:
196
+ - Base price * quantity for orders < 10 items
197
+ - 5% discount for orders 10-49 items
198
+ - 10% discount for orders 50+ items
199
+
200
+ Args:
201
+ price: Unit price in cents (integer to avoid floating point errors)
202
+ quantity: Number of items ordered
203
+
204
+ Returns:
205
+ Total amount in cents
206
+
207
+ Edge Cases:
208
+ - Returns 0 if quantity is 0
209
+ - Raises ValueError if price or quantity is negative
210
+ """
211
+ if quantity == 0:
212
+ return 0
213
+
214
+ base_total = price * quantity
215
+
216
+ if quantity >= 50:
217
+ return int(base_total * 0.90) # 10% discount
218
+ elif quantity >= 10:
219
+ return int(base_total * 0.95) # 5% discount
220
+
221
+ return base_total
222
+ ```
223
+
224
+ ```javascript
225
+ // ✅ DO THIS INSTEAD - Document integration context
226
+ /**
227
+ * Process payment through Stripe integration.
228
+ *
229
+ * Integration Notes:
230
+ * - Requires STRIPE_SECRET_KEY environment variable
231
+ * - Webhook endpoint must be configured at /webhooks/stripe
232
+ * - Idempotency key prevents duplicate charges on retries
233
+ *
234
+ * Error Handling:
235
+ * - Card errors: Returns 402 with user-friendly message
236
+ * - API errors: Returns 500, logs to Sentry
237
+ * - Network errors: Retries up to 3 times with exponential backoff
238
+ *
239
+ * @param {Object} paymentData - Payment details
240
+ * @param {string} paymentData.amount - Amount in cents
241
+ * @param {string} paymentData.currency - ISO 4217 currency code
242
+ * @returns {Promise<PaymentResult>} Payment confirmation or error
243
+ */
244
+ async function processStripePayment(paymentData) {
245
+ // Implementation with proper error handling...
246
+ }
247
+ ```
248
+
249
+ ---
250
+
251
+ ### 3. Error Handling and Edge Cases
252
+
253
+ **The Problem**: AI focuses on "happy path" scenarios, neglecting null checks, exceptions, and failure modes. This creates fragile code that fails unpredictably in production.
254
+
255
+ #### Checklist
256
+
257
+ - [ ] **Null safety**: Protect against null/undefined values
258
+ - Validate all input parameters at function entry
259
+ - Use optional chaining where appropriate
260
+ - Fail fast with clear error messages
261
+
262
+ - [ ] **Exception handling**: Catch errors at risk points
263
+ - Database operations
264
+ - External API calls
265
+ - File system operations
266
+ - Parsing operations (JSON, XML, dates)
267
+ - Network requests
268
+
269
+ - [ ] **Graceful degradation**: Provide fallbacks when possible
270
+ - Default values for missing configuration
271
+ - Cached responses when APIs fail
272
+ - Circuit breakers for external dependencies
273
+
274
+ - [ ] **Error logging**: Log appropriately for debugging
275
+ - Include context (function name, input parameters, stack trace)
276
+ - Use appropriate log levels (error, warn, info)
277
+ - Never log sensitive data (passwords, tokens, PII)
278
+
279
+ - [ ] **Edge case testing**: Handle boundary conditions
280
+ - Empty strings and arrays
281
+ - Zero and negative numbers
282
+ - Maximum integer values
283
+ - Special characters and Unicode
284
+ - Maximum file sizes
285
+ - Timeout scenarios
286
+
287
+ #### Verification Steps
288
+
289
+ 1. **Null Injection**: Pass null/undefined to all parameters
290
+ 2. **Exception Testing**: Force errors in external dependencies
291
+ 3. **Boundary Testing**: Test minimum, maximum, and boundary values
292
+ 4. **Fuzz Testing**: Randomize inputs to find unexpected failures
293
+
294
+ #### Common AI Mistakes to Avoid
295
+
296
+ ```python
297
+ # ❌ NEVER DO THIS - No null checks or error handling
298
+ def process_user(user):
299
+ email = user['email'] # KeyError if key missing
300
+ send_email(email) # Fails if email is None
301
+
302
+ # ✅ DO THIS INSTEAD - Comprehensive error handling
303
+ def process_user(user):
304
+ """
305
+ Process user data with validation and error handling.
306
+
307
+ Args:
308
+ user: Dictionary containing user data
309
+
310
+ Raises:
311
+ ValueError: If user data is invalid
312
+ EmailError: If email sending fails
313
+ """
314
+ if not user:
315
+ raise ValueError("User data is required")
316
+
317
+ email = user.get('email')
318
+ if not email:
319
+ raise ValueError("User email is required")
320
+
321
+ if not is_valid_email(email):
322
+ raise ValueError(f"Invalid email format: {email}")
323
+
324
+ try:
325
+ send_email(email)
326
+ except EmailException as e:
327
+ logger.error(f"Failed to send email to {email}: {e}")
328
+ raise EmailError(f"Could not send welcome email") from e
329
+ ```
330
+
331
+ ```javascript
332
+ // ❌ NEVER DO THIS - Missing error handling
333
+ async function fetchUserData(userId) {
334
+ const response = await fetch(`/api/users/${userId}`);
335
+ const data = await response.json(); // Crashes if not valid JSON
336
+ return data;
337
+ }
338
+
339
+ // ✅ DO THIS INSTEAD - Robust error handling
340
+ async function fetchUserData(userId) {
341
+ if (!userId) {
342
+ throw new ValidationError('User ID is required');
343
+ }
344
+
345
+ try {
346
+ const response = await fetch(`/api/users/${userId}`);
347
+
348
+ if (!response.ok) {
349
+ if (response.status === 404) {
350
+ throw new NotFoundError(`User ${userId} not found`);
351
+ }
352
+ throw new ApiError(`API error: ${response.status}`);
353
+ }
354
+
355
+ const data = await response.json();
356
+
357
+ if (!data || typeof data !== 'object') {
358
+ throw new DataError('Invalid response format');
359
+ }
360
+
361
+ return data;
362
+
363
+ } catch (error) {
364
+ if (error instanceof ValidationError || error instanceof NotFoundError) {
365
+ throw error; // Re-throw known errors
366
+ }
367
+
368
+ logger.error('Failed to fetch user data', {
369
+ userId,
370
+ error: error.message,
371
+ stack: error.stack
372
+ });
373
+
374
+ throw new ServiceError('Unable to retrieve user data');
375
+ }
376
+ }
377
+ ```
378
+
379
+ ---
380
+
381
+ ### 4. Naming Conventions
382
+
383
+ **The Problem**: AI generates ambiguous, inconsistent, or abbreviated names that obscure intent. Poor naming is one of the biggest barriers to code understanding.
384
+
385
+ #### Checklist
386
+
387
+ - [ ] **Descriptive variable names**: Reveal purpose and content
388
+ - ❌ Avoid: `data`, `temp`, `result`, `value`, `x`, `y`
389
+ - ✅ Use: `userEmailList`, `calculatedTaxAmount`, `pendingOrderCount`
390
+
391
+ - [ ] **Consistent naming patterns**: Follow conventions throughout
392
+ - camelCase for JavaScript/TypeScript variables and functions
393
+ - PascalCase for classes and constructors
394
+ - snake_case for Python variables and functions
395
+ - SCREAMING_SNAKE_CASE for constants
396
+ - Boolean prefix: `is`, `has`, `can`, `should`
397
+
398
+ - [ ] **Accurate naming**: Names should match actual purpose
399
+ - `isValid` should not mean `isUserEmailVerified`
400
+ - Function names should describe what they do, not how
401
+
402
+ - [ ] **Avoid abbreviations**: Unless universally understood
403
+ - ❌ Avoid: `usrNm`, `dta`, `proc`, `calc`, `fn`
404
+ - ✅ Acceptable: `id`, `url`, `api`, `html` (domain standards)
405
+
406
+ - [ ] **Function naming**: Use action verbs
407
+ - `fetch`, `get`, `create`, `update`, `delete`, `process`, `validate`, `calculate`, `transform`
408
+
409
+ #### Verification Steps
410
+
411
+ 1. **Name Review**: Read names without context—do they make sense?
412
+ 2. **Abbreviation Check**: Ensure all abbreviations are domain-appropriate
413
+ 3. **Consistency Audit**: Verify naming conventions are applied consistently
414
+
415
+ #### Common AI Mistakes to Avoid
416
+
417
+ ```python
418
+ # ❌ NEVER DO THIS - Ambiguous names
419
+ def calc(a, b):
420
+ return a * b
421
+
422
+ data = get_data()
423
+ for x in data:
424
+ process(x)
425
+
426
+ # ✅ DO THIS INSTEAD - Clear, descriptive names
427
+ def calculate_order_total(item_price, quantity):
428
+ """Calculate total price for order line item."""
429
+ return item_price * quantity
430
+
431
+ user_orders = fetch_pending_orders()
432
+ for order in user_orders:
433
+ process_order_payment(order)
434
+ ```
435
+
436
+ ```javascript
437
+ // ❌ NEVER DO THIS - Inconsistent naming and abbreviations
438
+ let usrNm = getUserName();
439
+ let is_valid = validateEmail(email);
440
+ function procData(d) { /* ... */ }
441
+
442
+ // ✅ DO THIS INSTEAD - Consistent, clear naming
443
+ const userName = getUserName();
444
+ const isEmailValid = validateEmail(email);
445
+ function processUserData(userData) { /* ... */ }
446
+
447
+ // Boolean naming convention
448
+ const isAuthenticated = checkAuthStatus();
449
+ const hasPermission = verifyUserPermission('admin');
450
+ const canEdit = determineEditAccess(document);
451
+ ```
452
+
453
+ ---
454
+
455
+ ### 5. Architecture and Coupling
456
+
457
+ **The Problem**: AI generates code with excessive coupling, mixing concerns, and inconsistent patterns. This makes changes ripple through the codebase and violates SOLID principles.
458
+
459
+ #### Checklist
460
+
461
+ - [ ] **Respect abstractions**: Don't bypass interfaces
462
+ - Reference interfaces/abstract types, not concrete implementations
463
+ - Use dependency injection instead of hardcoded dependencies
464
+ - Follow the Dependency Inversion Principle
465
+
466
+ - [ ] **Loose coupling**: Minimize inter-module dependencies
467
+ - Changes in one module shouldn't break unrelated modules
468
+ - Use events or message passing for loose communication
469
+ - Apply the Law of Demeter
470
+
471
+ - [ ] **Consistent patterns**: Use same approach for similar problems
472
+ - Don't mix Singleton, Factory, and direct instantiation arbitrarily
473
+ - Establish and follow architectural patterns
474
+ - Use established design patterns appropriately
475
+
476
+ - [ ] **Single Responsibility**: One reason to change per component
477
+ - Functions: One task
478
+ - Classes: One responsibility
479
+ - Modules: One domain concern
480
+
481
+ - [ ] **Separation of concerns**: Keep layers distinct
482
+ - Presentation/UI logic separate from business logic
483
+ - Business logic separate from data access
484
+ - Validation centralized, not scattered
485
+
486
+ #### Verification Steps
487
+
488
+ 1. **Dependency Analysis**: Use tools like madge, dependency-cruiser
489
+ 2. **Change Impact Analysis**: Change one module, see what breaks
490
+ 3. **Architecture Review**: Verify adherence to established patterns
491
+
492
+ #### Common AI Mistakes to Avoid
493
+
494
+ ```python
495
+ # ❌ NEVER DO THIS - High coupling, mixed concerns
496
+ class UserService:
497
+ def create_user(self, data):
498
+ # Validation mixed with business logic
499
+ if not data.get('email'):
500
+ raise ValueError("Email required")
501
+
502
+ # Direct database access mixed in
503
+ db = Database.connect("localhost", "user", "pass123")
504
+ cursor = db.cursor()
505
+ cursor.execute("INSERT INTO users ...")
506
+
507
+ # Email sending mixed in
508
+ smtp = SMTP("smtp.gmail.com")
509
+ smtp.sendmail("welcome@example.com", data['email'], "Welcome!")
510
+
511
+ # Logging mixed in
512
+ with open("/var/log/users.log", "a") as f:
513
+ f.write(f"User created: {data['email']}\n")
514
+
515
+ # ✅ DO THIS INSTEAD - Separated concerns
516
+ class UserValidator:
517
+ """Validates user input data."""
518
+
519
+ def validate_create_data(self, data):
520
+ if not data.get('email'):
521
+ raise ValidationError("Email is required")
522
+ if not is_valid_email(data['email']):
523
+ raise ValidationError("Invalid email format")
524
+ return data
525
+
526
+ class UserRepository:
527
+ """Handles user data persistence."""
528
+
529
+ def __init__(self, db_connection):
530
+ self._db = db_connection
531
+
532
+ def create(self, user_data):
533
+ # Database operations only
534
+ return self._db.insert('users', user_data)
535
+
536
+ class NotificationService:
537
+ """Handles user notifications."""
538
+
539
+ def __init__(self, email_client, logger):
540
+ self._email = email_client
541
+ self._logger = logger
542
+
543
+ def send_welcome_email(self, user_email):
544
+ self._email.send(user_email, "Welcome!", template="welcome")
545
+ self._logger.info(f"Welcome email sent to {user_email}")
546
+
547
+ class UserService:
548
+ """Orchestrates user creation with proper separation."""
549
+
550
+ def __init__(self, validator, repository, notifications):
551
+ self._validator = validator
552
+ self._repository = repository
553
+ self._notifications = notifications
554
+
555
+ def create_user(self, user_data):
556
+ validated_data = self._validator.validate_create_data(user_data)
557
+ user = self._repository.create(validated_data)
558
+ self._notifications.send_welcome_email(user.email)
559
+ return user
560
+ ```
561
+
562
+ ---
563
+
564
+ ### 6. Performance and Efficiency
565
+
566
+ **The Problem**: AI prioritizes clarity over efficiency, often generating code with N+1 queries, excessive I/O, and memory waste that becomes problematic at scale.
567
+
568
+ #### Checklist
569
+
570
+ - [ ] **Database optimization**: Efficient queries
571
+ - Eliminate N+1 queries (queries inside loops)
572
+ - Use eager loading/joins where appropriate
573
+ - Implement pagination for large result sets
574
+ - Add necessary database indexes
575
+ - Only select needed columns
576
+
577
+ - [ ] **Minimize I/O operations**: Batch operations when possible
578
+ - Batch database inserts/updates
579
+ - Bulk API requests instead of individual calls
580
+ - Efficient file operations (streaming, buffering)
581
+
582
+ - [ ] **Memory efficiency**: Avoid unnecessary allocations
583
+ - Don't create copies when references suffice
584
+ - Use generators for large datasets
585
+ - Release resources promptly
586
+
587
+ - [ ] **Async/concurrency**: Don't block on I/O
588
+ - Use async/await for network calls
589
+ - Don't perform synchronous operations in event loops
590
+ - Implement proper concurrency controls
591
+
592
+ - [ ] **Algorithm efficiency**: Choose appropriate algorithms
593
+ - Avoid O(n²) when O(n log n) or O(n) is possible
594
+ - Consider time vs. space tradeoffs
595
+ - Profile performance-critical code
596
+
597
+ #### Verification Steps
598
+
599
+ 1. **Query Analysis**: Use EXPLAIN plans and query log analysis
600
+ 2. **Load Testing**: Test with realistic data volumes
601
+ 3. **Profiling**: Use profilers to identify bottlenecks
602
+ 4. **Memory Profiling**: Check for leaks and excessive allocation
603
+
604
+ #### Common AI Mistakes to Avoid
605
+
606
+ ```python
607
+ # ❌ NEVER DO THIS - N+1 query problem
608
+ users = User.query.all()
609
+ for user in users:
610
+ # This executes a query for EACH user!
611
+ orders = Order.query.filter_by(user_id=user.id).all()
612
+ process_orders(orders)
613
+
614
+ # ✅ DO THIS INSTEAD - Eager loading
615
+ # Single query with join
616
+ users_with_orders = db.session.query(User).options(
617
+ joinedload(User.orders)
618
+ ).all()
619
+
620
+ for user in users_with_orders:
621
+ process_orders(user.orders) # No additional queries
622
+ ```
623
+
624
+ ```javascript
625
+ // ❌ NEVER DO THIS - Sequential async operations
626
+ async function processUsers(userIds) {
627
+ const results = [];
628
+ for (const userId of userIds) {
629
+ // Each iteration waits for the previous to complete!
630
+ const user = await fetchUser(userId);
631
+ results.push(user);
632
+ }
633
+ return results;
634
+ }
635
+
636
+ // ✅ DO THIS INSTEAD - Parallel async operations
637
+ async function processUsers(userIds) {
638
+ // All requests fire in parallel
639
+ const promises = userIds.map(userId => fetchUser(userId));
640
+ return await Promise.all(promises);
641
+ }
642
+
643
+ // ✅ Or with concurrency limiting for large batches
644
+ async function processUsersBatched(userIds, batchSize = 10) {
645
+ const results = [];
646
+ for (let i = 0; i < userIds.length; i += batchSize) {
647
+ const batch = userIds.slice(i, i + batchSize);
648
+ const batchResults = await Promise.all(
649
+ batch.map(id => fetchUser(id))
650
+ );
651
+ results.push(...batchResults);
652
+ }
653
+ return results;
654
+ }
655
+ ```
656
+
657
+ ---
658
+
659
+ ### 7. Dependencies and Versioning
660
+
661
+ **The Problem**: AI may suggest packages that don't exist, use loose version constraints, or create dependency bloat with deep transitive dependency trees.
662
+
663
+ #### Checklist
664
+
665
+ - [ ] **Verify dependencies**: Ensure packages exist and are legitimate
666
+ - Check for typosquatting (slight misspellings of popular packages)
667
+ - Verify package is actively maintained
668
+ - Review package quality and security
669
+
670
+ - [ ] **Lock dependencies**: Use lockfiles for reproducible builds
671
+ - `package-lock.json` (npm)
672
+ - `yarn.lock` (yarn)
673
+ - `poetry.lock` (Poetry)
674
+ - `Cargo.lock` (Rust)
675
+ - `go.sum` (Go)
676
+
677
+ - [ ] **Version constraints**: Use appropriate versioning
678
+ - Pin exact versions for critical dependencies
679
+ - Use caret (^) or tilde (~) ranges thoughtfully
680
+ - Avoid wildcards (*) in production
681
+
682
+ - [ ] **Minimize dependencies**: Reduce attack surface
683
+ - Question every new dependency
684
+ - Prefer standard library solutions
685
+ - Remove unused dependencies
686
+
687
+ - [ ] **Audit regularly**: Check for vulnerabilities
688
+ - Run `npm audit`, `pip-audit`, `snyk test`
689
+ - Automate with Dependabot or similar
690
+ - Keep dependencies updated
691
+
692
+ #### Verification Steps
693
+
694
+ 1. **Dependency Audit**: Use `npm audit`, `safety check`, `snyk test`
695
+ 2. **License Check**: Verify license compatibility
696
+ 3. **Update Check**: Identify outdated dependencies
697
+ 4. **Bloat Analysis**: Check bundle size and dependency depth
698
+
699
+ #### Common AI Mistakes to Avoid
700
+
701
+ ```json
702
+ // ❌ NEVER DO THIS - Loose versions and unchecked packages
703
+ {
704
+ "dependencies": {
705
+ "express": "*",
706
+ "unknown-package": "^1.0.0", // Might not exist!
707
+ "left-pad": "1.0.0" // Check if really needed
708
+ }
709
+ }
710
+
711
+ // ✅ DO THIS INSTEAD - Specific versions with lockfile
712
+ {
713
+ "dependencies": {
714
+ "express": "^4.18.2",
715
+ "lodash": "^4.17.21"
716
+ }
717
+ }
718
+ // Always include package-lock.json in version control
719
+ ```
720
+
721
+ ---
722
+
723
+ ### 8. Modularity and Encapsulation
724
+
725
+ **The Problem**: AI generates code with unclear module boundaries, exposing internal details and creating fragile dependencies between modules.
726
+
727
+ #### Checklist
728
+
729
+ - [ ] **Clear module boundaries**: Changes in one module don't affect others unexpectedly
730
+ - Define public APIs explicitly
731
+ - Keep implementation details private
732
+ - Use exports/imports thoughtfully
733
+
734
+ - [ ] **Encapsulation**: Hide internal state
735
+ - Private fields/methods for internal use only
736
+ - Getter/setter methods for controlled access
737
+ - Immutable data where possible
738
+
739
+ - [ ] **Single responsibility**: One reason to change
740
+ - Module focused on one domain concern
741
+ - Cohesive functionality
742
+ - Clear purpose and scope
743
+
744
+ - [ ] **Consistent interfaces**: Similar modules have similar interfaces
745
+ - Standardize input/output patterns
746
+ - Consistent error handling
747
+ - Predictable behavior
748
+
749
+ #### Verification Steps
750
+
751
+ 1. **API Review**: Verify public interfaces are clean and minimal
752
+ 2. **Encapsulation Test**: Try to access internal state—should be difficult
753
+ 3. **Cohesion Check**: Ensure module functions relate to single purpose
754
+
755
+ #### Common AI Mistakes to Avoid
756
+
757
+ ```python
758
+ # ❌ NEVER DO THIS - Poor encapsulation
759
+ class BankAccount:
760
+ def __init__(self):
761
+ self.balance = 0 # Public field, can be modified directly
762
+ self.transactions = [] # Internal state exposed
763
+
764
+ account = BankAccount()
765
+ account.balance = 1000000 # Anyone can modify!
766
+
767
+ # ✅ DO THIS INSTEAD - Proper encapsulation
768
+ class BankAccount:
769
+ def __init__(self):
770
+ self._balance = 0 # Private field
771
+ self._transactions = [] # Private
772
+
773
+ @property
774
+ def balance(self):
775
+ """Read-only access to balance."""
776
+ return self._balance
777
+
778
+ def deposit(self, amount):
779
+ """Deposit funds with validation."""
780
+ if amount <= 0:
781
+ raise ValueError("Deposit amount must be positive")
782
+ self._balance += amount
783
+ self._transactions.append(Transaction('deposit', amount))
784
+
785
+ def get_transaction_history(self):
786
+ """Return copy of transaction history."""
787
+ return self._transactions.copy()
788
+
789
+ account = BankAccount()
790
+ account.deposit(100)
791
+ print(account.balance) # 100
792
+ # account.balance = 1000 # AttributeError: can't set attribute
793
+ ```
794
+
795
+ ---
796
+
797
+ ### 9. Testing and Quality Assurance
798
+
799
+ **The Problem**: AI generates tests that only cover happy paths with weak assertions, providing false confidence while missing edge cases and error conditions.
800
+
801
+ #### Checklist
802
+
803
+ - [ ] **Comprehensive test coverage**: More than happy paths
804
+ - Success cases
805
+ - Error cases
806
+ - Edge cases (null, empty, boundaries)
807
+ - Invalid inputs
808
+
809
+ - [ ] **Strong assertions**: Verify specific outcomes
810
+ - ❌ Weak: `expect(result).toBeDefined()`
811
+ - ✅ Strong: `expect(result).toEqual(expectedValue)`
812
+ - Verify exact values, not just existence
813
+
814
+ - [ ] **Test maintainability**: Tests should be clear and maintainable
815
+ - Descriptive test names explaining scenario
816
+ - Arrange-Act-Assert structure
817
+ - Shared setup using beforeEach/afterEach
818
+ - No test interdependencies
819
+
820
+ - [ ] **Test coverage goals**: Aim for high coverage with quality
821
+ - Minimum 70% coverage (preferably 80%+)
822
+ - Focus on critical paths
823
+ - Don't test implementation details
824
+
825
+ - [ ] **Integration testing**: Test component interactions
826
+ - API endpoint tests
827
+ - Database integration tests
828
+ - Third-party service mocks
829
+
830
+ #### Verification Steps
831
+
832
+ 1. **Coverage Analysis**: Use coverage tools (nyc, coverage.py, cargo tarpaulin)
833
+ 2. **Mutation Testing**: Verify test quality with mutation testing
834
+ 3. **Test Review**: Ensure tests are meaningful, not just coverage padding
835
+
836
+ #### Common AI Mistakes to Avoid
837
+
838
+ ```python
839
+ # ❌ NEVER DO THIS - Weak tests with poor coverage
840
+ def test_calculate():
841
+ result = calculate(5, 10)
842
+ assert result is not None # Too weak!
843
+
844
+ def test_process_data():
845
+ data = {"name": "test"}
846
+ result = process_data(data)
847
+ assert result # Just checks truthiness
848
+
849
+ # ✅ DO THIS INSTEAD - Comprehensive tests
850
+ import pytest
851
+
852
+ class TestOrderCalculator:
853
+ """Test suite for order total calculation."""
854
+
855
+ def test_calculate_simple_order(self):
856
+ """Should correctly calculate order without discounts."""
857
+ result = calculate_order_total(price=1000, quantity=5)
858
+ assert result == 5000
859
+
860
+ def test_calculate_with_small_discount(self):
861
+ """Should apply 5% discount for orders 10-49 items."""
862
+ result = calculate_order_total(price=100, quantity=10)
863
+ assert result == 950 # 1000 - 5%
864
+
865
+ def test_calculate_with_large_discount(self):
866
+ """Should apply 10% discount for orders 50+ items."""
867
+ result = calculate_order_total(price=100, quantity=50)
868
+ assert result == 4500 # 5000 - 10%
869
+
870
+ def test_calculate_zero_quantity(self):
871
+ """Should return 0 for empty orders."""
872
+ result = calculate_order_total(price=100, quantity=0)
873
+ assert result == 0
874
+
875
+ def test_calculate_negative_price_raises_error(self):
876
+ """Should reject negative prices."""
877
+ with pytest.raises(ValueError, match="Price cannot be negative"):
878
+ calculate_order_total(price=-100, quantity=5)
879
+
880
+ def test_calculate_large_numbers(self):
881
+ """Should handle maximum integer values."""
882
+ result = calculate_order_total(price=1000000, quantity=1000)
883
+ assert result == 900000000 # With 10% discount
884
+ ```
885
+
886
+ ```javascript
887
+ // ✅ DO THIS INSTEAD - Well-structured JavaScript tests
888
+ describe('UserService', () => {
889
+ describe('createUser', () => {
890
+ it('should create user with valid data', async () => {
891
+ const userData = {
892
+ email: 'test@example.com',
893
+ name: 'Test User'
894
+ };
895
+
896
+ const result = await userService.createUser(userData);
897
+
898
+ expect(result).toMatchObject({
899
+ id: expect.any(String),
900
+ email: 'test@example.com',
901
+ name: 'Test User',
902
+ createdAt: expect.any(Date)
903
+ });
904
+ });
905
+
906
+ it('should throw ValidationError for missing email', async () => {
907
+ const userData = { name: 'Test User' };
908
+
909
+ await expect(userService.createUser(userData))
910
+ .rejects
911
+ .toThrow(ValidationError);
912
+ });
913
+
914
+ it('should throw DuplicateError for existing email', async () => {
915
+ const userData = { email: 'existing@example.com', name: 'Test' };
916
+
917
+ await expect(userService.createUser(userData))
918
+ .rejects
919
+ .toThrow(DuplicateError);
920
+ });
921
+ });
922
+ });
923
+ ```
924
+
925
+ ---
926
+
927
+ ### 10. Technical Debt Prevention
928
+
929
+ **The Problem**: AI generates "temporary" solutions that become permanent, accumulating technical debt through shortcuts, hacks, and quick fixes.
930
+
931
+ #### Checklist
932
+
933
+ - [ ] **No TODO without tickets**: Every TODO needs tracking
934
+ - Create issue/ticket for each TODO
935
+ - Include TODO with ticket reference in code
936
+ - Schedule technical debt sprints
937
+
938
+ - [ ] **Avoid temporary hacks**: Shortcuts become permanent
939
+ - Don't commit "quick fixes" that bypass architecture
940
+ - Refactor instead of layering hacks
941
+ - Document workarounds and plan proper solutions
942
+
943
+ - [ ] **Configuration over code**: Make behavior configurable
944
+ - Magic numbers as named constants
945
+ - Feature flags for toggling behavior
946
+ - Environment-specific configuration
947
+
948
+ - [ ] **Version control discipline**: Clean commit history
949
+ - Descriptive commit messages
950
+ - Logical, atomic commits
951
+ - No debugging code or secrets in commits
952
+
953
+ #### Verification Steps
954
+
955
+ 1. **TODO Audit**: Find all TODOs and verify they have tickets
956
+ 2. **Code Smell Detection**: Use linters to find anti-patterns
957
+ 3. **Architecture Review**: Ensure shortcuts haven't compromised design
958
+
959
+ #### Common AI Mistakes to Avoid
960
+
961
+ ```python
962
+ # ❌ NEVER DO THIS - Hardcoded magic numbers
963
+ def calculate_shipping(weight):
964
+ if weight < 10:
965
+ return 5.99 # Magic number!
966
+ elif weight < 50:
967
+ return 10.99 # Magic number!
968
+ return 25.99 # Magic number!
969
+
970
+ # ✅ DO THIS INSTEAD - Named constants
971
+ SHIPPING_TIERS = [
972
+ (10, 5.99), # (max_weight_kg, cost_usd)
973
+ (50, 10.99),
974
+ (float('inf'), 25.99)
975
+ ]
976
+
977
+ def calculate_shipping(weight_kg):
978
+ """Calculate shipping cost based on weight tiers."""
979
+ for max_weight, cost in SHIPPING_TIERS:
980
+ if weight_kg < max_weight:
981
+ return cost
982
+ return SHIPPING_TIERS[-1][1]
983
+
984
+ # ❌ NEVER DO THIS - TODO without context
985
+ # TODO: Fix this later
986
+ def process_payment(data):
987
+ pass # Not implemented
988
+
989
+ # ✅ DO THIS INSTEAD - TODO with ticket reference
990
+ # TODO(PROJ-1234): Implement Stripe payment processing
991
+ # Currently returns mock success for development
992
+ # See: https://jira.company.com/browse/PROJ-1234
993
+ def process_payment(data):
994
+ logger.warning("Using mock payment processor")
995
+ return PaymentResult(success=True, transaction_id="mock-123")
996
+ ```
997
+
998
+ ---
999
+
1000
+ ## Implementation Workflow
1001
+
1002
+ ### Phase 1: Code Generation
1003
+ 1. Review AI-generated code against this checklist
1004
+ 2. Refactor duplicated logic immediately
1005
+ 3. Add documentation for business context
1006
+ 4. Implement proper error handling
1007
+
1008
+ ### Phase 2: Code Review
1009
+ 1. Verify naming conventions are followed
1010
+ 2. Check architecture and coupling
1011
+ 3. Ensure comprehensive test coverage
1012
+ 4. Validate performance considerations
1013
+
1014
+ ### Phase 3: Refactoring
1015
+ 1. Address code smells and duplication
1016
+ 2. Improve documentation where lacking
1017
+ 3. Add missing error handling
1018
+ 4. Optimize performance bottlenecks
1019
+
1020
+ ### Phase 4: Maintenance
1021
+ 1. Regular dependency audits
1022
+ 2. Technical debt tracking
1023
+ 3. Architecture evolution planning
1024
+ 4. Team knowledge sharing
1025
+
1026
+ ## Tools and Automation
1027
+
1028
+ ### Static Analysis
1029
+ - **ESLint/Prettier** (JavaScript/TypeScript) - Style and quality
1030
+ - **Flake8/Black/Pylint** (Python) - Style and complexity
1031
+ - **SonarQube** - Comprehensive code quality analysis
1032
+ - **CodeClimate** - Automated code review
1033
+
1034
+ ### Complexity Analysis
1035
+ - **ESLint complexity rules** - Cyclomatic complexity
1036
+ - **Xenon** (Python) - Code complexity monitoring
1037
+ - **CodeMetrics** (VS Code) - Complexity visualization
1038
+
1039
+ ### Duplication Detection
1040
+ - **jscpd** - Copy-paste detector for multiple languages
1041
+ - **PMD CPD** - Copy-paste detector
1042
+ - **SonarQube duplication detection**
1043
+
1044
+ ### Architecture Analysis
1045
+ - **madge** (JavaScript) - Dependency graph visualization
1046
+ - **dependency-cruiser** - Dependency validation
1047
+ - **pyreverse** (Python) - UML diagram generation
1048
+
1049
+ ### Testing
1050
+ - **Jest/Mocha** (JavaScript) - Testing frameworks
1051
+ - **pytest** (Python) - Testing framework
1052
+ - **Istanbul/nyc** - Code coverage
1053
+ - **Stryker** - Mutation testing
1054
+
1055
+ ## Priority Matrix for Code Review
1056
+
1057
+ When reviewing AI-generated code, prioritize in this order:
1058
+
1059
+ ### Critical (Fix Immediately)
1060
+ 1. **Error handling gaps** - Cause production bugs
1061
+ 2. **Code duplication** - Technical debt multiplier
1062
+ 3. **Security vulnerabilities** - Already covered by security skill
1063
+
1064
+ ### High Priority (Fix Before Merge)
1065
+ 4. **Insufficient documentation** - Blocks future maintenance
1066
+ 5. **Architecture violations** - Slows future changes
1067
+ 6. **Performance issues** - Scalability problems
1068
+
1069
+ ### Medium Priority (Fix in Sprint)
1070
+ 7. **Naming inconsistencies** - Reduces readability
1071
+ 8. **Test coverage gaps** - Refactoring risk
1072
+ 9. **Dependency bloat** - Increases attack surface
1073
+
1074
+ ### Low Priority (Address in Refactoring)
1075
+ 10. **Style inconsistencies** - Automated by linters
1076
+ 11. **Minor optimizations** - Profile first
1077
+
1078
+ ## Red Flags Reference
1079
+
1080
+ | Problem | Red Flag |
1081
+ |---------|----------|
1082
+ | Duplication | Same 5+ lines in 2+ places |
1083
+ | Documentation | No comments explaining "why" |
1084
+ | Error Handling | Missing try/catch in risky operations |
1085
+ | Edge Cases | Tests only with "happy path" values |
1086
+ | Naming | Variables named `data`, `temp`, `result` |
1087
+ | Coupling | Changing X breaks unrelated Y |
1088
+ | Performance | Queries in loops, no pagination |
1089
+ | Modularity | Module handles 5+ responsibilities |
1090
+ | Testing | <70% code coverage |
1091
+ | Dependencies | 3+ levels of transitive imports |
1092
+
1093
+ ## Conclusion
1094
+
1095
+ AI is excellent for generating functional boilerplate quickly, but requires expert review for maintainability. Treat AI-generated code as junior developer code: fast and functional, but needs architect review.
1096
+
1097
+ **Key Principles:**
1098
+ - Review for duplication, documentation, and error handling first
1099
+ - Maintain consistent architecture and naming
1100
+ - Test thoroughly including edge cases
1101
+ - Minimize dependencies and technical debt
1102
+ - Document business context and decisions
1103
+
1104
+ **Remember:** Code is read 10x more than it's written. Optimize for readability and maintainability over cleverness or brevity.
1105
+
1106
+ ---
1107
+
1108
+ *This skill should be consulted for every code generation task, every code review, and every refactoring effort. Maintainability is a competitive advantage.*