@jakkrichm/create-nexus-devflow 2.0.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 (431) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +82 -0
  3. package/bin/create-nexus-devflow.js +275 -0
  4. package/lib/update.js +379 -0
  5. package/package.json +53 -0
  6. package/template/.agents/skills/00-discover/SKILL.md +170 -0
  7. package/template/.agents/skills/10-define/SKILL.md +170 -0
  8. package/template/.agents/skills/20-spec/SKILL.md +156 -0
  9. package/template/.agents/skills/30-plan/SKILL.md +221 -0
  10. package/template/.agents/skills/40-implement/SKILL.md +166 -0
  11. package/template/.agents/skills/50-verify/SKILL.md +188 -0
  12. package/template/.agents/skills/60-report/SKILL.md +183 -0
  13. package/template/.agents/skills/70-release/SKILL.md +155 -0
  14. package/template/.agents/skills/9arm-skills/README.md +51 -0
  15. package/template/.agents/skills/9arm-skills/debug-mantra/SKILL.md +86 -0
  16. package/template/.agents/skills/9arm-skills/management-talk/SKILL.md +79 -0
  17. package/template/.agents/skills/9arm-skills/post-mortem/SKILL.md +71 -0
  18. package/template/.agents/skills/9arm-skills/scrutinize/SKILL.md +72 -0
  19. package/template/.agents/skills/agent/SKILL.md +165 -0
  20. package/template/.agents/skills/api-and-interface-design/SKILL.md +294 -0
  21. package/template/.agents/skills/app-builder/SKILL.md +75 -0
  22. package/template/.agents/skills/app-builder/agent-coordination.md +71 -0
  23. package/template/.agents/skills/app-builder/feature-building.md +53 -0
  24. package/template/.agents/skills/app-builder/project-detection.md +34 -0
  25. package/template/.agents/skills/app-builder/scaffolding.md +118 -0
  26. package/template/.agents/skills/app-builder/tech-stack.md +40 -0
  27. package/template/.agents/skills/app-builder/templates/SKILL.md +39 -0
  28. package/template/.agents/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
  29. package/template/.agents/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
  30. package/template/.agents/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
  31. package/template/.agents/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
  32. package/template/.agents/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
  33. package/template/.agents/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
  34. package/template/.agents/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
  35. package/template/.agents/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +122 -0
  36. package/template/.agents/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +122 -0
  37. package/template/.agents/skills/app-builder/templates/nextjs-static/TEMPLATE.md +169 -0
  38. package/template/.agents/skills/app-builder/templates/nuxt-app/TEMPLATE.md +134 -0
  39. package/template/.agents/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
  40. package/template/.agents/skills/app-builder/templates/react-native-app/TEMPLATE.md +119 -0
  41. package/template/.agents/skills/architecture/SKILL.md +55 -0
  42. package/template/.agents/skills/architecture/context-discovery.md +43 -0
  43. package/template/.agents/skills/architecture/examples.md +94 -0
  44. package/template/.agents/skills/architecture/pattern-selection.md +68 -0
  45. package/template/.agents/skills/architecture/patterns-reference.md +50 -0
  46. package/template/.agents/skills/architecture/trade-off-analysis.md +77 -0
  47. package/template/.agents/skills/bash-linux/SKILL.md +199 -0
  48. package/template/.agents/skills/behavioral-modes/SKILL.md +242 -0
  49. package/template/.agents/skills/brainstorm/SKILL.md +168 -0
  50. package/template/.agents/skills/browser-testing-with-devtools/SKILL.md +302 -0
  51. package/template/.agents/skills/changelog/SKILL.md +109 -0
  52. package/template/.agents/skills/check-for-updates/SKILL.md +117 -0
  53. package/template/.agents/skills/ci-cd-and-automation/SKILL.md +390 -0
  54. package/template/.agents/skills/code-review-and-quality/SKILL.md +392 -0
  55. package/template/.agents/skills/code-simplification/SKILL.md +331 -0
  56. package/template/.agents/skills/codebase-design/DEEPENING.md +24 -0
  57. package/template/.agents/skills/codebase-design/DESIGN-IT-TWICE.md +28 -0
  58. package/template/.agents/skills/codebase-design/SKILL.md +58 -0
  59. package/template/.agents/skills/commit/SKILL.md +63 -0
  60. package/template/.agents/skills/competitor-analysis/SKILL.md +66 -0
  61. package/template/.agents/skills/context-engineering/SKILL.md +290 -0
  62. package/template/.agents/skills/database-design/SKILL.md +52 -0
  63. package/template/.agents/skills/database-design/database-selection.md +43 -0
  64. package/template/.agents/skills/database-design/indexing.md +39 -0
  65. package/template/.agents/skills/database-design/migrations.md +48 -0
  66. package/template/.agents/skills/database-design/optimization.md +36 -0
  67. package/template/.agents/skills/database-design/orm-selection.md +30 -0
  68. package/template/.agents/skills/database-design/schema-design.md +56 -0
  69. package/template/.agents/skills/database-design/scripts/schema_validator.py +172 -0
  70. package/template/.agents/skills/debug/SKILL.md +131 -0
  71. package/template/.agents/skills/debugging-and-error-recovery/SKILL.md +298 -0
  72. package/template/.agents/skills/deploy/SKILL.md +91 -0
  73. package/template/.agents/skills/deployment-procedures/SKILL.md +241 -0
  74. package/template/.agents/skills/deprecation-and-migration/SKILL.md +206 -0
  75. package/template/.agents/skills/devflow/SKILL.md +89 -0
  76. package/template/.agents/skills/devflow-concept-intake/SKILL.md +150 -0
  77. package/template/.agents/skills/devflow-concept-intake/agents/openai.yaml +4 -0
  78. package/template/.agents/skills/devflow-concept-intake/references/adoption-proposal-template.md +60 -0
  79. package/template/.agents/skills/devflow-concept-intake/references/concept-report-template.md +47 -0
  80. package/template/.agents/skills/devflow-concept-intake/references/upstream-tracking-template.md +51 -0
  81. package/template/.agents/skills/devflow-wiki/SKILL.md +75 -0
  82. package/template/.agents/skills/diagnosing-bugs/SKILL.md +93 -0
  83. package/template/.agents/skills/documentation-and-adrs/SKILL.md +278 -0
  84. package/template/.agents/skills/domain-modeling/ADR-FORMAT.md +47 -0
  85. package/template/.agents/skills/domain-modeling/CONTEXT-FORMAT.md +60 -0
  86. package/template/.agents/skills/domain-modeling/SKILL.md +74 -0
  87. package/template/.agents/skills/english-to-thai-translator/SKILL.md +125 -0
  88. package/template/.agents/skills/followup/SKILL.md +83 -0
  89. package/template/.agents/skills/frontend-ui-engineering/SKILL.md +326 -0
  90. package/template/.agents/skills/frontend-ui-engineering/accessibility-checklist.md +159 -0
  91. package/template/.agents/skills/git-workflow-and-versioning/SKILL.md +300 -0
  92. package/template/.agents/skills/goal/SKILL.md +148 -0
  93. package/template/.agents/skills/handoff/SKILL.md +46 -0
  94. package/template/.agents/skills/help/SKILL.md +253 -0
  95. package/template/.agents/skills/human-review-decisions/SKILL.md +74 -0
  96. package/template/.agents/skills/i18n-localization/SKILL.md +154 -0
  97. package/template/.agents/skills/i18n-localization/scripts/i18n_checker.py +241 -0
  98. package/template/.agents/skills/idea-refine/SKILL.md +178 -0
  99. package/template/.agents/skills/idea-refine/examples.md +238 -0
  100. package/template/.agents/skills/idea-refine/frameworks.md +99 -0
  101. package/template/.agents/skills/idea-refine/refinement-criteria.md +113 -0
  102. package/template/.agents/skills/idea-refine/scripts/idea-refine.sh +15 -0
  103. package/template/.agents/skills/incremental-implementation/SKILL.md +248 -0
  104. package/template/.agents/skills/insight/SKILL.md +131 -0
  105. package/template/.agents/skills/insight-capture/SKILL.md +84 -0
  106. package/template/.agents/skills/intelligent-routing/SKILL.md +176 -0
  107. package/template/.agents/skills/issue-triage/SKILL.md +115 -0
  108. package/template/.agents/skills/lint-and-validate/SKILL.md +45 -0
  109. package/template/.agents/skills/lint-and-validate/scripts/lint_runner.py +184 -0
  110. package/template/.agents/skills/lint-and-validate/scripts/type_coverage.py +173 -0
  111. package/template/.agents/skills/mcp-builder/SKILL.md +176 -0
  112. package/template/.agents/skills/md2html/SKILL.md +154 -0
  113. package/template/.agents/skills/md2html/components.md +505 -0
  114. package/template/.agents/skills/md2html/template.html +1152 -0
  115. package/template/.agents/skills/merge/SKILL.md +76 -0
  116. package/template/.agents/skills/mobile-design/SKILL.md +394 -0
  117. package/template/.agents/skills/mobile-design/decision-trees.md +516 -0
  118. package/template/.agents/skills/mobile-design/mobile-backend.md +491 -0
  119. package/template/.agents/skills/mobile-design/mobile-color-system.md +420 -0
  120. package/template/.agents/skills/mobile-design/mobile-debugging.md +122 -0
  121. package/template/.agents/skills/mobile-design/mobile-design-thinking.md +357 -0
  122. package/template/.agents/skills/mobile-design/mobile-navigation.md +458 -0
  123. package/template/.agents/skills/mobile-design/mobile-performance.md +767 -0
  124. package/template/.agents/skills/mobile-design/mobile-testing.md +356 -0
  125. package/template/.agents/skills/mobile-design/mobile-typography.md +433 -0
  126. package/template/.agents/skills/mobile-design/platform-android.md +666 -0
  127. package/template/.agents/skills/mobile-design/platform-ios.md +561 -0
  128. package/template/.agents/skills/mobile-design/scripts/mobile_audit.py +670 -0
  129. package/template/.agents/skills/mobile-design/touch-psychology.md +537 -0
  130. package/template/.agents/skills/nextjs-react-expert/1-async-eliminating-waterfalls.md +312 -0
  131. package/template/.agents/skills/nextjs-react-expert/2-bundle-bundle-size-optimization.md +240 -0
  132. package/template/.agents/skills/nextjs-react-expert/3-server-server-side-performance.md +490 -0
  133. package/template/.agents/skills/nextjs-react-expert/4-client-client-side-data-fetching.md +264 -0
  134. package/template/.agents/skills/nextjs-react-expert/5-rerender-re-render-optimization.md +581 -0
  135. package/template/.agents/skills/nextjs-react-expert/6-rendering-rendering-performance.md +432 -0
  136. package/template/.agents/skills/nextjs-react-expert/7-js-javascript-performance.md +684 -0
  137. package/template/.agents/skills/nextjs-react-expert/8-advanced-advanced-patterns.md +150 -0
  138. package/template/.agents/skills/nextjs-react-expert/SKILL.md +286 -0
  139. package/template/.agents/skills/nextjs-react-expert/scripts/convert_rules.py +222 -0
  140. package/template/.agents/skills/nextjs-react-expert/scripts/react_performance_checker.py +252 -0
  141. package/template/.agents/skills/nodejs-best-practices/SKILL.md +333 -0
  142. package/template/.agents/skills/obsidian-bases/SKILL.md +506 -0
  143. package/template/.agents/skills/obsidian-bases/references/FUNCTIONS_REFERENCE.md +173 -0
  144. package/template/.agents/skills/obsidian-cli/SKILL.md +115 -0
  145. package/template/.agents/skills/obsidian-clipper-template-creator/SKILL.md +73 -0
  146. package/template/.agents/skills/obsidian-clipper-template-creator/assets/clipping-template.json +51 -0
  147. package/template/.agents/skills/obsidian-clipper-template-creator/assets/recipe-template.json +48 -0
  148. package/template/.agents/skills/obsidian-clipper-template-creator/references/analysis-workflow.md +79 -0
  149. package/template/.agents/skills/obsidian-clipper-template-creator/references/bases-workflow.md +44 -0
  150. package/template/.agents/skills/obsidian-clipper-template-creator/references/filters.md +51 -0
  151. package/template/.agents/skills/obsidian-clipper-template-creator/references/json-schema.md +77 -0
  152. package/template/.agents/skills/obsidian-clipper-template-creator/references/logic.md +67 -0
  153. package/template/.agents/skills/obsidian-clipper-template-creator/references/variables.md +64 -0
  154. package/template/.agents/skills/obsidian-markdown/SKILL.md +205 -0
  155. package/template/.agents/skills/obsidian-markdown/references/CALLOUTS.md +58 -0
  156. package/template/.agents/skills/obsidian-markdown/references/EMBEDS.md +63 -0
  157. package/template/.agents/skills/obsidian-markdown/references/PROPERTIES.md +61 -0
  158. package/template/.agents/skills/package-json-generator/SKILL.md +60 -0
  159. package/template/.agents/skills/package-json-generator/scripts/generate.js +120 -0
  160. package/template/.agents/skills/package-json-generator/scripts/run.sh +19 -0
  161. package/template/.agents/skills/parallel-agents/SKILL.md +144 -0
  162. package/template/.agents/skills/performance-optimization/SKILL.md +299 -0
  163. package/template/.agents/skills/performance-optimization/performance-checklist.md +113 -0
  164. package/template/.agents/skills/planning-and-task-breakdown/SKILL.md +239 -0
  165. package/template/.agents/skills/powershell-windows/SKILL.md +167 -0
  166. package/template/.agents/skills/pr/SKILL.md +93 -0
  167. package/template/.agents/skills/pr-review/SKILL.md +143 -0
  168. package/template/.agents/skills/pr-review-analysis/SKILL.md +89 -0
  169. package/template/.agents/skills/prd/SKILL.md +127 -0
  170. package/template/.agents/skills/preview/SKILL.md +121 -0
  171. package/template/.agents/skills/preview-local-check/SKILL.md +59 -0
  172. package/template/.agents/skills/prompt-addons/SKILL.md +99 -0
  173. package/template/.agents/skills/prototype/SKILL.md +44 -0
  174. package/template/.agents/skills/prp-dev-fastapi/SKILL.md +114 -0
  175. package/template/.agents/skills/prp-dev-multiplatform/SKILL.md +36 -0
  176. package/template/.agents/skills/prp-dev-odoo/SKILL.md +71 -0
  177. package/template/.agents/skills/prp-dev-php/SKILL.md +63 -0
  178. package/template/.agents/skills/prp-sa-ba/SKILL.md +52 -0
  179. package/template/.agents/skills/python-patterns/SKILL.md +441 -0
  180. package/template/.agents/skills/red-team-tactics/SKILL.md +199 -0
  181. package/template/.agents/skills/release-git-operations/SKILL.md +97 -0
  182. package/template/.agents/skills/research/SKILL.md +143 -0
  183. package/template/.agents/skills/review/SKILL.md +55 -0
  184. package/template/.agents/skills/review-followup-routing/SKILL.md +98 -0
  185. package/template/.agents/skills/roadmap-strategy/SKILL.md +97 -0
  186. package/template/.agents/skills/security-and-hardening/SKILL.md +349 -0
  187. package/template/.agents/skills/security-and-hardening/security-checklist.md +134 -0
  188. package/template/.agents/skills/security-review/SKILL.md +166 -0
  189. package/template/.agents/skills/seo-fundamentals/SKILL.md +129 -0
  190. package/template/.agents/skills/seo-fundamentals/scripts/seo_checker.py +219 -0
  191. package/template/.agents/skills/server-management/SKILL.md +161 -0
  192. package/template/.agents/skills/shipping-and-launch/SKILL.md +311 -0
  193. package/template/.agents/skills/silent-failure-audit/SKILL.md +73 -0
  194. package/template/.agents/skills/simplify/SKILL.md +79 -0
  195. package/template/.agents/skills/skill-development/SKILL.md +86 -0
  196. package/template/.agents/skills/spec-driven-development/SKILL.md +207 -0
  197. package/template/.agents/skills/spec-orchestration/SKILL.md +91 -0
  198. package/template/.agents/skills/specialist-agent-routing/SKILL.md +107 -0
  199. package/template/.agents/skills/tailwind-patterns/SKILL.md +269 -0
  200. package/template/.agents/skills/test/SKILL.md +82 -0
  201. package/template/.agents/skills/test-driven-development/SKILL.md +422 -0
  202. package/template/.agents/skills/test-driven-development/testing-patterns.md +236 -0
  203. package/template/.agents/skills/test-execution-and-coverage/SKILL.md +56 -0
  204. package/template/.agents/skills/type-design/SKILL.md +84 -0
  205. package/template/.agents/skills/ui-ux-pro-max/SKILL.md +75 -0
  206. package/template/.agents/skills/using-agent-skills/SKILL.md +171 -0
  207. package/template/.agents/skills/verification-orchestration/SKILL.md +68 -0
  208. package/template/.agents/skills/vulnerability-scanner/SKILL.md +276 -0
  209. package/template/.agents/skills/vulnerability-scanner/checklists.md +121 -0
  210. package/template/.agents/skills/vulnerability-scanner/scripts/security_scan.py +458 -0
  211. package/template/.agents/skills/wiki/SKILL.md +149 -0
  212. package/template/.agents/skills/workflow-documentation-sync/SKILL.md +87 -0
  213. package/template/.agents/skills/writing-great-skills/SKILL.md +65 -0
  214. package/template/.claude/skills/00-discover/SKILL.md +170 -0
  215. package/template/.claude/skills/10-define/SKILL.md +170 -0
  216. package/template/.claude/skills/20-spec/SKILL.md +156 -0
  217. package/template/.claude/skills/30-plan/SKILL.md +221 -0
  218. package/template/.claude/skills/40-implement/SKILL.md +166 -0
  219. package/template/.claude/skills/50-verify/SKILL.md +188 -0
  220. package/template/.claude/skills/60-report/SKILL.md +183 -0
  221. package/template/.claude/skills/70-release/SKILL.md +155 -0
  222. package/template/.claude/skills/9arm-skills/README.md +51 -0
  223. package/template/.claude/skills/9arm-skills/debug-mantra/SKILL.md +86 -0
  224. package/template/.claude/skills/9arm-skills/management-talk/SKILL.md +79 -0
  225. package/template/.claude/skills/9arm-skills/post-mortem/SKILL.md +71 -0
  226. package/template/.claude/skills/9arm-skills/scrutinize/SKILL.md +72 -0
  227. package/template/.claude/skills/agent/SKILL.md +165 -0
  228. package/template/.claude/skills/api-and-interface-design/SKILL.md +294 -0
  229. package/template/.claude/skills/app-builder/SKILL.md +75 -0
  230. package/template/.claude/skills/app-builder/agent-coordination.md +71 -0
  231. package/template/.claude/skills/app-builder/feature-building.md +53 -0
  232. package/template/.claude/skills/app-builder/project-detection.md +34 -0
  233. package/template/.claude/skills/app-builder/scaffolding.md +118 -0
  234. package/template/.claude/skills/app-builder/tech-stack.md +40 -0
  235. package/template/.claude/skills/app-builder/templates/SKILL.md +39 -0
  236. package/template/.claude/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
  237. package/template/.claude/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
  238. package/template/.claude/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
  239. package/template/.claude/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
  240. package/template/.claude/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
  241. package/template/.claude/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
  242. package/template/.claude/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
  243. package/template/.claude/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +122 -0
  244. package/template/.claude/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +122 -0
  245. package/template/.claude/skills/app-builder/templates/nextjs-static/TEMPLATE.md +169 -0
  246. package/template/.claude/skills/app-builder/templates/nuxt-app/TEMPLATE.md +134 -0
  247. package/template/.claude/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
  248. package/template/.claude/skills/app-builder/templates/react-native-app/TEMPLATE.md +119 -0
  249. package/template/.claude/skills/architecture/SKILL.md +55 -0
  250. package/template/.claude/skills/architecture/context-discovery.md +43 -0
  251. package/template/.claude/skills/architecture/examples.md +94 -0
  252. package/template/.claude/skills/architecture/pattern-selection.md +68 -0
  253. package/template/.claude/skills/architecture/patterns-reference.md +50 -0
  254. package/template/.claude/skills/architecture/trade-off-analysis.md +77 -0
  255. package/template/.claude/skills/bash-linux/SKILL.md +199 -0
  256. package/template/.claude/skills/behavioral-modes/SKILL.md +242 -0
  257. package/template/.claude/skills/brainstorm/SKILL.md +168 -0
  258. package/template/.claude/skills/browser-testing-with-devtools/SKILL.md +302 -0
  259. package/template/.claude/skills/changelog/SKILL.md +109 -0
  260. package/template/.claude/skills/check-for-updates/SKILL.md +117 -0
  261. package/template/.claude/skills/ci-cd-and-automation/SKILL.md +390 -0
  262. package/template/.claude/skills/code-review-and-quality/SKILL.md +392 -0
  263. package/template/.claude/skills/code-simplification/SKILL.md +331 -0
  264. package/template/.claude/skills/codebase-design/DEEPENING.md +24 -0
  265. package/template/.claude/skills/codebase-design/DESIGN-IT-TWICE.md +28 -0
  266. package/template/.claude/skills/codebase-design/SKILL.md +58 -0
  267. package/template/.claude/skills/commit/SKILL.md +63 -0
  268. package/template/.claude/skills/competitor-analysis/SKILL.md +66 -0
  269. package/template/.claude/skills/context-engineering/SKILL.md +290 -0
  270. package/template/.claude/skills/database-design/SKILL.md +52 -0
  271. package/template/.claude/skills/database-design/database-selection.md +43 -0
  272. package/template/.claude/skills/database-design/indexing.md +39 -0
  273. package/template/.claude/skills/database-design/migrations.md +48 -0
  274. package/template/.claude/skills/database-design/optimization.md +36 -0
  275. package/template/.claude/skills/database-design/orm-selection.md +30 -0
  276. package/template/.claude/skills/database-design/schema-design.md +56 -0
  277. package/template/.claude/skills/database-design/scripts/schema_validator.py +172 -0
  278. package/template/.claude/skills/debug/SKILL.md +131 -0
  279. package/template/.claude/skills/debugging-and-error-recovery/SKILL.md +298 -0
  280. package/template/.claude/skills/deploy/SKILL.md +91 -0
  281. package/template/.claude/skills/deployment-procedures/SKILL.md +241 -0
  282. package/template/.claude/skills/deprecation-and-migration/SKILL.md +206 -0
  283. package/template/.claude/skills/devflow/SKILL.md +89 -0
  284. package/template/.claude/skills/devflow-concept-intake/SKILL.md +150 -0
  285. package/template/.claude/skills/devflow-concept-intake/agents/openai.yaml +4 -0
  286. package/template/.claude/skills/devflow-concept-intake/references/adoption-proposal-template.md +60 -0
  287. package/template/.claude/skills/devflow-concept-intake/references/concept-report-template.md +47 -0
  288. package/template/.claude/skills/devflow-concept-intake/references/upstream-tracking-template.md +51 -0
  289. package/template/.claude/skills/devflow-wiki/SKILL.md +75 -0
  290. package/template/.claude/skills/diagnosing-bugs/SKILL.md +93 -0
  291. package/template/.claude/skills/documentation-and-adrs/SKILL.md +278 -0
  292. package/template/.claude/skills/domain-modeling/ADR-FORMAT.md +47 -0
  293. package/template/.claude/skills/domain-modeling/CONTEXT-FORMAT.md +60 -0
  294. package/template/.claude/skills/domain-modeling/SKILL.md +74 -0
  295. package/template/.claude/skills/english-to-thai-translator/SKILL.md +125 -0
  296. package/template/.claude/skills/followup/SKILL.md +83 -0
  297. package/template/.claude/skills/frontend-ui-engineering/SKILL.md +326 -0
  298. package/template/.claude/skills/frontend-ui-engineering/accessibility-checklist.md +159 -0
  299. package/template/.claude/skills/git-workflow-and-versioning/SKILL.md +300 -0
  300. package/template/.claude/skills/goal/SKILL.md +148 -0
  301. package/template/.claude/skills/handoff/SKILL.md +46 -0
  302. package/template/.claude/skills/help/SKILL.md +253 -0
  303. package/template/.claude/skills/human-review-decisions/SKILL.md +74 -0
  304. package/template/.claude/skills/i18n-localization/SKILL.md +154 -0
  305. package/template/.claude/skills/i18n-localization/scripts/i18n_checker.py +241 -0
  306. package/template/.claude/skills/idea-refine/SKILL.md +178 -0
  307. package/template/.claude/skills/idea-refine/examples.md +238 -0
  308. package/template/.claude/skills/idea-refine/frameworks.md +99 -0
  309. package/template/.claude/skills/idea-refine/refinement-criteria.md +113 -0
  310. package/template/.claude/skills/idea-refine/scripts/idea-refine.sh +15 -0
  311. package/template/.claude/skills/incremental-implementation/SKILL.md +248 -0
  312. package/template/.claude/skills/insight/SKILL.md +131 -0
  313. package/template/.claude/skills/insight-capture/SKILL.md +84 -0
  314. package/template/.claude/skills/intelligent-routing/SKILL.md +176 -0
  315. package/template/.claude/skills/issue-triage/SKILL.md +115 -0
  316. package/template/.claude/skills/lint-and-validate/SKILL.md +45 -0
  317. package/template/.claude/skills/lint-and-validate/scripts/lint_runner.py +184 -0
  318. package/template/.claude/skills/lint-and-validate/scripts/type_coverage.py +173 -0
  319. package/template/.claude/skills/mcp-builder/SKILL.md +176 -0
  320. package/template/.claude/skills/md2html/SKILL.md +154 -0
  321. package/template/.claude/skills/md2html/components.md +505 -0
  322. package/template/.claude/skills/md2html/template.html +1152 -0
  323. package/template/.claude/skills/merge/SKILL.md +76 -0
  324. package/template/.claude/skills/mobile-design/SKILL.md +394 -0
  325. package/template/.claude/skills/mobile-design/decision-trees.md +516 -0
  326. package/template/.claude/skills/mobile-design/mobile-backend.md +491 -0
  327. package/template/.claude/skills/mobile-design/mobile-color-system.md +420 -0
  328. package/template/.claude/skills/mobile-design/mobile-debugging.md +122 -0
  329. package/template/.claude/skills/mobile-design/mobile-design-thinking.md +357 -0
  330. package/template/.claude/skills/mobile-design/mobile-navigation.md +458 -0
  331. package/template/.claude/skills/mobile-design/mobile-performance.md +767 -0
  332. package/template/.claude/skills/mobile-design/mobile-testing.md +356 -0
  333. package/template/.claude/skills/mobile-design/mobile-typography.md +433 -0
  334. package/template/.claude/skills/mobile-design/platform-android.md +666 -0
  335. package/template/.claude/skills/mobile-design/platform-ios.md +561 -0
  336. package/template/.claude/skills/mobile-design/scripts/mobile_audit.py +670 -0
  337. package/template/.claude/skills/mobile-design/touch-psychology.md +537 -0
  338. package/template/.claude/skills/nextjs-react-expert/1-async-eliminating-waterfalls.md +312 -0
  339. package/template/.claude/skills/nextjs-react-expert/2-bundle-bundle-size-optimization.md +240 -0
  340. package/template/.claude/skills/nextjs-react-expert/3-server-server-side-performance.md +490 -0
  341. package/template/.claude/skills/nextjs-react-expert/4-client-client-side-data-fetching.md +264 -0
  342. package/template/.claude/skills/nextjs-react-expert/5-rerender-re-render-optimization.md +581 -0
  343. package/template/.claude/skills/nextjs-react-expert/6-rendering-rendering-performance.md +432 -0
  344. package/template/.claude/skills/nextjs-react-expert/7-js-javascript-performance.md +684 -0
  345. package/template/.claude/skills/nextjs-react-expert/8-advanced-advanced-patterns.md +150 -0
  346. package/template/.claude/skills/nextjs-react-expert/SKILL.md +286 -0
  347. package/template/.claude/skills/nextjs-react-expert/scripts/convert_rules.py +222 -0
  348. package/template/.claude/skills/nextjs-react-expert/scripts/react_performance_checker.py +252 -0
  349. package/template/.claude/skills/nodejs-best-practices/SKILL.md +333 -0
  350. package/template/.claude/skills/obsidian-bases/SKILL.md +506 -0
  351. package/template/.claude/skills/obsidian-bases/references/FUNCTIONS_REFERENCE.md +173 -0
  352. package/template/.claude/skills/obsidian-cli/SKILL.md +115 -0
  353. package/template/.claude/skills/obsidian-clipper-template-creator/SKILL.md +73 -0
  354. package/template/.claude/skills/obsidian-clipper-template-creator/assets/clipping-template.json +51 -0
  355. package/template/.claude/skills/obsidian-clipper-template-creator/assets/recipe-template.json +48 -0
  356. package/template/.claude/skills/obsidian-clipper-template-creator/references/analysis-workflow.md +79 -0
  357. package/template/.claude/skills/obsidian-clipper-template-creator/references/bases-workflow.md +44 -0
  358. package/template/.claude/skills/obsidian-clipper-template-creator/references/filters.md +51 -0
  359. package/template/.claude/skills/obsidian-clipper-template-creator/references/json-schema.md +77 -0
  360. package/template/.claude/skills/obsidian-clipper-template-creator/references/logic.md +67 -0
  361. package/template/.claude/skills/obsidian-clipper-template-creator/references/variables.md +64 -0
  362. package/template/.claude/skills/obsidian-markdown/SKILL.md +205 -0
  363. package/template/.claude/skills/obsidian-markdown/references/CALLOUTS.md +58 -0
  364. package/template/.claude/skills/obsidian-markdown/references/EMBEDS.md +63 -0
  365. package/template/.claude/skills/obsidian-markdown/references/PROPERTIES.md +61 -0
  366. package/template/.claude/skills/package-json-generator/SKILL.md +60 -0
  367. package/template/.claude/skills/package-json-generator/scripts/generate.js +120 -0
  368. package/template/.claude/skills/package-json-generator/scripts/run.sh +19 -0
  369. package/template/.claude/skills/parallel-agents/SKILL.md +144 -0
  370. package/template/.claude/skills/performance-optimization/SKILL.md +299 -0
  371. package/template/.claude/skills/performance-optimization/performance-checklist.md +113 -0
  372. package/template/.claude/skills/planning-and-task-breakdown/SKILL.md +239 -0
  373. package/template/.claude/skills/powershell-windows/SKILL.md +167 -0
  374. package/template/.claude/skills/pr/SKILL.md +93 -0
  375. package/template/.claude/skills/pr-review/SKILL.md +143 -0
  376. package/template/.claude/skills/pr-review-analysis/SKILL.md +89 -0
  377. package/template/.claude/skills/prd/SKILL.md +127 -0
  378. package/template/.claude/skills/preview/SKILL.md +121 -0
  379. package/template/.claude/skills/preview-local-check/SKILL.md +59 -0
  380. package/template/.claude/skills/prompt-addons/SKILL.md +99 -0
  381. package/template/.claude/skills/prototype/SKILL.md +44 -0
  382. package/template/.claude/skills/prp-dev-fastapi/SKILL.md +114 -0
  383. package/template/.claude/skills/prp-dev-multiplatform/SKILL.md +36 -0
  384. package/template/.claude/skills/prp-dev-odoo/SKILL.md +71 -0
  385. package/template/.claude/skills/prp-dev-php/SKILL.md +63 -0
  386. package/template/.claude/skills/prp-sa-ba/SKILL.md +52 -0
  387. package/template/.claude/skills/python-patterns/SKILL.md +441 -0
  388. package/template/.claude/skills/red-team-tactics/SKILL.md +199 -0
  389. package/template/.claude/skills/release-git-operations/SKILL.md +97 -0
  390. package/template/.claude/skills/research/SKILL.md +143 -0
  391. package/template/.claude/skills/review/SKILL.md +55 -0
  392. package/template/.claude/skills/review-followup-routing/SKILL.md +98 -0
  393. package/template/.claude/skills/roadmap-strategy/SKILL.md +97 -0
  394. package/template/.claude/skills/security-and-hardening/SKILL.md +349 -0
  395. package/template/.claude/skills/security-and-hardening/security-checklist.md +134 -0
  396. package/template/.claude/skills/security-review/SKILL.md +166 -0
  397. package/template/.claude/skills/seo-fundamentals/SKILL.md +129 -0
  398. package/template/.claude/skills/seo-fundamentals/scripts/seo_checker.py +219 -0
  399. package/template/.claude/skills/server-management/SKILL.md +161 -0
  400. package/template/.claude/skills/shipping-and-launch/SKILL.md +311 -0
  401. package/template/.claude/skills/silent-failure-audit/SKILL.md +73 -0
  402. package/template/.claude/skills/simplify/SKILL.md +79 -0
  403. package/template/.claude/skills/skill-development/SKILL.md +86 -0
  404. package/template/.claude/skills/spec-driven-development/SKILL.md +207 -0
  405. package/template/.claude/skills/spec-orchestration/SKILL.md +91 -0
  406. package/template/.claude/skills/specialist-agent-routing/SKILL.md +107 -0
  407. package/template/.claude/skills/tailwind-patterns/SKILL.md +269 -0
  408. package/template/.claude/skills/test/SKILL.md +82 -0
  409. package/template/.claude/skills/test-driven-development/SKILL.md +422 -0
  410. package/template/.claude/skills/test-driven-development/testing-patterns.md +236 -0
  411. package/template/.claude/skills/test-execution-and-coverage/SKILL.md +56 -0
  412. package/template/.claude/skills/type-design/SKILL.md +84 -0
  413. package/template/.claude/skills/ui-ux-pro-max/SKILL.md +75 -0
  414. package/template/.claude/skills/using-agent-skills/SKILL.md +171 -0
  415. package/template/.claude/skills/verification-orchestration/SKILL.md +68 -0
  416. package/template/.claude/skills/vulnerability-scanner/SKILL.md +276 -0
  417. package/template/.claude/skills/vulnerability-scanner/checklists.md +121 -0
  418. package/template/.claude/skills/vulnerability-scanner/scripts/security_scan.py +458 -0
  419. package/template/.claude/skills/wiki/SKILL.md +149 -0
  420. package/template/.claude/skills/workflow-documentation-sync/SKILL.md +87 -0
  421. package/template/.claude/skills/writing-great-skills/SKILL.md +65 -0
  422. package/template/.nexus/nexus-devflow.json +44 -0
  423. package/template/AGENTS.md +58 -0
  424. package/template/CLAUDE.md +5 -0
  425. package/template/LICENSE +21 -0
  426. package/template/devflow/context/ai-interaction.md +34 -0
  427. package/template/devflow/context/coding-standards.md +19 -0
  428. package/template/devflow/context/current-stage.md +6 -0
  429. package/template/devflow/context/findings.md +13 -0
  430. package/template/devflow/context/project-overview.md +20 -0
  431. package/template/devflow/reference/running-id-contract.md +39 -0
@@ -0,0 +1,199 @@
1
+ ---
2
+ name: red-team-tactics
3
+ description: Red team tactics principles based on MITRE ATT&CK. Attack phases, detection evasion, reporting.
4
+ allowed-tools: Read, Glob, Grep
5
+ ---
6
+
7
+ # Red Team Tactics
8
+
9
+ > Adversary simulation principles based on MITRE ATT&CK framework.
10
+
11
+ ---
12
+
13
+ ## 1. MITRE ATT&CK Phases
14
+
15
+ ### Attack Lifecycle
16
+
17
+ ```
18
+ RECONNAISSANCE → INITIAL ACCESS → EXECUTION → PERSISTENCE
19
+ ↓ ↓ ↓ ↓
20
+ PRIVILEGE ESC → DEFENSE EVASION → CRED ACCESS → DISCOVERY
21
+ ↓ ↓ ↓ ↓
22
+ LATERAL MOVEMENT → COLLECTION → C2 → EXFILTRATION → IMPACT
23
+ ```
24
+
25
+ ### Phase Objectives
26
+
27
+ | Phase | Objective |
28
+ |-------|-----------|
29
+ | **Recon** | Map attack surface |
30
+ | **Initial Access** | Get first foothold |
31
+ | **Execution** | Run code on target |
32
+ | **Persistence** | Survive reboots |
33
+ | **Privilege Escalation** | Get admin/root |
34
+ | **Defense Evasion** | Avoid detection |
35
+ | **Credential Access** | Harvest credentials |
36
+ | **Discovery** | Map internal network |
37
+ | **Lateral Movement** | Spread to other systems |
38
+ | **Collection** | Gather target data |
39
+ | **C2** | Maintain command channel |
40
+ | **Exfiltration** | Extract data |
41
+
42
+ ---
43
+
44
+ ## 2. Reconnaissance Principles
45
+
46
+ ### Passive vs Active
47
+
48
+ | Type | Trade-off |
49
+ |------|-----------|
50
+ | **Passive** | No target contact, limited info |
51
+ | **Active** | Direct contact, more detection risk |
52
+
53
+ ### Information Targets
54
+
55
+ | Category | Value |
56
+ |----------|-------|
57
+ | Technology stack | Attack vector selection |
58
+ | Employee info | Social engineering |
59
+ | Network ranges | Scanning scope |
60
+ | Third parties | Supply chain attack |
61
+
62
+ ---
63
+
64
+ ## 3. Initial Access Vectors
65
+
66
+ ### Selection Criteria
67
+
68
+ | Vector | When to Use |
69
+ |--------|-------------|
70
+ | **Phishing** | Human target, email access |
71
+ | **Public exploits** | Vulnerable services exposed |
72
+ | **Valid credentials** | Leaked or cracked |
73
+ | **Supply chain** | Third-party access |
74
+
75
+ ---
76
+
77
+ ## 4. Privilege Escalation Principles
78
+
79
+ ### Windows Targets
80
+
81
+ | Check | Opportunity |
82
+ |-------|-------------|
83
+ | Unquoted service paths | Write to path |
84
+ | Weak service permissions | Modify service |
85
+ | Token privileges | Abuse SeDebug, etc. |
86
+ | Stored credentials | Harvest |
87
+
88
+ ### Linux Targets
89
+
90
+ | Check | Opportunity |
91
+ |-------|-------------|
92
+ | SUID binaries | Execute as owner |
93
+ | Sudo misconfiguration | Command execution |
94
+ | Kernel vulnerabilities | Kernel exploits |
95
+ | Cron jobs | Writable scripts |
96
+
97
+ ---
98
+
99
+ ## 5. Defense Evasion Principles
100
+
101
+ ### Key Techniques
102
+
103
+ | Technique | Purpose |
104
+ |-----------|---------|
105
+ | LOLBins | Use legitimate tools |
106
+ | Obfuscation | Hide malicious code |
107
+ | Timestomping | Hide file modifications |
108
+ | Log clearing | Remove evidence |
109
+
110
+ ### Operational Security
111
+
112
+ - Work during business hours
113
+ - Mimic legitimate traffic patterns
114
+ - Use encrypted channels
115
+ - Blend with normal behavior
116
+
117
+ ---
118
+
119
+ ## 6. Lateral Movement Principles
120
+
121
+ ### Credential Types
122
+
123
+ | Type | Use |
124
+ |------|-----|
125
+ | Password | Standard auth |
126
+ | Hash | Pass-the-hash |
127
+ | Ticket | Pass-the-ticket |
128
+ | Certificate | Certificate auth |
129
+
130
+ ### Movement Paths
131
+
132
+ - Admin shares
133
+ - Remote services (RDP, SSH, WinRM)
134
+ - Exploitation of internal services
135
+
136
+ ---
137
+
138
+ ## 7. Active Directory Attacks
139
+
140
+ ### Attack Categories
141
+
142
+ | Attack | Target |
143
+ |--------|--------|
144
+ | Kerberoasting | Service account passwords |
145
+ | AS-REP Roasting | Accounts without pre-auth |
146
+ | DCSync | Domain credentials |
147
+ | Golden Ticket | Persistent domain access |
148
+
149
+ ---
150
+
151
+ ## 8. Reporting Principles
152
+
153
+ ### Attack Narrative
154
+
155
+ Document the full attack chain:
156
+ 1. How initial access was gained
157
+ 2. What techniques were used
158
+ 3. What objectives were achieved
159
+ 4. Where detection failed
160
+
161
+ ### Detection Gaps
162
+
163
+ For each successful technique:
164
+ - What should have detected it?
165
+ - Why didn't detection work?
166
+ - How to improve detection
167
+
168
+ ---
169
+
170
+ ## 9. Ethical Boundaries
171
+
172
+ ### Always
173
+
174
+ - Stay within scope
175
+ - Minimize impact
176
+ - Report immediately if real threat found
177
+ - Document all actions
178
+
179
+ ### Never
180
+
181
+ - Destroy production data
182
+ - Cause denial of service (unless scoped)
183
+ - Access beyond proof of concept
184
+ - Retain sensitive data
185
+
186
+ ---
187
+
188
+ ## 10. Anti-Patterns
189
+
190
+ | ❌ Don't | ✅ Do |
191
+ |----------|-------|
192
+ | Rush to exploitation | Follow methodology |
193
+ | Cause damage | Minimize impact |
194
+ | Skip reporting | Document everything |
195
+ | Ignore scope | Stay within boundaries |
196
+
197
+ ---
198
+
199
+ > **Remember:** Red team simulates attackers to improve defenses, not to cause harm.
@@ -0,0 +1,97 @@
1
+ ---
2
+ name: release-git-operations
3
+ description: Handle commit, pull request, merge, deployment, and changelog work around Release. Use when packaging verified work for sharing, integration, deployment, or release communication.
4
+ ---
5
+
6
+ # Release Git Operations
7
+
8
+ ## Overview
9
+
10
+ This skill groups release-adjacent git and deployment behavior that used to be spread across multiple companion workflows.
11
+
12
+ It is the shared behavior layer behind:
13
+
14
+ - `Commit`
15
+ - `PR`
16
+ - `Merge`
17
+ - `Deploy`
18
+ - `Changelog`
19
+
20
+ ## Related Foundation Skills
21
+
22
+ This skill should reuse and align with:
23
+
24
+ - `.agents/skills/git-workflow-and-versioning/SKILL.md`
25
+ - `.agents/skills/shipping-and-launch/SKILL.md`
26
+ - `.agents/skills/deployment-procedures/SKILL.md`
27
+
28
+ ## When to Use
29
+
30
+ - After `/50-Verify` when verified work is ready for packaging
31
+ - During `/70-Release` when the team needs commit, PR, merge, deployment, or changelog support after the report is already aligned
32
+ - When release communication must be built from markdown-first stage artifacts
33
+
34
+ ## Supported Modes
35
+
36
+ - `commit`
37
+ - `pr`
38
+ - `merge`
39
+ - `deploy`
40
+ - `changelog`
41
+
42
+ ## Process
43
+
44
+ ### 1. Confirm Release Context
45
+
46
+ Read the minimum required artifacts:
47
+
48
+ - `verify.md`
49
+ - `release.md`
50
+ - `report.md` when relevant
51
+ - git state and repository policy when relevant
52
+
53
+ ### 2. Run The Appropriate Mode
54
+
55
+ #### Commit
56
+
57
+ - stage the intended scope
58
+ - use disciplined commit messaging
59
+ - preserve branch safety rules
60
+
61
+ #### PR
62
+
63
+ - build PR narrative from markdown-first artifacts
64
+ - preserve repository template fidelity
65
+ - route follow-up review work cleanly
66
+
67
+ #### Merge
68
+
69
+ - confirm verification and review gates are satisfied
70
+ - integrate safely using repository policy
71
+ - route conflicts back to implementation or follow-up
72
+
73
+ #### Deploy
74
+
75
+ - apply shipping and launch discipline
76
+ - verify platform-specific readiness
77
+ - keep rollback and health checks explicit
78
+
79
+ #### Changelog
80
+
81
+ - summarize user-facing changes from stage artifacts and git evidence
82
+ - avoid leaking low-value internal detail
83
+
84
+ ### 3. Route Back
85
+
86
+ - return to `/70-Release` when packaging is still in progress
87
+ - return to `/60-Report` when communication is the remaining task
88
+ - return to `/40-Implement`, `/50-Verify`, or `PR-Followup` if release blockers are discovered
89
+
90
+ ## Output
91
+
92
+ Return:
93
+
94
+ - mode executed
95
+ - artifacts or git actions produced
96
+ - risks, blockers, or follow-up needs
97
+ - recommended next stage or companion command
@@ -0,0 +1,143 @@
1
+ ---
2
+ name: research
3
+ description: Research workflow
4
+ ---
5
+
6
+ ---
7
+ description: Codebase and evidence research. Transitional compatibility path for the Research companion command in DevFlow 2.0.
8
+ ---
9
+
10
+ # Research - Codebase And Evidence Exploration
11
+
12
+ ## Topic: $ARGUMENTS
13
+
14
+ This file keeps its old numeric path for migration compatibility.
15
+
16
+ In DevFlow 2.0, `Research` is a companion command, not a numbered mainline workflow. The operational behavior remains detailed so it can still function like the original research workflow.
17
+
18
+ ## Purpose
19
+
20
+ Use `Research` to answer complex questions with code evidence, source material, and structured findings.
21
+
22
+ Use it when:
23
+
24
+ - facts are missing
25
+ - source material must be collected
26
+ - the codebase or external docs need deeper investigation
27
+ - Discover, Define, or Spec cannot proceed confidently without evidence
28
+
29
+ Use `prototype` when the fastest reliable evidence is a runnable throwaway experiment rather than more reading.
30
+
31
+ Preferred DevFlow 2.0 pairing:
32
+
33
+ - from `/00-Discover`
34
+ - from `/10-Define`
35
+ - from `/20-Spec`
36
+ - from `/50-Verify` when validating a claim or implementation choice
37
+
38
+ When invoked with a Discovery ID, link the research report to that discovery and return to `/00-Discover {discovery_id}` so Discover can synthesize the evidence and make the decision. Research must not allocate a Running ID.
39
+
40
+ ---
41
+
42
+ ## Internal Process
43
+
44
+ You are an orchestrator. Your goal is to perform deep technical or evidence research while preserving the richer research UX from the original workflow.
45
+
46
+ Apply prompt addon patterns when the topic matches:
47
+
48
+ | Topic | Addon pattern | Output |
49
+ | :--- | :--- | :--- |
50
+ | External libraries, APIs, SDKs, services | `spec_researcher` | validated integration notes with sources and implementation constraints |
51
+ | Competitors, alternatives, market gaps | `competitor_analysis` | competitor list, pain points, differentiator opportunities |
52
+ | Completed implementation lessons | `insight_extractor` | reusable patterns, gotchas, file insights, recommendations |
53
+ | API/database/browser validation | `mcp_tools/*` | available validation steps for the current IDE/tooling |
54
+
55
+ ### Phase 1: Query Decomposition
56
+
57
+ - clarify the research question
58
+ - classify whether the work is mainly codebase research, external research, or both
59
+ - identify the evidence needed to answer it
60
+
61
+ ### Phase 2: Exploration
62
+
63
+ - locate relevant code with file and line references
64
+ - trace data flows, architecture, and integration points
65
+ - gather external documentation and source material when needed
66
+ - prioritize "what is" over "what should be"
67
+
68
+ ### Phase 3: Synthesis And Documentation
69
+
70
+ - summarize key findings
71
+ - separate facts from inference
72
+ - record constraints, risks, and unanswered questions
73
+ - save the durable research note to disk
74
+
75
+ ### Phase 4: Knowledge Management
76
+
77
+ - if significant patterns or durable lessons are discovered, recommend recording them in `devflow/lessons.md` or `Wiki`
78
+
79
+ ## Output Format
80
+
81
+ Save the full research note to `devflow/research/{date}-{slug}.md`.
82
+
83
+ Before generating the report:
84
+
85
+ 1. Inspect `.agent/resources/schemas/research.template.md`
86
+ 2. Preserve its required headings and tables
87
+ 3. Replace placeholder text with concrete evidence
88
+ 4. Re-check the output against `research.template.md`, ensure required headings remain, and remove all placeholders before completion
89
+
90
+ Return a concise chat summary plus a persistent report with:
91
+
92
+ ```markdown
93
+ ## Research Summary: [Topic]
94
+
95
+ ### Question
96
+ [What needed to be answered]
97
+
98
+ ### Findings
99
+ - [Finding 1]
100
+ - [Finding 2]
101
+
102
+ ### Evidence
103
+ - [file:line, source, or doc link]
104
+
105
+ ### Constraints And Risks
106
+ - [Constraint]
107
+
108
+ ### Open Questions
109
+ - [Question still unanswered]
110
+
111
+ ### Recommended Next Step
112
+ - [What to do with this research]
113
+ ```
114
+
115
+ ## Examples
116
+
117
+ ```text
118
+ Research auth patterns in the current codebase
119
+ Research Stripe webhook handling constraints
120
+ Research competitor onboarding flows
121
+ Research whether this API version is compatible
122
+ ```
123
+
124
+ ## Relationship To DevFlow 2.0
125
+
126
+ - Classification: Companion command
127
+ - Mainline status: Not a numbered stage
128
+ - Typical entry points: `/00-Discover`, `/10-Define`, `/20-Spec`, `/30-Plan`
129
+ - Typical handoff targets: return to the stage that asked for the evidence
130
+
131
+ ## Sources
132
+
133
+ - `AGENTS.md`
134
+ - `.agent/resources/schemas/research.template.md`
135
+ - Related commands: `/00-Discover`, `/10-Define`, `/20-Spec`, `/30-Plan`, `Spec-Research`, `Agent`
136
+ - Support skills: `prototype`, `spec-research`, `competitor-analysis`, `insight-capture`
137
+
138
+ ## Next Workflow Recommendation
139
+
140
+ - Default: return to the stage that asked for evidence; for discovery-owned research this is `/00-Discover {discovery_id}`
141
+ - Common routes: `/10-Define`, `/20-Spec`, `/30-Plan`, or `/50-Verify`
142
+ - Alternate: `Brainstorm` if the research opens multiple strategic options
143
+
@@ -0,0 +1,55 @@
1
+ ---
2
+ name: review
3
+ description: Two-axis review for changed work. Use inside /50-Verify or /70-Release when a branch, PR, or work-in-progress diff needs standards and spec review.
4
+ ---
5
+
6
+ # Review
7
+
8
+ Use this support skill as one verification lane. `/50-Verify` owns validation evidence; this skill reviews a diff from two separate angles.
9
+
10
+ ## Axes
11
+
12
+ - **Standards**: does the change follow documented repo conventions?
13
+ - **Spec**: does the change implement the originating issue, PRD, spec, or stage artifact?
14
+
15
+ Keep the axes separate so one does not hide the other.
16
+
17
+ ## Process
18
+
19
+ 1. Pin the fixed point.
20
+ - Use the user-supplied commit, branch, tag, or merge-base.
21
+ - If none is supplied, default to the active branch merge-base with `main` when available.
22
+ - Confirm the diff is non-empty.
23
+
24
+ 2. Identify the spec source.
25
+ - Prefer `devflow/runs/{ID}-*/20-spec.md`, `30-plan.md`, issue brief, PRD, or explicit user path.
26
+ - If no spec exists, mark the Spec axis as skipped.
27
+
28
+ 3. Identify standards sources.
29
+ - Look for repo docs such as `AGENTS.md`, `CONTRIBUTING.md`, coding standards, workflow docs, or stage contracts.
30
+
31
+ 4. Review standards.
32
+ - Cite the violated standard.
33
+ - Distinguish hard violations from judgment calls.
34
+ - Skip issues that tooling already enforces unless tooling is missing.
35
+
36
+ 5. Review spec.
37
+ - Report missing or partial requirements.
38
+ - Report scope creep.
39
+ - Report implemented behavior that appears wrong against the spec.
40
+
41
+ 6. Aggregate findings.
42
+ - Present `Standards` and `Spec` separately.
43
+ - Lead with concrete findings and file references.
44
+ - Record residual risk and skipped axes.
45
+
46
+ ## Output
47
+
48
+ Return:
49
+
50
+ - fixed point and diff scope
51
+ - standards sources
52
+ - spec source or skipped reason
53
+ - findings by axis
54
+ - worst issue per axis
55
+ - recommended DevFlow route
@@ -0,0 +1,98 @@
1
+ ---
2
+ name: review-followup-routing
3
+ description: Classify review comments, extend existing work safely, and route corrective or future work back into the right DevFlow 2.0 stage. Use for PR follow-up and post-review follow-up planning.
4
+ ---
5
+
6
+ # Review Follow-up Routing
7
+
8
+ ## Overview
9
+
10
+ This skill groups follow-up handling that used to be split across:
11
+
12
+ - `PR-Followup`
13
+ - `Followup`
14
+
15
+ It keeps follow-up work attached to the right running ID without replacing the numbered mainline.
16
+
17
+ ## Related Foundation Assets
18
+
19
+ This skill should reuse and align with:
20
+
21
+ - `.agent/resources/schemas/pr_followup.template.md`
22
+ - active stage markdown artifacts under `devflow/runs/{ID}-*/`
23
+
24
+ ## Supported Modes
25
+
26
+ - `pr-followup`
27
+ - `task-followup`
28
+
29
+ ## When to Use
30
+
31
+ - after `PR-Review` when review comments need classification and response
32
+ - after human feedback, QA, or release review when a task needs additional scoped work
33
+ - when existing work should be extended instead of replaced
34
+
35
+ ## Process
36
+
37
+ ### 1. Load Current Context
38
+
39
+ Read only the minimum needed:
40
+
41
+ - existing running ID workspace artifacts
42
+ - latest review comments, requested changes, or QA findings
43
+ - current implementation or verification notes when relevant
44
+
45
+ ### 2. Classify The Follow-up
46
+
47
+ Classify each item into a useful bucket such as:
48
+
49
+ - fix now
50
+ - already resolved
51
+ - needs clarification
52
+ - new scope follow-up
53
+ - pre-existing issue
54
+ - non-actionable
55
+
56
+ For task follow-up, also classify the change shape:
57
+
58
+ - extension
59
+ - enhancement
60
+ - integration
61
+ - refinement
62
+ - bug fix after review
63
+
64
+ ### 3. Preserve Existing History
65
+
66
+ Extend existing markdown artifacts instead of replacing them:
67
+
68
+ - keep current phases and completed work intact
69
+ - append new phases, subtasks, notes, or decision logs
70
+ - keep the same running ID unless the new scope truly deserves a separate work line
71
+
72
+ ### 4. Save Reusable Output
73
+
74
+ For PR-centered follow-up, save a report under:
75
+
76
+ ```text
77
+ devflow/reports/{date}-pr-followup-{ID}.md
78
+ ```
79
+
80
+ Use `.agent/resources/schemas/pr_followup.template.md` when a formal report is required.
81
+
82
+ For task follow-up, append the approved follow-up work directly into the relevant stage markdown files for the same running ID.
83
+
84
+ ### 5. Route Back
85
+
86
+ - `/40-Implement` for immediate corrective work
87
+ - `/50-Verify` when only verification needs another pass
88
+ - `/10-Define` or `/20-Spec` when the follow-up becomes genuinely new scope
89
+
90
+ ## Output
91
+
92
+ Return:
93
+
94
+ - mode used
95
+ - classification summary
96
+ - what changes now versus later
97
+ - where the follow-up was recorded
98
+ - exact recommended next command
@@ -0,0 +1,97 @@
1
+ ---
2
+ name: roadmap-strategy
3
+ description: Create or refresh product roadmap direction using markdown-first discovery and roadmap artifacts. Use when strategic planning should stay outside the mainline but still follow DevFlow 2.0 contracts.
4
+ ---
5
+
6
+ # Roadmap Strategy
7
+
8
+ ## Overview
9
+
10
+ This skill is the shared behavior layer behind `Roadmap`.
11
+
12
+ It replaces the older JSON-centered roadmap flow with a markdown-first strategy workflow that still preserves structured validation.
13
+
14
+ ## Related Assets
15
+
16
+ This skill should reuse and align with:
17
+
18
+ - `.agent/resources/schemas/roadmap_discovery.template.md`
19
+ - `.agent/resources/schemas/roadmap.template.md`
20
+ - `ROADMAP.md`
21
+
22
+ ## When to Use
23
+
24
+ - when product direction, priority, or sequencing needs a dedicated roadmap pass
25
+ - when competitor, PRD, research, or delivery insight should be consolidated into strategy
26
+ - when roadmap work should stay outside the numbered mainline but still hand off cleanly into `PRD`, `/10-Define`, or `/20-Spec`
27
+
28
+ ## Canonical Artifacts
29
+
30
+ Use markdown-first artifacts:
31
+
32
+ - `devflow/roadmap/roadmap-discovery.md`
33
+ - `ROADMAP.md`
34
+
35
+ Optional supporting context may include:
36
+
37
+ - `devflow/project_index.json` until project-index migration is fully complete
38
+ - research notes
39
+ - PRD outputs
40
+ - release or insight notes
41
+
42
+ ## Process
43
+
44
+ ### 1. Load Current Strategy Context
45
+
46
+ Read the minimum useful context:
47
+
48
+ - existing `ROADMAP.md`
49
+ - `devflow/roadmap/roadmap-discovery.md`
50
+ - current research, competitor notes, PRD, or insights when relevant
51
+
52
+ ### 2. Refresh Discovery
53
+
54
+ Capture:
55
+
56
+ - project purpose
57
+ - target users
58
+ - current state
59
+ - constraints
60
+ - market context
61
+ - known gaps
62
+
63
+ Save discovery notes in `devflow/roadmap/roadmap-discovery.md` using the discovery template.
64
+
65
+ ### 3. Prioritize The Roadmap
66
+
67
+ Group roadmap work into useful strategic buckets such as:
68
+
69
+ - near-term improvements
70
+ - medium-term bets
71
+ - long-term bets
72
+ - technical debt and platform readiness
73
+
74
+ Keep priorities traceable to evidence from stage work, user feedback, competitor findings, or implementation insight.
75
+
76
+ ### 4. Save The Canonical Roadmap
77
+
78
+ Update `ROADMAP.md` using `.agent/resources/schemas/roadmap.template.md`.
79
+
80
+ Replace placeholder content fully and keep headings and tables intact so validation can inspect the roadmap structure.
81
+
82
+ ### 5. Route Back
83
+
84
+ - `PRD` when product framing needs to deepen
85
+ - `/10-Define` when roadmap decisions should become bounded work
86
+ - `/20-Spec` when one item is ready for delivery contract work
87
+ - `Brainstorm` when strategy is still too fuzzy to lock
88
+
89
+ ## Output
90
+
91
+ Return:
92
+
93
+ - what changed in discovery
94
+ - what changed in the roadmap
95
+ - priority rationale
96
+ - validation result
97
+ - the recommended next command