ac-framework 1.1.0 → 1.3.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 (556) hide show
  1. package/LICENSE +18 -0
  2. package/README.md +275 -24
  3. package/bin/postinstall.js +23 -0
  4. package/framework/.agent/skills/api-design-principles/SKILL.md +528 -0
  5. package/framework/.agent/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  6. package/framework/.agent/skills/api-design-principles/assets/rest-api-template.py +182 -0
  7. package/framework/.agent/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  8. package/framework/.agent/skills/api-design-principles/references/rest-best-practices.md +408 -0
  9. package/framework/.agent/skills/brainstorming/SKILL.md +54 -0
  10. package/framework/.agent/skills/changelog-generator/SKILL.md +104 -0
  11. package/framework/.agent/skills/code-maintainability/SKILL.md +1108 -0
  12. package/framework/.agent/skills/error-handling-patterns/SKILL.md +641 -0
  13. package/framework/.agent/skills/interface-design/SKILL.md +310 -0
  14. package/framework/.agent/skills/interface-design/references/example.md +86 -0
  15. package/framework/.agent/skills/interface-design/references/principles.md +235 -0
  16. package/framework/.agent/skills/interface-design/references/validation.md +48 -0
  17. package/framework/.agent/skills/project-index/SKILL.md +234 -0
  18. package/framework/.agent/skills/project-index/scripts/scan_codebase.py +47 -0
  19. package/framework/.agent/skills/project-index/templates/agent-template.md +18 -0
  20. package/framework/.agent/skills/project-index/templates/skill-template.md +20 -0
  21. package/framework/.agent/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  22. package/framework/.agent/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  23. package/framework/.agent/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  24. package/framework/.agent/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  25. package/framework/.agent/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  26. package/framework/.agent/skills/skill-writer/SKILL.md +385 -0
  27. package/framework/.agent/skills/systematic-debugging/SKILL.md +296 -0
  28. package/framework/.amazonq/skills/api-design-principles/SKILL.md +528 -0
  29. package/framework/.amazonq/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  30. package/framework/.amazonq/skills/api-design-principles/assets/rest-api-template.py +182 -0
  31. package/framework/.amazonq/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  32. package/framework/.amazonq/skills/api-design-principles/references/rest-best-practices.md +408 -0
  33. package/framework/.amazonq/skills/brainstorming/SKILL.md +54 -0
  34. package/framework/.amazonq/skills/changelog-generator/SKILL.md +104 -0
  35. package/framework/.amazonq/skills/code-maintainability/SKILL.md +1108 -0
  36. package/framework/.amazonq/skills/error-handling-patterns/SKILL.md +641 -0
  37. package/framework/.amazonq/skills/interface-design/SKILL.md +310 -0
  38. package/framework/.amazonq/skills/interface-design/references/example.md +86 -0
  39. package/framework/.amazonq/skills/interface-design/references/principles.md +235 -0
  40. package/framework/.amazonq/skills/interface-design/references/validation.md +48 -0
  41. package/framework/.amazonq/skills/project-index/SKILL.md +234 -0
  42. package/framework/.amazonq/skills/project-index/scripts/scan_codebase.py +47 -0
  43. package/framework/.amazonq/skills/project-index/templates/agent-template.md +18 -0
  44. package/framework/.amazonq/skills/project-index/templates/skill-template.md +20 -0
  45. package/framework/.amazonq/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  46. package/framework/.amazonq/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  47. package/framework/.amazonq/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  48. package/framework/.amazonq/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  49. package/framework/.amazonq/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  50. package/framework/.amazonq/skills/skill-writer/SKILL.md +385 -0
  51. package/framework/.amazonq/skills/systematic-debugging/SKILL.md +296 -0
  52. package/framework/.augment/skills/api-design-principles/SKILL.md +528 -0
  53. package/framework/.augment/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  54. package/framework/.augment/skills/api-design-principles/assets/rest-api-template.py +182 -0
  55. package/framework/.augment/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  56. package/framework/.augment/skills/api-design-principles/references/rest-best-practices.md +408 -0
  57. package/framework/.augment/skills/brainstorming/SKILL.md +54 -0
  58. package/framework/.augment/skills/changelog-generator/SKILL.md +104 -0
  59. package/framework/.augment/skills/code-maintainability/SKILL.md +1108 -0
  60. package/framework/.augment/skills/error-handling-patterns/SKILL.md +641 -0
  61. package/framework/.augment/skills/interface-design/SKILL.md +310 -0
  62. package/framework/.augment/skills/interface-design/references/example.md +86 -0
  63. package/framework/.augment/skills/interface-design/references/principles.md +235 -0
  64. package/framework/.augment/skills/interface-design/references/validation.md +48 -0
  65. package/framework/.augment/skills/project-index/SKILL.md +234 -0
  66. package/framework/.augment/skills/project-index/scripts/scan_codebase.py +47 -0
  67. package/framework/.augment/skills/project-index/templates/agent-template.md +18 -0
  68. package/framework/.augment/skills/project-index/templates/skill-template.md +20 -0
  69. package/framework/.augment/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  70. package/framework/.augment/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  71. package/framework/.augment/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  72. package/framework/.augment/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  73. package/framework/.augment/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  74. package/framework/.augment/skills/skill-writer/SKILL.md +385 -0
  75. package/framework/.augment/skills/systematic-debugging/SKILL.md +296 -0
  76. package/framework/.claude/skills/api-design-principles/SKILL.md +528 -0
  77. package/framework/.claude/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  78. package/framework/.claude/skills/api-design-principles/assets/rest-api-template.py +182 -0
  79. package/framework/.claude/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  80. package/framework/.claude/skills/api-design-principles/references/rest-best-practices.md +408 -0
  81. package/framework/.claude/skills/brainstorming/SKILL.md +54 -0
  82. package/framework/.claude/skills/changelog-generator/SKILL.md +104 -0
  83. package/framework/.claude/skills/code-maintainability/SKILL.md +1108 -0
  84. package/framework/.claude/skills/error-handling-patterns/SKILL.md +641 -0
  85. package/framework/.claude/skills/interface-design/SKILL.md +310 -0
  86. package/framework/.claude/skills/interface-design/references/example.md +86 -0
  87. package/framework/.claude/skills/interface-design/references/principles.md +235 -0
  88. package/framework/.claude/skills/interface-design/references/validation.md +48 -0
  89. package/framework/.claude/skills/project-index/SKILL.md +234 -0
  90. package/framework/.claude/skills/project-index/scripts/scan_codebase.py +47 -0
  91. package/framework/.claude/skills/project-index/templates/agent-template.md +18 -0
  92. package/framework/.claude/skills/project-index/templates/skill-template.md +20 -0
  93. package/framework/.claude/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  94. package/framework/.claude/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  95. package/framework/.claude/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  96. package/framework/.claude/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  97. package/framework/.claude/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  98. package/framework/.claude/skills/skill-writer/SKILL.md +385 -0
  99. package/framework/.claude/skills/systematic-debugging/SKILL.md +296 -0
  100. package/framework/.cline/skills/api-design-principles/SKILL.md +528 -0
  101. package/framework/.cline/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  102. package/framework/.cline/skills/api-design-principles/assets/rest-api-template.py +182 -0
  103. package/framework/.cline/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  104. package/framework/.cline/skills/api-design-principles/references/rest-best-practices.md +408 -0
  105. package/framework/.cline/skills/brainstorming/SKILL.md +54 -0
  106. package/framework/.cline/skills/changelog-generator/SKILL.md +104 -0
  107. package/framework/.cline/skills/code-maintainability/SKILL.md +1108 -0
  108. package/framework/.cline/skills/error-handling-patterns/SKILL.md +641 -0
  109. package/framework/.cline/skills/interface-design/SKILL.md +310 -0
  110. package/framework/.cline/skills/interface-design/references/example.md +86 -0
  111. package/framework/.cline/skills/interface-design/references/principles.md +235 -0
  112. package/framework/.cline/skills/interface-design/references/validation.md +48 -0
  113. package/framework/.cline/skills/project-index/SKILL.md +234 -0
  114. package/framework/.cline/skills/project-index/scripts/scan_codebase.py +47 -0
  115. package/framework/.cline/skills/project-index/templates/agent-template.md +18 -0
  116. package/framework/.cline/skills/project-index/templates/skill-template.md +20 -0
  117. package/framework/.cline/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  118. package/framework/.cline/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  119. package/framework/.cline/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  120. package/framework/.cline/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  121. package/framework/.cline/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  122. package/framework/.cline/skills/skill-writer/SKILL.md +385 -0
  123. package/framework/.cline/skills/systematic-debugging/SKILL.md +296 -0
  124. package/framework/.codebuddy/skills/api-design-principles/SKILL.md +528 -0
  125. package/framework/.codebuddy/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  126. package/framework/.codebuddy/skills/api-design-principles/assets/rest-api-template.py +182 -0
  127. package/framework/.codebuddy/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  128. package/framework/.codebuddy/skills/api-design-principles/references/rest-best-practices.md +408 -0
  129. package/framework/.codebuddy/skills/brainstorming/SKILL.md +54 -0
  130. package/framework/.codebuddy/skills/changelog-generator/SKILL.md +104 -0
  131. package/framework/.codebuddy/skills/code-maintainability/SKILL.md +1108 -0
  132. package/framework/.codebuddy/skills/error-handling-patterns/SKILL.md +641 -0
  133. package/framework/.codebuddy/skills/interface-design/SKILL.md +310 -0
  134. package/framework/.codebuddy/skills/interface-design/references/example.md +86 -0
  135. package/framework/.codebuddy/skills/interface-design/references/principles.md +235 -0
  136. package/framework/.codebuddy/skills/interface-design/references/validation.md +48 -0
  137. package/framework/.codebuddy/skills/project-index/SKILL.md +234 -0
  138. package/framework/.codebuddy/skills/project-index/scripts/scan_codebase.py +47 -0
  139. package/framework/.codebuddy/skills/project-index/templates/agent-template.md +18 -0
  140. package/framework/.codebuddy/skills/project-index/templates/skill-template.md +20 -0
  141. package/framework/.codebuddy/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  142. package/framework/.codebuddy/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  143. package/framework/.codebuddy/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  144. package/framework/.codebuddy/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  145. package/framework/.codebuddy/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  146. package/framework/.codebuddy/skills/skill-writer/SKILL.md +385 -0
  147. package/framework/.codebuddy/skills/systematic-debugging/SKILL.md +296 -0
  148. package/framework/.codex/skills/api-design-principles/SKILL.md +528 -0
  149. package/framework/.codex/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  150. package/framework/.codex/skills/api-design-principles/assets/rest-api-template.py +182 -0
  151. package/framework/.codex/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  152. package/framework/.codex/skills/api-design-principles/references/rest-best-practices.md +408 -0
  153. package/framework/.codex/skills/brainstorming/SKILL.md +54 -0
  154. package/framework/.codex/skills/changelog-generator/SKILL.md +104 -0
  155. package/framework/.codex/skills/code-maintainability/SKILL.md +1108 -0
  156. package/framework/.codex/skills/error-handling-patterns/SKILL.md +641 -0
  157. package/framework/.codex/skills/interface-design/SKILL.md +310 -0
  158. package/framework/.codex/skills/interface-design/references/example.md +86 -0
  159. package/framework/.codex/skills/interface-design/references/principles.md +235 -0
  160. package/framework/.codex/skills/interface-design/references/validation.md +48 -0
  161. package/framework/.codex/skills/project-index/SKILL.md +234 -0
  162. package/framework/.codex/skills/project-index/scripts/scan_codebase.py +47 -0
  163. package/framework/.codex/skills/project-index/templates/agent-template.md +18 -0
  164. package/framework/.codex/skills/project-index/templates/skill-template.md +20 -0
  165. package/framework/.codex/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  166. package/framework/.codex/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  167. package/framework/.codex/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  168. package/framework/.codex/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  169. package/framework/.codex/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  170. package/framework/.codex/skills/skill-writer/SKILL.md +385 -0
  171. package/framework/.codex/skills/systematic-debugging/SKILL.md +296 -0
  172. package/framework/.continue/skills/api-design-principles/SKILL.md +528 -0
  173. package/framework/.continue/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  174. package/framework/.continue/skills/api-design-principles/assets/rest-api-template.py +182 -0
  175. package/framework/.continue/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  176. package/framework/.continue/skills/api-design-principles/references/rest-best-practices.md +408 -0
  177. package/framework/.continue/skills/brainstorming/SKILL.md +54 -0
  178. package/framework/.continue/skills/changelog-generator/SKILL.md +104 -0
  179. package/framework/.continue/skills/code-maintainability/SKILL.md +1108 -0
  180. package/framework/.continue/skills/error-handling-patterns/SKILL.md +641 -0
  181. package/framework/.continue/skills/interface-design/SKILL.md +310 -0
  182. package/framework/.continue/skills/interface-design/references/example.md +86 -0
  183. package/framework/.continue/skills/interface-design/references/principles.md +235 -0
  184. package/framework/.continue/skills/interface-design/references/validation.md +48 -0
  185. package/framework/.continue/skills/project-index/SKILL.md +234 -0
  186. package/framework/.continue/skills/project-index/scripts/scan_codebase.py +47 -0
  187. package/framework/.continue/skills/project-index/templates/agent-template.md +18 -0
  188. package/framework/.continue/skills/project-index/templates/skill-template.md +20 -0
  189. package/framework/.continue/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  190. package/framework/.continue/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  191. package/framework/.continue/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  192. package/framework/.continue/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  193. package/framework/.continue/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  194. package/framework/.continue/skills/skill-writer/SKILL.md +385 -0
  195. package/framework/.continue/skills/systematic-debugging/SKILL.md +296 -0
  196. package/framework/.cospec/skills/api-design-principles/SKILL.md +528 -0
  197. package/framework/.cospec/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  198. package/framework/.cospec/skills/api-design-principles/assets/rest-api-template.py +182 -0
  199. package/framework/.cospec/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  200. package/framework/.cospec/skills/api-design-principles/references/rest-best-practices.md +408 -0
  201. package/framework/.cospec/skills/brainstorming/SKILL.md +54 -0
  202. package/framework/.cospec/skills/changelog-generator/SKILL.md +104 -0
  203. package/framework/.cospec/skills/code-maintainability/SKILL.md +1108 -0
  204. package/framework/.cospec/skills/error-handling-patterns/SKILL.md +641 -0
  205. package/framework/.cospec/skills/interface-design/SKILL.md +310 -0
  206. package/framework/.cospec/skills/interface-design/references/example.md +86 -0
  207. package/framework/.cospec/skills/interface-design/references/principles.md +235 -0
  208. package/framework/.cospec/skills/interface-design/references/validation.md +48 -0
  209. package/framework/.cospec/skills/project-index/SKILL.md +234 -0
  210. package/framework/.cospec/skills/project-index/scripts/scan_codebase.py +47 -0
  211. package/framework/.cospec/skills/project-index/templates/agent-template.md +18 -0
  212. package/framework/.cospec/skills/project-index/templates/skill-template.md +20 -0
  213. package/framework/.cospec/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  214. package/framework/.cospec/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  215. package/framework/.cospec/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  216. package/framework/.cospec/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  217. package/framework/.cospec/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  218. package/framework/.cospec/skills/skill-writer/SKILL.md +385 -0
  219. package/framework/.cospec/skills/systematic-debugging/SKILL.md +296 -0
  220. package/framework/.crush/skills/api-design-principles/SKILL.md +528 -0
  221. package/framework/.crush/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  222. package/framework/.crush/skills/api-design-principles/assets/rest-api-template.py +182 -0
  223. package/framework/.crush/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  224. package/framework/.crush/skills/api-design-principles/references/rest-best-practices.md +408 -0
  225. package/framework/.crush/skills/brainstorming/SKILL.md +54 -0
  226. package/framework/.crush/skills/changelog-generator/SKILL.md +104 -0
  227. package/framework/.crush/skills/code-maintainability/SKILL.md +1108 -0
  228. package/framework/.crush/skills/error-handling-patterns/SKILL.md +641 -0
  229. package/framework/.crush/skills/interface-design/SKILL.md +310 -0
  230. package/framework/.crush/skills/interface-design/references/example.md +86 -0
  231. package/framework/.crush/skills/interface-design/references/principles.md +235 -0
  232. package/framework/.crush/skills/interface-design/references/validation.md +48 -0
  233. package/framework/.crush/skills/project-index/SKILL.md +234 -0
  234. package/framework/.crush/skills/project-index/scripts/scan_codebase.py +47 -0
  235. package/framework/.crush/skills/project-index/templates/agent-template.md +18 -0
  236. package/framework/.crush/skills/project-index/templates/skill-template.md +20 -0
  237. package/framework/.crush/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  238. package/framework/.crush/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  239. package/framework/.crush/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  240. package/framework/.crush/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  241. package/framework/.crush/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  242. package/framework/.crush/skills/skill-writer/SKILL.md +385 -0
  243. package/framework/.crush/skills/systematic-debugging/SKILL.md +296 -0
  244. package/framework/.cursor/skills/api-design-principles/SKILL.md +528 -0
  245. package/framework/.cursor/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  246. package/framework/.cursor/skills/api-design-principles/assets/rest-api-template.py +182 -0
  247. package/framework/.cursor/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  248. package/framework/.cursor/skills/api-design-principles/references/rest-best-practices.md +408 -0
  249. package/framework/.cursor/skills/brainstorming/SKILL.md +54 -0
  250. package/framework/.cursor/skills/changelog-generator/SKILL.md +104 -0
  251. package/framework/.cursor/skills/code-maintainability/SKILL.md +1108 -0
  252. package/framework/.cursor/skills/error-handling-patterns/SKILL.md +641 -0
  253. package/framework/.cursor/skills/interface-design/SKILL.md +310 -0
  254. package/framework/.cursor/skills/interface-design/references/example.md +86 -0
  255. package/framework/.cursor/skills/interface-design/references/principles.md +235 -0
  256. package/framework/.cursor/skills/interface-design/references/validation.md +48 -0
  257. package/framework/.cursor/skills/project-index/SKILL.md +234 -0
  258. package/framework/.cursor/skills/project-index/scripts/scan_codebase.py +47 -0
  259. package/framework/.cursor/skills/project-index/templates/agent-template.md +18 -0
  260. package/framework/.cursor/skills/project-index/templates/skill-template.md +20 -0
  261. package/framework/.cursor/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  262. package/framework/.cursor/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  263. package/framework/.cursor/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  264. package/framework/.cursor/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  265. package/framework/.cursor/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  266. package/framework/.cursor/skills/skill-writer/SKILL.md +385 -0
  267. package/framework/.cursor/skills/systematic-debugging/SKILL.md +296 -0
  268. package/framework/.factory/skills/api-design-principles/SKILL.md +528 -0
  269. package/framework/.factory/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  270. package/framework/.factory/skills/api-design-principles/assets/rest-api-template.py +182 -0
  271. package/framework/.factory/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  272. package/framework/.factory/skills/api-design-principles/references/rest-best-practices.md +408 -0
  273. package/framework/.factory/skills/brainstorming/SKILL.md +54 -0
  274. package/framework/.factory/skills/changelog-generator/SKILL.md +104 -0
  275. package/framework/.factory/skills/code-maintainability/SKILL.md +1108 -0
  276. package/framework/.factory/skills/error-handling-patterns/SKILL.md +641 -0
  277. package/framework/.factory/skills/interface-design/SKILL.md +310 -0
  278. package/framework/.factory/skills/interface-design/references/example.md +86 -0
  279. package/framework/.factory/skills/interface-design/references/principles.md +235 -0
  280. package/framework/.factory/skills/interface-design/references/validation.md +48 -0
  281. package/framework/.factory/skills/project-index/SKILL.md +234 -0
  282. package/framework/.factory/skills/project-index/scripts/scan_codebase.py +47 -0
  283. package/framework/.factory/skills/project-index/templates/agent-template.md +18 -0
  284. package/framework/.factory/skills/project-index/templates/skill-template.md +20 -0
  285. package/framework/.factory/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  286. package/framework/.factory/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  287. package/framework/.factory/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  288. package/framework/.factory/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  289. package/framework/.factory/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  290. package/framework/.factory/skills/skill-writer/SKILL.md +385 -0
  291. package/framework/.factory/skills/systematic-debugging/SKILL.md +296 -0
  292. package/framework/.gemini/skills/api-design-principles/SKILL.md +528 -0
  293. package/framework/.gemini/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  294. package/framework/.gemini/skills/api-design-principles/assets/rest-api-template.py +182 -0
  295. package/framework/.gemini/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  296. package/framework/.gemini/skills/api-design-principles/references/rest-best-practices.md +408 -0
  297. package/framework/.gemini/skills/brainstorming/SKILL.md +54 -0
  298. package/framework/.gemini/skills/changelog-generator/SKILL.md +104 -0
  299. package/framework/.gemini/skills/code-maintainability/SKILL.md +1108 -0
  300. package/framework/.gemini/skills/error-handling-patterns/SKILL.md +641 -0
  301. package/framework/.gemini/skills/interface-design/SKILL.md +310 -0
  302. package/framework/.gemini/skills/interface-design/references/example.md +86 -0
  303. package/framework/.gemini/skills/interface-design/references/principles.md +235 -0
  304. package/framework/.gemini/skills/interface-design/references/validation.md +48 -0
  305. package/framework/.gemini/skills/project-index/SKILL.md +234 -0
  306. package/framework/.gemini/skills/project-index/scripts/scan_codebase.py +47 -0
  307. package/framework/.gemini/skills/project-index/templates/agent-template.md +18 -0
  308. package/framework/.gemini/skills/project-index/templates/skill-template.md +20 -0
  309. package/framework/.gemini/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  310. package/framework/.gemini/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  311. package/framework/.gemini/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  312. package/framework/.gemini/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  313. package/framework/.gemini/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  314. package/framework/.gemini/skills/skill-writer/SKILL.md +385 -0
  315. package/framework/.gemini/skills/systematic-debugging/SKILL.md +296 -0
  316. package/framework/.github/skills/api-design-principles/SKILL.md +528 -0
  317. package/framework/.github/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  318. package/framework/.github/skills/api-design-principles/assets/rest-api-template.py +182 -0
  319. package/framework/.github/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  320. package/framework/.github/skills/api-design-principles/references/rest-best-practices.md +408 -0
  321. package/framework/.github/skills/brainstorming/SKILL.md +54 -0
  322. package/framework/.github/skills/changelog-generator/SKILL.md +104 -0
  323. package/framework/.github/skills/code-maintainability/SKILL.md +1108 -0
  324. package/framework/.github/skills/error-handling-patterns/SKILL.md +641 -0
  325. package/framework/.github/skills/interface-design/SKILL.md +310 -0
  326. package/framework/.github/skills/interface-design/references/example.md +86 -0
  327. package/framework/.github/skills/interface-design/references/principles.md +235 -0
  328. package/framework/.github/skills/interface-design/references/validation.md +48 -0
  329. package/framework/.github/skills/project-index/SKILL.md +234 -0
  330. package/framework/.github/skills/project-index/scripts/scan_codebase.py +47 -0
  331. package/framework/.github/skills/project-index/templates/agent-template.md +18 -0
  332. package/framework/.github/skills/project-index/templates/skill-template.md +20 -0
  333. package/framework/.github/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  334. package/framework/.github/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  335. package/framework/.github/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  336. package/framework/.github/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  337. package/framework/.github/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  338. package/framework/.github/skills/skill-writer/SKILL.md +385 -0
  339. package/framework/.github/skills/systematic-debugging/SKILL.md +296 -0
  340. package/framework/.iflow/skills/api-design-principles/SKILL.md +528 -0
  341. package/framework/.iflow/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  342. package/framework/.iflow/skills/api-design-principles/assets/rest-api-template.py +182 -0
  343. package/framework/.iflow/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  344. package/framework/.iflow/skills/api-design-principles/references/rest-best-practices.md +408 -0
  345. package/framework/.iflow/skills/brainstorming/SKILL.md +54 -0
  346. package/framework/.iflow/skills/changelog-generator/SKILL.md +104 -0
  347. package/framework/.iflow/skills/code-maintainability/SKILL.md +1108 -0
  348. package/framework/.iflow/skills/error-handling-patterns/SKILL.md +641 -0
  349. package/framework/.iflow/skills/interface-design/SKILL.md +310 -0
  350. package/framework/.iflow/skills/interface-design/references/example.md +86 -0
  351. package/framework/.iflow/skills/interface-design/references/principles.md +235 -0
  352. package/framework/.iflow/skills/interface-design/references/validation.md +48 -0
  353. package/framework/.iflow/skills/project-index/SKILL.md +234 -0
  354. package/framework/.iflow/skills/project-index/scripts/scan_codebase.py +47 -0
  355. package/framework/.iflow/skills/project-index/templates/agent-template.md +18 -0
  356. package/framework/.iflow/skills/project-index/templates/skill-template.md +20 -0
  357. package/framework/.iflow/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  358. package/framework/.iflow/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  359. package/framework/.iflow/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  360. package/framework/.iflow/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  361. package/framework/.iflow/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  362. package/framework/.iflow/skills/skill-writer/SKILL.md +385 -0
  363. package/framework/.iflow/skills/systematic-debugging/SKILL.md +296 -0
  364. package/framework/.kilocode/skills/api-design-principles/SKILL.md +528 -0
  365. package/framework/.kilocode/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  366. package/framework/.kilocode/skills/api-design-principles/assets/rest-api-template.py +182 -0
  367. package/framework/.kilocode/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  368. package/framework/.kilocode/skills/api-design-principles/references/rest-best-practices.md +408 -0
  369. package/framework/.kilocode/skills/brainstorming/SKILL.md +54 -0
  370. package/framework/.kilocode/skills/changelog-generator/SKILL.md +104 -0
  371. package/framework/.kilocode/skills/code-maintainability/SKILL.md +1108 -0
  372. package/framework/.kilocode/skills/error-handling-patterns/SKILL.md +641 -0
  373. package/framework/.kilocode/skills/interface-design/SKILL.md +310 -0
  374. package/framework/.kilocode/skills/interface-design/references/example.md +86 -0
  375. package/framework/.kilocode/skills/interface-design/references/principles.md +235 -0
  376. package/framework/.kilocode/skills/interface-design/references/validation.md +48 -0
  377. package/framework/.kilocode/skills/project-index/SKILL.md +234 -0
  378. package/framework/.kilocode/skills/project-index/scripts/scan_codebase.py +47 -0
  379. package/framework/.kilocode/skills/project-index/templates/agent-template.md +18 -0
  380. package/framework/.kilocode/skills/project-index/templates/skill-template.md +20 -0
  381. package/framework/.kilocode/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  382. package/framework/.kilocode/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  383. package/framework/.kilocode/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  384. package/framework/.kilocode/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  385. package/framework/.kilocode/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  386. package/framework/.kilocode/skills/skill-writer/SKILL.md +385 -0
  387. package/framework/.kilocode/skills/systematic-debugging/SKILL.md +296 -0
  388. package/framework/.opencode/skills/api-design-principles/SKILL.md +528 -0
  389. package/framework/.opencode/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  390. package/framework/.opencode/skills/api-design-principles/assets/rest-api-template.py +182 -0
  391. package/framework/.opencode/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  392. package/framework/.opencode/skills/api-design-principles/references/rest-best-practices.md +408 -0
  393. package/framework/.opencode/skills/brainstorming/SKILL.md +54 -0
  394. package/framework/.opencode/skills/changelog-generator/SKILL.md +104 -0
  395. package/framework/.opencode/skills/code-maintainability/SKILL.md +1108 -0
  396. package/framework/.opencode/skills/error-handling-patterns/SKILL.md +641 -0
  397. package/framework/.opencode/skills/interface-design/SKILL.md +310 -0
  398. package/framework/.opencode/skills/interface-design/references/example.md +86 -0
  399. package/framework/.opencode/skills/interface-design/references/principles.md +235 -0
  400. package/framework/.opencode/skills/interface-design/references/validation.md +48 -0
  401. package/framework/.opencode/skills/project-index/SKILL.md +234 -0
  402. package/framework/.opencode/skills/project-index/scripts/scan_codebase.py +47 -0
  403. package/framework/.opencode/skills/project-index/templates/agent-template.md +18 -0
  404. package/framework/.opencode/skills/project-index/templates/skill-template.md +20 -0
  405. package/framework/.opencode/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  406. package/framework/.opencode/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  407. package/framework/.opencode/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  408. package/framework/.opencode/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  409. package/framework/.opencode/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  410. package/framework/.opencode/skills/skill-writer/SKILL.md +385 -0
  411. package/framework/.opencode/skills/systematic-debugging/SKILL.md +296 -0
  412. package/framework/.qoder/skills/api-design-principles/SKILL.md +528 -0
  413. package/framework/.qoder/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  414. package/framework/.qoder/skills/api-design-principles/assets/rest-api-template.py +182 -0
  415. package/framework/.qoder/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  416. package/framework/.qoder/skills/api-design-principles/references/rest-best-practices.md +408 -0
  417. package/framework/.qoder/skills/brainstorming/SKILL.md +54 -0
  418. package/framework/.qoder/skills/changelog-generator/SKILL.md +104 -0
  419. package/framework/.qoder/skills/code-maintainability/SKILL.md +1108 -0
  420. package/framework/.qoder/skills/error-handling-patterns/SKILL.md +641 -0
  421. package/framework/.qoder/skills/interface-design/SKILL.md +310 -0
  422. package/framework/.qoder/skills/interface-design/references/example.md +86 -0
  423. package/framework/.qoder/skills/interface-design/references/principles.md +235 -0
  424. package/framework/.qoder/skills/interface-design/references/validation.md +48 -0
  425. package/framework/.qoder/skills/project-index/SKILL.md +234 -0
  426. package/framework/.qoder/skills/project-index/scripts/scan_codebase.py +47 -0
  427. package/framework/.qoder/skills/project-index/templates/agent-template.md +18 -0
  428. package/framework/.qoder/skills/project-index/templates/skill-template.md +20 -0
  429. package/framework/.qoder/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  430. package/framework/.qoder/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  431. package/framework/.qoder/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  432. package/framework/.qoder/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  433. package/framework/.qoder/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  434. package/framework/.qoder/skills/skill-writer/SKILL.md +385 -0
  435. package/framework/.qoder/skills/systematic-debugging/SKILL.md +296 -0
  436. package/framework/.qwen/commands/{opsx-apply.toml → opsx-apply.md} +4 -3
  437. package/framework/.qwen/commands/{opsx-archive.toml → opsx-archive.md} +4 -3
  438. package/framework/.qwen/commands/{opsx-bulk-archive.toml → opsx-bulk-archive.md} +4 -3
  439. package/framework/.qwen/commands/{opsx-continue.toml → opsx-continue.md} +4 -3
  440. package/framework/.qwen/commands/{opsx-explore.toml → opsx-explore.md} +4 -3
  441. package/framework/.qwen/commands/{opsx-ff.toml → opsx-ff.md} +4 -3
  442. package/framework/.qwen/commands/{opsx-new.toml → opsx-new.md} +4 -3
  443. package/framework/.qwen/commands/{opsx-onboard.toml → opsx-onboard.md} +4 -3
  444. package/framework/.qwen/commands/{opsx-sync.toml → opsx-sync.md} +4 -3
  445. package/framework/.qwen/commands/{opsx-verify.toml → opsx-verify.md} +4 -3
  446. package/framework/.qwen/skills/api-design-principles/SKILL.md +528 -0
  447. package/framework/.qwen/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  448. package/framework/.qwen/skills/api-design-principles/assets/rest-api-template.py +182 -0
  449. package/framework/.qwen/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  450. package/framework/.qwen/skills/api-design-principles/references/rest-best-practices.md +408 -0
  451. package/framework/.qwen/skills/brainstorming/SKILL.md +54 -0
  452. package/framework/.qwen/skills/changelog-generator/SKILL.md +104 -0
  453. package/framework/.qwen/skills/code-maintainability/SKILL.md +1108 -0
  454. package/framework/.qwen/skills/error-handling-patterns/SKILL.md +641 -0
  455. package/framework/.qwen/skills/interface-design/SKILL.md +310 -0
  456. package/framework/.qwen/skills/interface-design/references/example.md +86 -0
  457. package/framework/.qwen/skills/interface-design/references/principles.md +235 -0
  458. package/framework/.qwen/skills/interface-design/references/validation.md +48 -0
  459. package/framework/.qwen/skills/project-index/SKILL.md +234 -0
  460. package/framework/.qwen/skills/project-index/scripts/scan_codebase.py +47 -0
  461. package/framework/.qwen/skills/project-index/templates/agent-template.md +18 -0
  462. package/framework/.qwen/skills/project-index/templates/skill-template.md +20 -0
  463. package/framework/.qwen/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  464. package/framework/.qwen/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  465. package/framework/.qwen/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  466. package/framework/.qwen/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  467. package/framework/.qwen/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  468. package/framework/.qwen/skills/skill-writer/SKILL.md +385 -0
  469. package/framework/.qwen/skills/systematic-debugging/SKILL.md +296 -0
  470. package/framework/.roo/skills/api-design-principles/SKILL.md +528 -0
  471. package/framework/.roo/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  472. package/framework/.roo/skills/api-design-principles/assets/rest-api-template.py +182 -0
  473. package/framework/.roo/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  474. package/framework/.roo/skills/api-design-principles/references/rest-best-practices.md +408 -0
  475. package/framework/.roo/skills/brainstorming/SKILL.md +54 -0
  476. package/framework/.roo/skills/changelog-generator/SKILL.md +104 -0
  477. package/framework/.roo/skills/code-maintainability/SKILL.md +1108 -0
  478. package/framework/.roo/skills/error-handling-patterns/SKILL.md +641 -0
  479. package/framework/.roo/skills/interface-design/SKILL.md +310 -0
  480. package/framework/.roo/skills/interface-design/references/example.md +86 -0
  481. package/framework/.roo/skills/interface-design/references/principles.md +235 -0
  482. package/framework/.roo/skills/interface-design/references/validation.md +48 -0
  483. package/framework/.roo/skills/project-index/SKILL.md +234 -0
  484. package/framework/.roo/skills/project-index/scripts/scan_codebase.py +47 -0
  485. package/framework/.roo/skills/project-index/templates/agent-template.md +18 -0
  486. package/framework/.roo/skills/project-index/templates/skill-template.md +20 -0
  487. package/framework/.roo/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  488. package/framework/.roo/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  489. package/framework/.roo/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  490. package/framework/.roo/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  491. package/framework/.roo/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  492. package/framework/.roo/skills/skill-writer/SKILL.md +385 -0
  493. package/framework/.roo/skills/systematic-debugging/SKILL.md +296 -0
  494. package/framework/.trae/skills/api-design-principles/SKILL.md +528 -0
  495. package/framework/.trae/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  496. package/framework/.trae/skills/api-design-principles/assets/rest-api-template.py +182 -0
  497. package/framework/.trae/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  498. package/framework/.trae/skills/api-design-principles/references/rest-best-practices.md +408 -0
  499. package/framework/.trae/skills/brainstorming/SKILL.md +54 -0
  500. package/framework/.trae/skills/changelog-generator/SKILL.md +104 -0
  501. package/framework/.trae/skills/code-maintainability/SKILL.md +1108 -0
  502. package/framework/.trae/skills/error-handling-patterns/SKILL.md +641 -0
  503. package/framework/.trae/skills/interface-design/SKILL.md +310 -0
  504. package/framework/.trae/skills/interface-design/references/example.md +86 -0
  505. package/framework/.trae/skills/interface-design/references/principles.md +235 -0
  506. package/framework/.trae/skills/interface-design/references/validation.md +48 -0
  507. package/framework/.trae/skills/project-index/SKILL.md +234 -0
  508. package/framework/.trae/skills/project-index/scripts/scan_codebase.py +47 -0
  509. package/framework/.trae/skills/project-index/templates/agent-template.md +18 -0
  510. package/framework/.trae/skills/project-index/templates/skill-template.md +20 -0
  511. package/framework/.trae/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  512. package/framework/.trae/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  513. package/framework/.trae/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  514. package/framework/.trae/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  515. package/framework/.trae/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  516. package/framework/.trae/skills/skill-writer/SKILL.md +385 -0
  517. package/framework/.trae/skills/systematic-debugging/SKILL.md +296 -0
  518. package/framework/.windsurf/skills/api-design-principles/SKILL.md +528 -0
  519. package/framework/.windsurf/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  520. package/framework/.windsurf/skills/api-design-principles/assets/rest-api-template.py +182 -0
  521. package/framework/.windsurf/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  522. package/framework/.windsurf/skills/api-design-principles/references/rest-best-practices.md +408 -0
  523. package/framework/.windsurf/skills/brainstorming/SKILL.md +54 -0
  524. package/framework/.windsurf/skills/changelog-generator/SKILL.md +104 -0
  525. package/framework/.windsurf/skills/code-maintainability/SKILL.md +1108 -0
  526. package/framework/.windsurf/skills/error-handling-patterns/SKILL.md +641 -0
  527. package/framework/.windsurf/skills/interface-design/SKILL.md +310 -0
  528. package/framework/.windsurf/skills/interface-design/references/example.md +86 -0
  529. package/framework/.windsurf/skills/interface-design/references/principles.md +235 -0
  530. package/framework/.windsurf/skills/interface-design/references/validation.md +48 -0
  531. package/framework/.windsurf/skills/project-index/SKILL.md +234 -0
  532. package/framework/.windsurf/skills/project-index/scripts/scan_codebase.py +47 -0
  533. package/framework/.windsurf/skills/project-index/templates/agent-template.md +18 -0
  534. package/framework/.windsurf/skills/project-index/templates/skill-template.md +20 -0
  535. package/framework/.windsurf/skills/secure-coding-cybersecurity/SKILL.md +793 -0
  536. package/framework/.windsurf/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
  537. package/framework/.windsurf/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
  538. package/framework/.windsurf/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
  539. package/framework/.windsurf/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
  540. package/framework/.windsurf/skills/skill-writer/SKILL.md +385 -0
  541. package/framework/.windsurf/skills/systematic-debugging/SKILL.md +296 -0
  542. package/framework/AGENTS.md +464 -0
  543. package/framework/CLAUDE.md +464 -0
  544. package/framework/GEMINI.md +464 -0
  545. package/framework/QWEN.md +464 -0
  546. package/framework/copilot-instructions.md +464 -0
  547. package/package.json +25 -4
  548. package/src/commands/init.js +171 -84
  549. package/src/config/constants.js +64 -0
  550. package/src/config/ide-mapping.js +47 -0
  551. package/src/index.js +4 -0
  552. package/src/services/detector.js +30 -0
  553. package/src/services/installer.js +77 -0
  554. package/src/ui/animations.js +36 -11
  555. package/src/ui/banner.js +6 -6
  556. package/src/utils/helpers.js +0 -28
@@ -0,0 +1,296 @@
1
+ ---
2
+ name: systematic-debugging
3
+ description: Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
4
+ ---
5
+
6
+ # Systematic Debugging
7
+
8
+ ## Overview
9
+
10
+ Random fixes waste time and create new bugs. Quick patches mask underlying issues.
11
+
12
+ **Core principle:** ALWAYS find root cause before attempting fixes. Symptom fixes are failure.
13
+
14
+ **Violating the letter of this process is violating the spirit of debugging.**
15
+
16
+ ## The Iron Law
17
+
18
+ ```
19
+ NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST
20
+ ```
21
+
22
+ If you haven't completed Phase 1, you cannot propose fixes.
23
+
24
+ ## When to Use
25
+
26
+ Use for ANY technical issue:
27
+ - Test failures
28
+ - Bugs in production
29
+ - Unexpected behavior
30
+ - Performance problems
31
+ - Build failures
32
+ - Integration issues
33
+
34
+ **Use this ESPECIALLY when:**
35
+ - Under time pressure (emergencies make guessing tempting)
36
+ - "Just one quick fix" seems obvious
37
+ - You've already tried multiple fixes
38
+ - Previous fix didn't work
39
+ - You don't fully understand the issue
40
+
41
+ **Don't skip when:**
42
+ - Issue seems simple (simple bugs have root causes too)
43
+ - You're in a hurry (rushing guarantees rework)
44
+ - Manager wants it fixed NOW (systematic is faster than thrashing)
45
+
46
+ ## The Four Phases
47
+
48
+ You MUST complete each phase before proceeding to the next.
49
+
50
+ ### Phase 1: Root Cause Investigation
51
+
52
+ **BEFORE attempting ANY fix:**
53
+
54
+ 1. **Read Error Messages Carefully**
55
+ - Don't skip past errors or warnings
56
+ - They often contain the exact solution
57
+ - Read stack traces completely
58
+ - Note line numbers, file paths, error codes
59
+
60
+ 2. **Reproduce Consistently**
61
+ - Can you trigger it reliably?
62
+ - What are the exact steps?
63
+ - Does it happen every time?
64
+ - If not reproducible → gather more data, don't guess
65
+
66
+ 3. **Check Recent Changes**
67
+ - What changed that could cause this?
68
+ - Git diff, recent commits
69
+ - New dependencies, config changes
70
+ - Environmental differences
71
+
72
+ 4. **Gather Evidence in Multi-Component Systems**
73
+
74
+ **WHEN system has multiple components (CI → build → signing, API → service → database):**
75
+
76
+ **BEFORE proposing fixes, add diagnostic instrumentation:**
77
+ ```
78
+ For EACH component boundary:
79
+ - Log what data enters component
80
+ - Log what data exits component
81
+ - Verify environment/config propagation
82
+ - Check state at each layer
83
+
84
+ Run once to gather evidence showing WHERE it breaks
85
+ THEN analyze evidence to identify failing component
86
+ THEN investigate that specific component
87
+ ```
88
+
89
+ **Example (multi-layer system):**
90
+ ```bash
91
+ # Layer 1: Workflow
92
+ echo "=== Secrets available in workflow: ==="
93
+ echo "IDENTITY: ${IDENTITY:+SET}${IDENTITY:-UNSET}"
94
+
95
+ # Layer 2: Build script
96
+ echo "=== Env vars in build script: ==="
97
+ env | grep IDENTITY || echo "IDENTITY not in environment"
98
+
99
+ # Layer 3: Signing script
100
+ echo "=== Keychain state: ==="
101
+ security list-keychains
102
+ security find-identity -v
103
+
104
+ # Layer 4: Actual signing
105
+ codesign --sign "$IDENTITY" --verbose=4 "$APP"
106
+ ```
107
+
108
+ **This reveals:** Which layer fails (secrets → workflow ✓, workflow → build ✗)
109
+
110
+ 5. **Trace Data Flow**
111
+
112
+ **WHEN error is deep in call stack:**
113
+
114
+ See `root-cause-tracing.md` in this directory for the complete backward tracing technique.
115
+
116
+ **Quick version:**
117
+ - Where does bad value originate?
118
+ - What called this with bad value?
119
+ - Keep tracing up until you find the source
120
+ - Fix at source, not at symptom
121
+
122
+ ### Phase 2: Pattern Analysis
123
+
124
+ **Find the pattern before fixing:**
125
+
126
+ 1. **Find Working Examples**
127
+ - Locate similar working code in same codebase
128
+ - What works that's similar to what's broken?
129
+
130
+ 2. **Compare Against References**
131
+ - If implementing pattern, read reference implementation COMPLETELY
132
+ - Don't skim - read every line
133
+ - Understand the pattern fully before applying
134
+
135
+ 3. **Identify Differences**
136
+ - What's different between working and broken?
137
+ - List every difference, however small
138
+ - Don't assume "that can't matter"
139
+
140
+ 4. **Understand Dependencies**
141
+ - What other components does this need?
142
+ - What settings, config, environment?
143
+ - What assumptions does it make?
144
+
145
+ ### Phase 3: Hypothesis and Testing
146
+
147
+ **Scientific method:**
148
+
149
+ 1. **Form Single Hypothesis**
150
+ - State clearly: "I think X is the root cause because Y"
151
+ - Write it down
152
+ - Be specific, not vague
153
+
154
+ 2. **Test Minimally**
155
+ - Make the SMALLEST possible change to test hypothesis
156
+ - One variable at a time
157
+ - Don't fix multiple things at once
158
+
159
+ 3. **Verify Before Continuing**
160
+ - Did it work? Yes → Phase 4
161
+ - Didn't work? Form NEW hypothesis
162
+ - DON'T add more fixes on top
163
+
164
+ 4. **When You Don't Know**
165
+ - Say "I don't understand X"
166
+ - Don't pretend to know
167
+ - Ask for help
168
+ - Research more
169
+
170
+ ### Phase 4: Implementation
171
+
172
+ **Fix the root cause, not the symptom:**
173
+
174
+ 1. **Create Failing Test Case**
175
+ - Simplest possible reproduction
176
+ - Automated test if possible
177
+ - One-off test script if no framework
178
+ - MUST have before fixing
179
+ - Use the `superpowers:test-driven-development` skill for writing proper failing tests
180
+
181
+ 2. **Implement Single Fix**
182
+ - Address the root cause identified
183
+ - ONE change at a time
184
+ - No "while I'm here" improvements
185
+ - No bundled refactoring
186
+
187
+ 3. **Verify Fix**
188
+ - Test passes now?
189
+ - No other tests broken?
190
+ - Issue actually resolved?
191
+
192
+ 4. **If Fix Doesn't Work**
193
+ - STOP
194
+ - Count: How many fixes have you tried?
195
+ - If < 3: Return to Phase 1, re-analyze with new information
196
+ - **If ≥ 3: STOP and question the architecture (step 5 below)**
197
+ - DON'T attempt Fix #4 without architectural discussion
198
+
199
+ 5. **If 3+ Fixes Failed: Question Architecture**
200
+
201
+ **Pattern indicating architectural problem:**
202
+ - Each fix reveals new shared state/coupling/problem in different place
203
+ - Fixes require "massive refactoring" to implement
204
+ - Each fix creates new symptoms elsewhere
205
+
206
+ **STOP and question fundamentals:**
207
+ - Is this pattern fundamentally sound?
208
+ - Are we "sticking with it through sheer inertia"?
209
+ - Should we refactor architecture vs. continue fixing symptoms?
210
+
211
+ **Discuss with your human partner before attempting more fixes**
212
+
213
+ This is NOT a failed hypothesis - this is a wrong architecture.
214
+
215
+ ## Red Flags - STOP and Follow Process
216
+
217
+ If you catch yourself thinking:
218
+ - "Quick fix for now, investigate later"
219
+ - "Just try changing X and see if it works"
220
+ - "Add multiple changes, run tests"
221
+ - "Skip the test, I'll manually verify"
222
+ - "It's probably X, let me fix that"
223
+ - "I don't fully understand but this might work"
224
+ - "Pattern says X but I'll adapt it differently"
225
+ - "Here are the main problems: [lists fixes without investigation]"
226
+ - Proposing solutions before tracing data flow
227
+ - **"One more fix attempt" (when already tried 2+)**
228
+ - **Each fix reveals new problem in different place**
229
+
230
+ **ALL of these mean: STOP. Return to Phase 1.**
231
+
232
+ **If 3+ fixes failed:** Question the architecture (see Phase 4.5)
233
+
234
+ ## your human partner's Signals You're Doing It Wrong
235
+
236
+ **Watch for these redirections:**
237
+ - "Is that not happening?" - You assumed without verifying
238
+ - "Will it show us...?" - You should have added evidence gathering
239
+ - "Stop guessing" - You're proposing fixes without understanding
240
+ - "Ultrathink this" - Question fundamentals, not just symptoms
241
+ - "We're stuck?" (frustrated) - Your approach isn't working
242
+
243
+ **When you see these:** STOP. Return to Phase 1.
244
+
245
+ ## Common Rationalizations
246
+
247
+ | Excuse | Reality |
248
+ |--------|---------|
249
+ | "Issue is simple, don't need process" | Simple issues have root causes too. Process is fast for simple bugs. |
250
+ | "Emergency, no time for process" | Systematic debugging is FASTER than guess-and-check thrashing. |
251
+ | "Just try this first, then investigate" | First fix sets the pattern. Do it right from the start. |
252
+ | "I'll write test after confirming fix works" | Untested fixes don't stick. Test first proves it. |
253
+ | "Multiple fixes at once saves time" | Can't isolate what worked. Causes new bugs. |
254
+ | "Reference too long, I'll adapt the pattern" | Partial understanding guarantees bugs. Read it completely. |
255
+ | "I see the problem, let me fix it" | Seeing symptoms ≠ understanding root cause. |
256
+ | "One more fix attempt" (after 2+ failures) | 3+ failures = architectural problem. Question pattern, don't fix again. |
257
+
258
+ ## Quick Reference
259
+
260
+ | Phase | Key Activities | Success Criteria |
261
+ |-------|---------------|------------------|
262
+ | **1. Root Cause** | Read errors, reproduce, check changes, gather evidence | Understand WHAT and WHY |
263
+ | **2. Pattern** | Find working examples, compare | Identify differences |
264
+ | **3. Hypothesis** | Form theory, test minimally | Confirmed or new hypothesis |
265
+ | **4. Implementation** | Create test, fix, verify | Bug resolved, tests pass |
266
+
267
+ ## When Process Reveals "No Root Cause"
268
+
269
+ If systematic investigation reveals issue is truly environmental, timing-dependent, or external:
270
+
271
+ 1. You've completed the process
272
+ 2. Document what you investigated
273
+ 3. Implement appropriate handling (retry, timeout, error message)
274
+ 4. Add monitoring/logging for future investigation
275
+
276
+ **But:** 95% of "no root cause" cases are incomplete investigation.
277
+
278
+ ## Supporting Techniques
279
+
280
+ These techniques are part of systematic debugging and available in this directory:
281
+
282
+ - **`root-cause-tracing.md`** - Trace bugs backward through call stack to find original trigger
283
+ - **`defense-in-depth.md`** - Add validation at multiple layers after finding root cause
284
+ - **`condition-based-waiting.md`** - Replace arbitrary timeouts with condition polling
285
+
286
+ **Related skills:**
287
+ - **superpowers:test-driven-development** - For creating failing test case (Phase 4, Step 1)
288
+ - **superpowers:verification-before-completion** - Verify fix worked before claiming success
289
+
290
+ ## Real-World Impact
291
+
292
+ From debugging sessions:
293
+ - Systematic approach: 15-30 minutes to fix
294
+ - Random fixes approach: 2-3 hours of thrashing
295
+ - First-time fix rate: 95% vs 40%
296
+ - New bugs introduced: Near zero vs common
@@ -1,6 +1,7 @@
1
- description = "Implement tasks from an OpenSpec change (Experimental)"
1
+ ---
2
+ description: Implement tasks from an OpenSpec change (Experimental)
3
+ ---
2
4
 
3
- prompt = """
4
5
  Implement tasks from an OpenSpec change.
5
6
 
6
7
  **Input**: Optionally specify a change name (e.g., `/opsx:apply add-auth`). If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
@@ -146,4 +147,4 @@ This skill supports the "actions on a change" model:
146
147
 
147
148
  - **Can be invoked anytime**: Before all artifacts are done (if tasks exist), after partial implementation, interleaved with other actions
148
149
  - **Allows artifact updates**: If implementation reveals design issues, suggest updating artifacts - not phase-locked, work fluidly
149
- """
150
+
@@ -1,6 +1,7 @@
1
- description = "Archive a completed change in the experimental workflow"
1
+ ---
2
+ description: Archive a completed change in the experimental workflow
3
+ ---
2
4
 
3
- prompt = """
4
5
  Archive a completed change in the experimental workflow.
5
6
 
6
7
  **Input**: Optionally specify a change name after `/opsx:archive` (e.g., `/opsx:archive add-auth`). If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
@@ -151,4 +152,4 @@ Target archive directory already exists.
151
152
  - Show clear summary of what happened
152
153
  - If sync is requested, use /opsx:sync approach (agent-driven)
153
154
  - If delta specs exist, always run the sync assessment and show the combined summary before prompting
154
- """
155
+
@@ -1,6 +1,7 @@
1
- description = "Archive multiple completed changes at once"
1
+ ---
2
+ description: Archive multiple completed changes at once
3
+ ---
2
4
 
3
- prompt = """
4
5
  Archive multiple completed changes in a single operation.
5
6
 
6
7
  This skill allows you to batch-archive changes, handling spec conflicts intelligently by checking the codebase to determine what's actually implemented.
@@ -236,4 +237,4 @@ No active changes found. Use `/opsx:new` to create a new change.
236
237
  - Preserve .openspec.yaml when moving to archive
237
238
  - Archive directory target uses current date: YYYY-MM-DD-<name>
238
239
  - If archive target exists, fail that change but continue with others
239
- """
240
+
@@ -1,6 +1,7 @@
1
- description = "Continue working on a change - create the next artifact (Experimental)"
1
+ ---
2
+ description: Continue working on a change - create the next artifact (Experimental)
3
+ ---
2
4
 
3
- prompt = """
4
5
  Continue working on a change by creating the next artifact.
5
6
 
6
7
  **Input**: Optionally specify a change name after `/opsx:continue` (e.g., `/opsx:continue add-auth`). If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
@@ -108,4 +109,4 @@ For other schemas, follow the `instruction` field from the CLI output.
108
109
  - **IMPORTANT**: `context` and `rules` are constraints for YOU, not content for the file
109
110
  - Do NOT copy `<context>`, `<rules>`, `<project_context>` blocks into the artifact
110
111
  - These guide what you write, but should never appear in the output
111
- """
112
+
@@ -1,6 +1,7 @@
1
- description = "Enter explore mode - think through ideas, investigate problems, clarify requirements"
1
+ ---
2
+ description: Enter explore mode - think through ideas, investigate problems, clarify requirements
3
+ ---
2
4
 
3
- prompt = """
4
5
  Enter explore mode. Think deeply. Visualize freely. Follow the conversation wherever it goes.
5
6
 
6
7
  **IMPORTANT: Explore mode is for thinking, not implementing.** You may read files, search code, and investigate the codebase, but you must NEVER write code or implement features. If the user asks you to implement something, remind them to exit explore mode first (e.g., start a change with `/opsx:new` or `/opsx:ff`). You MAY create OpenSpec artifacts (proposals, designs, specs) if the user asks—that's capturing thinking, not implementing.
@@ -168,4 +169,4 @@ When things crystallize, you might offer a summary - but it's optional. Sometime
168
169
  - **Do visualize** - A good diagram is worth many paragraphs
169
170
  - **Do explore the codebase** - Ground discussions in reality
170
171
  - **Do question assumptions** - Including the user's and your own
171
- """
172
+
@@ -1,6 +1,7 @@
1
- description = "Create a change and generate all artifacts needed for implementation in one go"
1
+ ---
2
+ description: Create a change and generate all artifacts needed for implementation in one go
3
+ ---
2
4
 
3
- prompt = """
4
5
  Fast-forward through artifact creation - generate everything needed to start implementation.
5
6
 
6
7
  **Input**: The argument after `/opsx:ff` is the change name (kebab-case), OR a description of what the user wants to build.
@@ -88,4 +89,4 @@ After completing all artifacts, summarize:
88
89
  - If context is critically unclear, ask the user - but prefer making reasonable decisions to keep momentum
89
90
  - If a change with that name already exists, ask if user wants to continue it or create a new one
90
91
  - Verify each artifact file exists after writing before proceeding to next
91
- """
92
+
@@ -1,6 +1,7 @@
1
- description = "Start a new change using the experimental artifact workflow (OPSX)"
1
+ ---
2
+ description: Start a new change using the experimental artifact workflow (OPSX)
3
+ ---
2
4
 
3
- prompt = """
4
5
  Start a new change using the experimental artifact-driven approach.
5
6
 
6
7
  **Input**: The argument after `/opsx:new` is the change name (kebab-case), OR a description of what the user wants to build.
@@ -63,4 +64,4 @@ After completing the steps, summarize:
63
64
  - If the name is invalid (not kebab-case), ask for a valid name
64
65
  - If a change with that name already exists, suggest using `/opsx:continue` instead
65
66
  - Pass --schema if using a non-default workflow
66
- """
67
+
@@ -1,6 +1,7 @@
1
- description = "Guided onboarding - walk through a complete OpenSpec workflow cycle with narration"
1
+ ---
2
+ description: Guided onboarding - walk through a complete OpenSpec workflow cycle with narration
3
+ ---
2
4
 
3
- prompt = """
4
5
  Guide the user through their first complete OpenSpec workflow cycle. This is a teaching experience—you'll do real work in their codebase while explaining each step.
5
6
 
6
7
  ---
@@ -519,4 +520,4 @@ Exit gracefully.
519
520
  - **Handle exits gracefully**—never pressure the user to continue
520
521
  - **Use real codebase tasks**—don't simulate or use fake examples
521
522
  - **Adjust scope gently**—guide toward smaller tasks but respect user choice
522
- """
523
+
@@ -1,6 +1,7 @@
1
- description = "Sync delta specs from a change to main specs"
1
+ ---
2
+ description: Sync delta specs from a change to main specs
3
+ ---
2
4
 
3
- prompt = """
4
5
  Sync delta specs from a change to main specs.
5
6
 
6
7
  This is an **agent-driven** operation - you will read delta specs and directly edit main specs to apply the changes. This allows intelligent merging (e.g., adding a scenario without copying the entire requirement).
@@ -128,4 +129,4 @@ Main specs are now updated. The change remains active - archive when implementat
128
129
  - If something is unclear, ask for clarification
129
130
  - Show what you're changing as you go
130
131
  - The operation should be idempotent - running twice should give same result
131
- """
132
+
@@ -1,6 +1,7 @@
1
- description = "Verify implementation matches change artifacts before archiving"
1
+ ---
2
+ description: Verify implementation matches change artifacts before archiving
3
+ ---
2
4
 
3
- prompt = """
4
5
  Verify that an implementation matches the change artifacts (specs, tasks, design).
5
6
 
6
7
  **Input**: Optionally specify a change name after `/opsx:verify` (e.g., `/opsx:verify add-auth`). If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
@@ -158,4 +159,4 @@ Use clear markdown with:
158
159
  - Code references in format: `file.ts:123`
159
160
  - Specific, actionable recommendations
160
161
  - No vague suggestions like "consider reviewing"
161
- """
162
+