@luanpdd/kit-mcp 0.2.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (221) hide show
  1. package/CHANGELOG.md +43 -1
  2. package/README.md +35 -18
  3. package/kit/COMANDOS.md +123 -0
  4. package/kit/agents/advisor-researcher.md +121 -0
  5. package/kit/agents/assumptions-analyzer.md +122 -0
  6. package/kit/agents/codebase-mapper.md +787 -0
  7. package/kit/agents/debugger.md +796 -0
  8. package/kit/agents/executor.md +516 -0
  9. package/kit/agents/integration-checker.md +217 -0
  10. package/kit/agents/nyquist-auditor.md +195 -0
  11. package/kit/agents/phase-researcher.md +715 -0
  12. package/kit/agents/plan-checker.md +289 -0
  13. package/kit/agents/planner.md +1373 -0
  14. package/kit/agents/project-researcher.md +671 -0
  15. package/kit/agents/research-synthesizer.md +259 -0
  16. package/kit/agents/roadmapper.md +696 -0
  17. package/kit/agents/ui-auditor.md +458 -0
  18. package/kit/agents/ui-checker.md +319 -0
  19. package/kit/agents/ui-researcher.md +374 -0
  20. package/kit/agents/user-profiler.md +183 -0
  21. package/kit/agents/verifier.md +719 -0
  22. package/kit/commands/adicionar-backlog.md +76 -0
  23. package/kit/commands/adicionar-fase.md +43 -0
  24. package/kit/commands/adicionar-tarefa.md +47 -0
  25. package/kit/commands/adicionar-testes.md +41 -0
  26. package/kit/commands/ajuda.md +22 -0
  27. package/kit/commands/atualizar.md +37 -0
  28. package/kit/commands/auditar-marco.md +36 -0
  29. package/kit/commands/auditar-uat.md +24 -0
  30. package/kit/commands/autonomo.md +41 -0
  31. package/kit/commands/branch-pr.md +25 -0
  32. package/kit/commands/concluir-marco.md +136 -0
  33. package/kit/commands/configuracoes.md +36 -0
  34. package/kit/commands/definir-perfil.md +12 -0
  35. package/kit/commands/depurar.md +173 -0
  36. package/kit/commands/discutir-fase.md +64 -0
  37. package/kit/commands/entrar-discord.md +18 -0
  38. package/kit/commands/estatisticas.md +18 -0
  39. package/kit/commands/executar-fase.md +59 -0
  40. package/kit/commands/expresso.md +47 -0
  41. package/kit/commands/fase-ui.md +34 -0
  42. package/kit/commands/fazer.md +30 -0
  43. package/kit/commands/fio.md +126 -0
  44. package/kit/commands/fluxos-trabalho.md +64 -0
  45. package/kit/commands/forense.md +56 -0
  46. package/kit/commands/gerenciador.md +39 -0
  47. package/kit/commands/inserir-fase.md +32 -0
  48. package/kit/commands/limpeza.md +18 -0
  49. package/kit/commands/listar-hipoteses-fase.md +46 -0
  50. package/kit/commands/listar-workspaces.md +19 -0
  51. package/kit/commands/mapear-codebase.md +71 -0
  52. package/kit/commands/nota.md +34 -0
  53. package/kit/commands/novo-marco.md +44 -0
  54. package/kit/commands/novo-projeto.md +42 -0
  55. package/kit/commands/novo-workspace.md +44 -0
  56. package/kit/commands/pausar-trabalho.md +38 -0
  57. package/kit/commands/perfil-usuario.md +46 -0
  58. package/kit/commands/pesquisar-fase.md +195 -0
  59. package/kit/commands/planejar-fase.md +47 -0
  60. package/kit/commands/planejar-lacunas.md +34 -0
  61. package/kit/commands/plantar-ideia.md +26 -0
  62. package/kit/commands/progresso.md +24 -0
  63. package/kit/commands/proximo.md +24 -0
  64. package/kit/commands/publicar.md +370 -0
  65. package/kit/commands/rapido.md +30 -0
  66. package/kit/commands/reaplicar-patches.md +124 -0
  67. package/kit/commands/relatorio-sessao.md +19 -0
  68. package/kit/commands/remover-fase.md +31 -0
  69. package/kit/commands/remover-workspace.md +26 -0
  70. package/kit/commands/resumo-marco.md +51 -0
  71. package/kit/commands/retomar-trabalho.md +40 -0
  72. package/kit/commands/revisar-backlog.md +60 -0
  73. package/kit/commands/revisar-ui.md +32 -0
  74. package/kit/commands/revisar.md +37 -0
  75. package/kit/commands/saude.md +22 -0
  76. package/kit/commands/setup-notion.md +93 -0
  77. package/kit/commands/sync-main.md +68 -0
  78. package/kit/commands/validar-fase.md +35 -0
  79. package/kit/commands/verificar-tarefas.md +45 -0
  80. package/kit/commands/verificar-trabalho.md +38 -0
  81. package/kit/file-manifest.json +219 -0
  82. package/kit/framework/VERSION +1 -0
  83. package/kit/framework/bin/lib/commands.cjs +959 -0
  84. package/kit/framework/bin/lib/config.cjs +442 -0
  85. package/kit/framework/bin/lib/core.cjs +1230 -0
  86. package/kit/framework/bin/lib/frontmatter.cjs +336 -0
  87. package/kit/framework/bin/lib/init.cjs +1442 -0
  88. package/kit/framework/bin/lib/milestone.cjs +252 -0
  89. package/kit/framework/bin/lib/model-profiles.cjs +68 -0
  90. package/kit/framework/bin/lib/phase.cjs +888 -0
  91. package/kit/framework/bin/lib/profile-output.cjs +952 -0
  92. package/kit/framework/bin/lib/profile-pipeline.cjs +539 -0
  93. package/kit/framework/bin/lib/roadmap.cjs +329 -0
  94. package/kit/framework/bin/lib/security.cjs +382 -0
  95. package/kit/framework/bin/lib/state.cjs +1031 -0
  96. package/kit/framework/bin/lib/template.cjs +222 -0
  97. package/kit/framework/bin/lib/uat.cjs +282 -0
  98. package/kit/framework/bin/lib/verify.cjs +888 -0
  99. package/kit/framework/bin/lib/workstream.cjs +491 -0
  100. package/kit/framework/bin/tools.cjs +918 -0
  101. package/kit/framework/commands/workstreams.md +63 -0
  102. package/kit/framework/references/checkpoints.md +778 -0
  103. package/kit/framework/references/continuation-format.md +249 -0
  104. package/kit/framework/references/decimal-phase-calculation.md +64 -0
  105. package/kit/framework/references/git-integration.md +295 -0
  106. package/kit/framework/references/git-planning-commit.md +38 -0
  107. package/kit/framework/references/model-profile-resolution.md +36 -0
  108. package/kit/framework/references/model-profiles.md +139 -0
  109. package/kit/framework/references/phase-argument-parsing.md +61 -0
  110. package/kit/framework/references/planning-config.md +202 -0
  111. package/kit/framework/references/questioning.md +162 -0
  112. package/kit/framework/references/tdd.md +263 -0
  113. package/kit/framework/references/ui-brand.md +160 -0
  114. package/kit/framework/references/user-profiling.md +657 -0
  115. package/kit/framework/references/verification-patterns.md +612 -0
  116. package/kit/framework/references/workstream-flag.md +58 -0
  117. package/kit/framework/templates/DEBUG.md +164 -0
  118. package/kit/framework/templates/UAT.md +265 -0
  119. package/kit/framework/templates/UI-SPEC.md +100 -0
  120. package/kit/framework/templates/VALIDATION.md +76 -0
  121. package/kit/framework/templates/claude-md.md +122 -0
  122. package/kit/framework/templates/codebase/architecture.md +185 -0
  123. package/kit/framework/templates/codebase/concerns.md +205 -0
  124. package/kit/framework/templates/codebase/conventions.md +204 -0
  125. package/kit/framework/templates/codebase/integrations.md +192 -0
  126. package/kit/framework/templates/codebase/stack.md +158 -0
  127. package/kit/framework/templates/codebase/structure.md +199 -0
  128. package/kit/framework/templates/codebase/testing.md +301 -0
  129. package/kit/framework/templates/config.json +44 -0
  130. package/kit/framework/templates/context.md +352 -0
  131. package/kit/framework/templates/continue-here.md +78 -0
  132. package/kit/framework/templates/copilot-instructions.md +7 -0
  133. package/kit/framework/templates/debug-subagent-prompt.md +91 -0
  134. package/kit/framework/templates/dev-preferences.md +20 -0
  135. package/kit/framework/templates/discovery.md +146 -0
  136. package/kit/framework/templates/discussion-log.md +63 -0
  137. package/kit/framework/templates/milestone-archive.md +123 -0
  138. package/kit/framework/templates/milestone.md +115 -0
  139. package/kit/framework/templates/phase-prompt.md +610 -0
  140. package/kit/framework/templates/planner-subagent-prompt.md +117 -0
  141. package/kit/framework/templates/project.md +186 -0
  142. package/kit/framework/templates/requirements.md +231 -0
  143. package/kit/framework/templates/research-project/ARCHITECTURE.md +204 -0
  144. package/kit/framework/templates/research-project/FEATURES.md +147 -0
  145. package/kit/framework/templates/research-project/PITFALLS.md +200 -0
  146. package/kit/framework/templates/research-project/STACK.md +120 -0
  147. package/kit/framework/templates/research-project/SUMMARY.md +170 -0
  148. package/kit/framework/templates/research.md +419 -0
  149. package/kit/framework/templates/retrospective.md +54 -0
  150. package/kit/framework/templates/roadmap.md +202 -0
  151. package/kit/framework/templates/state.md +176 -0
  152. package/kit/framework/templates/summary-complex.md +59 -0
  153. package/kit/framework/templates/summary-minimal.md +41 -0
  154. package/kit/framework/templates/summary-standard.md +48 -0
  155. package/kit/framework/templates/summary.md +209 -0
  156. package/kit/framework/templates/user-profile.md +146 -0
  157. package/kit/framework/templates/user-setup.md +256 -0
  158. package/kit/framework/templates/verification-report.md +258 -0
  159. package/kit/framework/workflows/add-phase.md +112 -0
  160. package/kit/framework/workflows/add-tests.md +351 -0
  161. package/kit/framework/workflows/add-todo.md +158 -0
  162. package/kit/framework/workflows/audit-milestone.md +340 -0
  163. package/kit/framework/workflows/audit-uat.md +109 -0
  164. package/kit/framework/workflows/autonomous.md +891 -0
  165. package/kit/framework/workflows/check-todos.md +177 -0
  166. package/kit/framework/workflows/cleanup.md +152 -0
  167. package/kit/framework/workflows/complete-milestone.md +696 -0
  168. package/kit/framework/workflows/diagnose-issues.md +231 -0
  169. package/kit/framework/workflows/discovery-phase.md +289 -0
  170. package/kit/framework/workflows/discuss-phase-assumptions.md +653 -0
  171. package/kit/framework/workflows/discuss-phase.md +1049 -0
  172. package/kit/framework/workflows/do.md +104 -0
  173. package/kit/framework/workflows/execute-phase.md +838 -0
  174. package/kit/framework/workflows/execute-plan.md +510 -0
  175. package/kit/framework/workflows/fast.md +102 -0
  176. package/kit/framework/workflows/forensics.md +265 -0
  177. package/kit/framework/workflows/health.md +181 -0
  178. package/kit/framework/workflows/help.md +606 -0
  179. package/kit/framework/workflows/insert-phase.md +130 -0
  180. package/kit/framework/workflows/list-phase-assumptions.md +178 -0
  181. package/kit/framework/workflows/list-workspaces.md +56 -0
  182. package/kit/framework/workflows/manager.md +362 -0
  183. package/kit/framework/workflows/map-codebase.md +377 -0
  184. package/kit/framework/workflows/milestone-summary.md +223 -0
  185. package/kit/framework/workflows/new-milestone.md +486 -0
  186. package/kit/framework/workflows/new-project.md +1250 -0
  187. package/kit/framework/workflows/new-workspace.md +237 -0
  188. package/kit/framework/workflows/next.md +97 -0
  189. package/kit/framework/workflows/node-repair.md +92 -0
  190. package/kit/framework/workflows/note.md +156 -0
  191. package/kit/framework/workflows/pause-work.md +176 -0
  192. package/kit/framework/workflows/plan-milestone-gaps.md +273 -0
  193. package/kit/framework/workflows/plan-phase.md +859 -0
  194. package/kit/framework/workflows/plant-seed.md +169 -0
  195. package/kit/framework/workflows/pr-branch.md +129 -0
  196. package/kit/framework/workflows/profile-user.md +450 -0
  197. package/kit/framework/workflows/progress.md +507 -0
  198. package/kit/framework/workflows/quick.md +757 -0
  199. package/kit/framework/workflows/remove-phase.md +155 -0
  200. package/kit/framework/workflows/remove-workspace.md +90 -0
  201. package/kit/framework/workflows/research-phase.md +82 -0
  202. package/kit/framework/workflows/resume-project.md +326 -0
  203. package/kit/framework/workflows/review.md +228 -0
  204. package/kit/framework/workflows/session-report.md +146 -0
  205. package/kit/framework/workflows/settings.md +283 -0
  206. package/kit/framework/workflows/ship.md +228 -0
  207. package/kit/framework/workflows/stats.md +60 -0
  208. package/kit/framework/workflows/transition.md +671 -0
  209. package/kit/framework/workflows/ui-phase.md +302 -0
  210. package/kit/framework/workflows/ui-review.md +165 -0
  211. package/kit/framework/workflows/update.md +323 -0
  212. package/kit/framework/workflows/validate-phase.md +174 -0
  213. package/kit/framework/workflows/verify-phase.md +252 -0
  214. package/kit/framework/workflows/verify-work.md +637 -0
  215. package/kit/hooks/check-update.js +114 -0
  216. package/kit/hooks/context-monitor.js +156 -0
  217. package/kit/hooks/prompt-guard.js +96 -0
  218. package/kit/hooks/statusline.js +119 -0
  219. package/kit/hooks/workflow-guard.js +94 -0
  220. package/kit/settings.json +45 -0
  221. package/package.json +1 -1
@@ -0,0 +1,219 @@
1
+ {
2
+ "version": "1.30.0",
3
+ "timestamp": "2026-03-28T19:35:44.191Z",
4
+ "files": {
5
+ "framework/bin/tools.cjs": "af10545eae9b4339a12dee0b30048830f52788e62aefb3cba489d67c3236ab74",
6
+ "framework/bin/lib/commands.cjs": "95a7ff9eda6a8099aa26dbc4b3cc97d1d8c414bf106540b274c7e871dd73fdb7",
7
+ "framework/bin/lib/config.cjs": "81939c753ec935de151a81c7df2a53dad2f279bf2369c1d64a380a6220257bbf",
8
+ "framework/bin/lib/core.cjs": "a5fe1881148394eb84df62e223392e94bba61a4dd090d6ba348a5cff2368e707",
9
+ "framework/bin/lib/frontmatter.cjs": "a103236e35872026c0a3523d95a0e04db22b7d392fe972e66009850fba8bf376",
10
+ "framework/bin/lib/init.cjs": "34064df829bedad2345b9d41302b7f49e1ee8e8eadb0783d108e1f74c5a19e46",
11
+ "framework/bin/lib/milestone.cjs": "9d8a9bdb4623c981c272771c185ee5fd8babbe0ed99800cf2376e8f8d3b3b6b6",
12
+ "framework/bin/lib/model-profiles.cjs": "6090488619a3ca9c14ca7b6027db536b95eb8bd022b55e0a8e87ae05632e9b20",
13
+ "framework/bin/lib/phase.cjs": "8a0fef06894fe1b9215cf7ba2e8d7140cdb739f2d5240668c7da1d14abdd4702",
14
+ "framework/bin/lib/profile-output.cjs": "b5c74d542192e3ac1a409f4d6698d8a83038ad1944e99b5507503e91b476442b",
15
+ "framework/bin/lib/profile-pipeline.cjs": "6c73a8c185ccb612df2254c2bb0d98f4357b4a468e78d896822b57a30dfaae64",
16
+ "framework/bin/lib/roadmap.cjs": "0fdc875ca221710be2b129b1751cd3b4a4fa75361d23b3ef48950462b18aea08",
17
+ "framework/bin/lib/security.cjs": "15362ce35edba775dad4542cadf2987ebe51dd51975dccfa18e7e714d3c56e8d",
18
+ "framework/bin/lib/state.cjs": "edf7c8b685df2145b03b780568abfd6491e0c566d8cf563ccd09373868c0d99d",
19
+ "framework/bin/lib/template.cjs": "702f62df610ea20cb90430758fe4850c386cf5191bab706d090076f4cd021c7b",
20
+ "framework/bin/lib/uat.cjs": "1007629426eaa9886e5ee8bc21b1169762eade2fc287388ef961deba173e4035",
21
+ "framework/bin/lib/verify.cjs": "1fd33de4ef3229af12563d56b21323741f0b62de0574f0902231807766e7a703",
22
+ "framework/bin/lib/workstream.cjs": "b3f92418195b242d02dec0721f766ff5a68cbaffb876f4c69ae81ff4bcf9eb27",
23
+ "framework/commands/workstreams.md": "69de96734c8e86b220ab702ba89a5f07bd337e3515655e59d0e9498b1fd7e4d1",
24
+ "framework/references/checkpoints.md": "0c7dd9ecbc5526a1964f58ca558f0464b07fb0437c8a480b75c39a3d8b0c650a",
25
+ "framework/references/continuation-format.md": "27a6c21ac06e80baad4d99a3fa31d514d26178a377ae2c8426b131c1bad3b928",
26
+ "framework/references/decimal-phase-calculation.md": "ec2c6eebac8d96272534b75412e1e661884702b832ee3b9f785cb561e9f5cb4a",
27
+ "framework/references/git-integration.md": "399227aaf0414ec1f1adb23c444b8045f172cc960e5eb667b4a6575f6004f5ad",
28
+ "framework/references/git-planning-commit.md": "c01def92749ba3ff5c6ed33bf32b988167eb5804183969353b80f7f34ebe0377",
29
+ "framework/references/model-profile-resolution.md": "e86daa54b19106e50551d63c62251672c61fe2549cd182c114d498ccb697fad1",
30
+ "framework/references/model-profiles.md": "ad9d04bdbe03d5911cb01a9cda17376b84ece2c4dc5e198451fdccac52b9bd97",
31
+ "framework/references/phase-argument-parsing.md": "680bdfcc053ebade5edece6a35cab2c626d645c882a6f5dcb7735e78fbea82ce",
32
+ "framework/references/planning-config.md": "7a98799ff610f919cfbea0aa776bf1f6d3eb33b4029d902b430e9517dca324f3",
33
+ "framework/references/questioning.md": "a8c988cab05f4651f9b88b7e6217fc8569ba4748a795a47711ee8cf64b2c70b0",
34
+ "framework/references/tdd.md": "edc637151a18d2521c538d91b2208ff478549ca2f2f2d4d6e64a7f2144589ed9",
35
+ "framework/references/ui-brand.md": "b8cd57dc29a2071a6865a8f07a76260946ea4c13628e3cbc96cfb4ade970ae8b",
36
+ "framework/references/user-profiling.md": "b50416fe57c1b3212782c8f6b0ba66ec0d150aa34ec7ce38de7c42b79cb48ce5",
37
+ "framework/references/verification-patterns.md": "b84afc2133af1e0fbd26849eb6d10ec179d0f4206772bfe98500985c8948e279",
38
+ "framework/references/workstream-flag.md": "bdf8ffde343dc245d23224c107fea7b406578825458b959b6419e9f0ae89340c",
39
+ "framework/templates/claude-md.md": "d4db5b0b587e323c780a8bbad736f03237d1fa6e3758c5002d12aabd6476d2e9",
40
+ "framework/templates/codebase/architecture.md": "6be88214162fdd89bf37d81f4a225be233fa7b8b43c76a96dbc222e4db5d56aa",
41
+ "framework/templates/codebase/concerns.md": "efa26d1fb5132f25f935a4f7d5c0143373dfd106975c757365fe9813956db19f",
42
+ "framework/templates/codebase/conventions.md": "c2e07698dad6b3642d5a8b734bed79c66541a34bfe6b7c2ba3e755655cd5827b",
43
+ "framework/templates/codebase/integrations.md": "39bd23c71eedd56452aab6760df99c4e82d209f00f7d4336f977eef236c5a933",
44
+ "framework/templates/codebase/stack.md": "116e7e67dd87ddecddc3068cb59de482390cea12e27d8b3672a7444d235b0827",
45
+ "framework/templates/codebase/structure.md": "6b444f8d7dc33274c90d5c747696a321a551d033f5e262851d33927713226931",
46
+ "framework/templates/codebase/testing.md": "76abff7f2050c9eab6a3e74977e1cff08a4227030a7ef29d65d1e51f64c5b117",
47
+ "framework/templates/config.json": "6b4f22b2704d30378bd99d64a21f683b67c69448f047b10756cbf7fa07b938c4",
48
+ "framework/templates/context.md": "69b01e7909ea3f661d5b0fcec5470314f74176aa5bd998939d80d74c03fd07d9",
49
+ "framework/templates/continue-here.md": "f522a51b6895fba838c7a9c60408c5a09472466bdf2837f8974330937e682932",
50
+ "framework/templates/copilot-instructions.md": "8456dfeeeda51c90c04bc91c82618fef4145a6648cacc45aa850f76fea1e9674",
51
+ "framework/templates/debug-subagent-prompt.md": "920656683dedb869c6d910f7c69a188389e5ac0f6c2c9bf0bda26a6bb69dfb08",
52
+ "framework/templates/DEBUG.md": "ff0771b5a2c25258e317fe2c0b6df7a34aa4e7df7ea52f9b2d9fc85aedcc49c3",
53
+ "framework/templates/dev-preferences.md": "88d0a65ec0993a3a2d278ef36d756190a28eda3f35095ce667af674d50d8dab2",
54
+ "framework/templates/discovery.md": "eb8bcca6ffd52c6d161dcc0932a0301378c51a65ac651bbb032805cbba9a4452",
55
+ "framework/templates/discussion-log.md": "cac1b48ec0f4dcb8fda91ce20158cec7fa61db757cc03edd2ed861cc83e6793d",
56
+ "framework/templates/milestone-archive.md": "591b6decdc0c0e51fba1359ed015ed140b33d50a9dcf9c0dbe149d605e3e5f54",
57
+ "framework/templates/milestone.md": "74d2f750ae9f4a9c18feec3708d8f414c5b15148b22eb7da554dc2da87587711",
58
+ "framework/templates/phase-prompt.md": "fe0030cab5e6323b55570da6d8d1968af6b562267efc75d6e473e5bbd47779f8",
59
+ "framework/templates/planner-subagent-prompt.md": "ebf29dbb27042370b7d4ae7dbf5177e7b93c81739936c65e519c82dbb7380b0b",
60
+ "framework/templates/project.md": "0a20beae9806ec1be04cf698cfa1b509a3fbbfaa1e072d45918cce629edd67ba",
61
+ "framework/templates/requirements.md": "a44de4c2f146e473265777500951b12642553606b613168001ed2577d9e968d4",
62
+ "framework/templates/research-project/ARCHITECTURE.md": "746b9ef791d758b0222ca03e03d6da314f54c0d560966b5a3d34766b1553b1ea",
63
+ "framework/templates/research-project/FEATURES.md": "f2b800de5df91b0f567dbe85754be2bf40fe56cb62da5cf6748f7a3cfe24fd8f",
64
+ "framework/templates/research-project/PITFALLS.md": "3ef75fa768422eeca68f4411d1e058c1f447a23a23a43aaed449905940c0cf52",
65
+ "framework/templates/research-project/STACK.md": "82c85799ac4dd344441370e791f09563119f62843034b3a094876a476c2bd4e5",
66
+ "framework/templates/research-project/SUMMARY.md": "dceb2f346388839d9fce7c8de9ffff2354b8539880e5dadfd10fccfce0062997",
67
+ "framework/templates/research.md": "32df6439471a47aa331d73a0a6a6a997d35b1fec5e9a9d8d57ead279e5de0bd0",
68
+ "framework/templates/retrospective.md": "03981e30dd760103c1ea91d31ad24810feb082a388b4231d3a03a2c8ca386c5d",
69
+ "framework/templates/roadmap.md": "e4e35a9eb5dd4d4f2b4aed28ca6896c5bf4d652ad565f698325a56a7e840694f",
70
+ "framework/templates/state.md": "2a7c20c5f963a67860529f22c5dc065576784a5af71a64961eef9dc594c34f27",
71
+ "framework/templates/summary-complex.md": "c22c41202852c53b9ac83192d3ed5843f8923cebf2ba82526c5faf3308455a02",
72
+ "framework/templates/summary-minimal.md": "a8747e6ad3369c35d343590f9e47f2bd40f07512980d24846507f6071a11a867",
73
+ "framework/templates/summary-standard.md": "eb10820947a63bcc4725a6b3e5a5f03b26a2d7150ff530579fb7a06458dad8c1",
74
+ "framework/templates/summary.md": "70beea5f4e1a61e7668285bb883b107dd7e6cff1d4ead84cc963128b7f1f1442",
75
+ "framework/templates/UAT.md": "9e296471b97ebcec9ca944cb7acaf0905c207ac0eaf2f20c56b83a0d59ad5f40",
76
+ "framework/templates/UI-SPEC.md": "20ca56a4e3e21f01ca4dba5a89c2332371b05d6da8e3ed692ea66ede4a6ab45e",
77
+ "framework/templates/user-profile.md": "20749f23e4c413fc2bdb3b125b83e4a05e34d84714146343732a6ff19e856313",
78
+ "framework/templates/user-setup.md": "78b7d718b6e8d67c399aaa353ec84b4dcbd4ae5fb096476740f02b208df50c8f",
79
+ "framework/templates/VALIDATION.md": "598fe24eeec8d47e3757bfe84811d4497b6d486663bf8fc2ec0ef2564d44bc52",
80
+ "framework/templates/verification-report.md": "df40f0c2f7dc0d35aec7b8023822541df4e072a368d2de99ba3382f93c0cd232",
81
+ "framework/VERSION": "539402d2694f8bdccbced843d22a2efdea47865e66833e92d06d2bfedee9ce02",
82
+ "framework/workflows/add-phase.md": "8548376bc1766f41d6d7b9ddb2aad77d8113c7cc802d22d3aea9acb9db0c20d5",
83
+ "framework/workflows/add-tests.md": "62546fc5dc33d4c7f8874054a69a9976234c820a5899016e56658c67f0005e52",
84
+ "framework/workflows/add-todo.md": "6691d551ce124b6bd5cf6ccd78cad75f18eb8763d862620bed88b53ed8eb8061",
85
+ "framework/workflows/audit-milestone.md": "4e63249573dc43d35435dc86b741ebe014eef9b7d273e51bd640a74a6ef092d8",
86
+ "framework/workflows/audit-uat.md": "a0a0d6e694aaaf0c388e646c365a16354da577aaca37ba61e31f438e426bf81d",
87
+ "framework/workflows/autonomous.md": "97d5532632a295e88cd57d019472c680a3ff413a56c190b70f6fee6beaa9ac12",
88
+ "framework/workflows/check-todos.md": "c9c3b38894614af706dc452bdb4d05130fe896cbe0a86ac5a261e570f74220e1",
89
+ "framework/workflows/cleanup.md": "5cc367c51beb89506658ffc551e0bb47ccefca5948ee6901d61dd84e789622eb",
90
+ "framework/workflows/complete-milestone.md": "d0ff0e7c8c381b55c56651580023348bb978c6cc8ee9bd1011544c44205e1ff4",
91
+ "framework/workflows/diagnose-issues.md": "0b85dfb4a987a4de1a6311b31656e8716431fff130f32e0736091e221abf9721",
92
+ "framework/workflows/discovery-phase.md": "7b8ff2c1ae650c6d2767fa95e534a81aaaa511d4f135060e82a8ce76c03184f0",
93
+ "framework/workflows/discuss-phase-assumptions.md": "4b6a38c8712583cfb2a4fd539c56a407f69e5081aba34d941a525945c5cfe0f8",
94
+ "framework/workflows/discuss-phase.md": "808ed7a715a5c7f9f0d6fdd0e993d44a92cb2ea09e37658515f3b57acb00e6c2",
95
+ "framework/workflows/do.md": "e3e796cfc811d813946b1b1e96b009394ec16b9f3a86d0e7670823f3dcf10d96",
96
+ "framework/workflows/execute-phase.md": "961d4b4eabc3666b0478ad903ab7e3485b7be28da1a7e79e9aaaad290caac038",
97
+ "framework/workflows/execute-plan.md": "aabb4ee234308aaa1425c6bbe570d64ec758fff20da3c47b7bf01a9d3667766d",
98
+ "framework/workflows/fast.md": "9577c35aa0912200a5c8efdac4e9bad20c6f971a0e23b5b18a61fa731aa49be7",
99
+ "framework/workflows/forensics.md": "2e8ef7468d66f88955c6df5527a9c25cccba836ef72800680c5f8e92a38d84fa",
100
+ "framework/workflows/health.md": "fd91dbdec07c4382ed71eeda692d8ef90a35e4c6faa1b20118ebf9227584dd7b",
101
+ "framework/workflows/help.md": "7be0fda1cb1b7d36611a67d2b0eb8f7777a5df5d3d2f03f0fdb782a4f775e688",
102
+ "framework/workflows/insert-phase.md": "5ec02a5dcd4e3b2a8acb672a9360e50165e234b13cce24975ad646c0aa97e4c8",
103
+ "framework/workflows/list-phase-assumptions.md": "b71d96323d811ee3aedf74beab3e413c2d258b35a0f55e086ec72b588959a25f",
104
+ "framework/workflows/list-workspaces.md": "88f4300737a9a9a70d10bb4b5467902de518c4d789f500f37d839dee00af6014",
105
+ "framework/workflows/manager.md": "8b0cf183a4340f52a18437ed905919b29133a73d1081a4220eed4d0ee8126491",
106
+ "framework/workflows/map-codebase.md": "40b3e1b6d2e967fcbd5c044f87605480ea9bbdd248df23562219b5996e41d963",
107
+ "framework/workflows/milestone-summary.md": "537954cbffa420ac6f8577a5922ba8146f6c43391b9383307d79f05caa73dea8",
108
+ "framework/workflows/new-milestone.md": "81ffd81279f0e4e55b5764918037bb773acfb7390c5a4b6fc1481566287de86d",
109
+ "framework/workflows/new-project.md": "ffe17619dc87c56065da7bdcd9c8fd5aedab222426b29b9b177d38fe9bc37cf9",
110
+ "framework/workflows/new-workspace.md": "1271d32a19756c431f4c234d635c4f5fc4e61aa5945f6d75d3f67aae8df5b757",
111
+ "framework/workflows/next.md": "526a2ba67067e29234b2718d4a460d75c5602de0107c76116ab15cdeadd6b028",
112
+ "framework/workflows/node-repair.md": "07a1628e5a1ff96bf8a90b49a9d9c3a0ef0b843aff79ffc0162c7b7026f6a61b",
113
+ "framework/workflows/note.md": "de6268ff39722fddbaa2e9367c7e0591c7a88d07c775af97fcc1cf50e17135d0",
114
+ "framework/workflows/pause-work.md": "9729944f2f539233730183325883e08d1868ca4102a7288ff085493f5693dab3",
115
+ "framework/workflows/plan-milestone-gaps.md": "c050c87e9b8a6dbd09cf101597dc0d9888589289c4268511fb70907dad00e917",
116
+ "framework/workflows/plan-phase.md": "bde1867a39b3a9044743ed95752c6ee4e71b4db7fe667d1d0196b1be6c7da757",
117
+ "framework/workflows/plant-seed.md": "11f4e926de6480d2da922be6b49c0c95bbafd059b021b61162f2643d6e8c82dc",
118
+ "framework/workflows/pr-branch.md": "d8a19e84e46de374bc781df56467881441d86df324948dc3ca943322e37ad488",
119
+ "framework/workflows/profile-user.md": "1c711f1bad36136b1322c85b14162c6dcfdcf46f14073a88726da1baf9eac7f2",
120
+ "framework/workflows/progress.md": "92768da921119987949065fbc021daa3a54c75f72d6525e4d51b020120df2965",
121
+ "framework/workflows/quick.md": "9e3bc4657d3572b97c3c3c0a4722c6e69a77a2f5d2180f6cadfcae932d0d4277",
122
+ "framework/workflows/remove-phase.md": "8835653d7a386e10c7bd77000078da3c97a41dd249d68c1eff27be797b683bf5",
123
+ "framework/workflows/remove-workspace.md": "57060ca65a58fcd572cbf0206f8757ab49d7e457d9b20495e22e59ca8bb4d8c4",
124
+ "framework/workflows/research-phase.md": "70d3261eb52ad11f978e3d6b52d94f0f68d426a1b9809378c024b8bd77651691",
125
+ "framework/workflows/resume-project.md": "a5b623aae287a16ac4454daa99a1a575a6cb6be3e589c142ade4e7543ec487a8",
126
+ "framework/workflows/review.md": "b05c8465d9a9ad64d027470f31d43461d01f711d13ab36005aa18e64e0fff31b",
127
+ "framework/workflows/session-report.md": "d9f39f63f301e1201f845053ad21ad30b58a8a26a8a81ecb07ebc5e51fee0839",
128
+ "framework/workflows/settings.md": "7e17aceccee325e55b8f422382f492c37d7b536cb4ed9c51dadbcbfabecfa505",
129
+ "framework/workflows/ship.md": "429c30730a6cb4e898adbe46cb069d0aaf9230ddd824461824fbadebff5af6f0",
130
+ "framework/workflows/stats.md": "179ca56eaf4d7db0da2cff673a8bac28a81d574d52694fd6f46f6c476f7af7e3",
131
+ "framework/workflows/transition.md": "e1749b3be96a8408f10ded44ebf06faf4ef8b067cb6dd9930a2a9132f85cf672",
132
+ "framework/workflows/ui-phase.md": "672ca1641c293ecbe267873e15c22afa9b65509f5f7ff299eae686cc6ea45e91",
133
+ "framework/workflows/ui-review.md": "56ec2d30da2305860081751b43dd2a324f8ca567a725f10822d9cd0c6ac4a126",
134
+ "framework/workflows/update.md": "be457ff80db5ec91bbde3068986a078ef705abe6091935701181e5db6bdeb2f6",
135
+ "framework/workflows/validate-phase.md": "d204a781c7e88c6ed882c545e5341f5a4a7da6e21dbabd3a75913ffce2918001",
136
+ "framework/workflows/verify-phase.md": "047aef2cbda2fd5928332514b99f6b2ca238146306a00a346b7098962619d88c",
137
+ "framework/workflows/verify-work.md": "d563fb3565539da73e1a1c14282e175dff46a3bcc533cbdfda0f74d1f4b26d0e",
138
+ "commands/add-backlog.md": "b45145beccc1513eed38f7eab5a8f88906fd3f05b6267c537c50701d781cc04b",
139
+ "commands/add-phase.md": "50628b7cbe00ee89115fcfa1cb0dcc99f57bcfe9651e530a8aa0e86aaf9ed230",
140
+ "commands/add-tests.md": "1c5b11e6f8ae7aec667712c3f93b81f5dddd97e9f2380f7b9e30133b03e66da9",
141
+ "commands/add-todo.md": "83951100e97a9446b4e95094aeb58e2251dedebc23879fa2487842e4845fb1e3",
142
+ "commands/audit-milestone.md": "d62180f76bcc57ac45e16bf73cacc6396ce80d8869e0bde071a963f7197ae02b",
143
+ "commands/audit-uat.md": "c0b911043d6954af0348c0fed947e66aa0a6fb955f0d080f91bab6fa3c80dd20",
144
+ "commands/autonomous.md": "dcea3600c0c450c4b365c9959a96fa0082c48dc329bdaec12807f97e7d11ae35",
145
+ "commands/check-todos.md": "a83322fa5e96a74f9ec9997f429212abca635ea49deff9424413a4724992be8b",
146
+ "commands/cleanup.md": "044767b770b793af6bd9f45822fea734368d5048dcdabf1fc7b9ab8787f94709",
147
+ "commands/complete-milestone.md": "a194dfe52f51f658c930c95a656be197099a20e2a3c0508b16957b7008749dc5",
148
+ "commands/debug.md": "9d6f664c8c975af765325584a0f244bf82ae71e43b875faa7a2093b37cec5e71",
149
+ "commands/discuss-phase.md": "e7c1bc3a2cfc2052f7303cee0821f4bd814f44af47f39719c7c3b5fbeccbca42",
150
+ "commands/do.md": "7c54b5c82eb455ef16e551b6b8b41a67e537f0af13a835978dfb330e2b088ea5",
151
+ "commands/execute-phase.md": "c79e8957b3489cb64ab0cac710200ba9fdf405726eeff1db0ea1416a7f1b98c9",
152
+ "commands/fast.md": "3f713b07306fee5e4296beb206cfddbef69a1a74f97806235fcaf92e3fa38cd4",
153
+ "commands/forensics.md": "21feef4655fc2659c6fe9f36dab3cbc86bc58c79809e79acd4e673cd17d18a28",
154
+ "commands/health.md": "f9754a604e3d9703da2cd18b754b0087430c0afac8d0affff6edbd10b2eefa64",
155
+ "commands/help.md": "5e34fa0954d3896cedc8aa9e270f32f1a37b059bb5c1cd8ac1191acddc02f5ba",
156
+ "commands/insert-phase.md": "d706a7b6c49add31efadafc9cd2562c25c5fbeacbd47e9904c37597f4c2b2041",
157
+ "commands/join-discord.md": "a4fbe9bdc6e313e77a5b92cfda9422de3f084d11354c74a7fb68f158dd0892b6",
158
+ "commands/list-phase-assumptions.md": "af7820546a401a63b4b6d585fd520d366bea17fe06d0e4c342376affdb104177",
159
+ "commands/list-workspaces.md": "2aa2e1d6bd1ffe7c2ecac9e0a71aee1ed19adcb5f29f5a76522e7a1e3a1bdbd9",
160
+ "commands/manager.md": "ceb87f0188a8bac13e87bcc7bd14e8145c7f2c7ba1ac92d5b597c72511c57c73",
161
+ "commands/map-codebase.md": "7089563b73bb749d9ba678a2ad5a27bca392ab2a7f712f865a0f368e49c8b64f",
162
+ "commands/milestone-summary.md": "7d832f3350403283d0916e6a3bfa26c8dd89671f877d73a569f1514770b8b008",
163
+ "commands/new-milestone.md": "ae583fc40f2970f3c48e7a56e3611c9b62f71b03099509aee2c11daecf0fca10",
164
+ "commands/new-project.md": "9c2dea1375ea42c13bff66ddc3563f0d834a00a14da9753c6d6c68768346e2a6",
165
+ "commands/new-workspace.md": "b01f25c8ed1e33d5ac4a67b6c97dd80c30b65a6decfbbeb1efdbc1fa05c85cbd",
166
+ "commands/next.md": "173a34b8f081ac3d9b61f764b4837b999a8fd6512efd02f6d038b672230e1b49",
167
+ "commands/note.md": "18b30aa1547ee87083546b740e6d20b23a223c8805a80dbe2c6c26ab8014777a",
168
+ "commands/pause-work.md": "4c099d200f807710b341e5e916f3f68f2bd7a502e9e9518f6ebd5501986dc7ab",
169
+ "commands/plan-milestone-gaps.md": "5cb342c987e9fd59c084c1de86bceec969a2d355c74b544f9a4567e33fd8d04b",
170
+ "commands/plan-phase.md": "9f8c33e023b0106708a772c27c1bdef255256d77ff7f88eaf6a54b2905ca06c7",
171
+ "commands/plant-seed.md": "7e152ef943efe4972c41c3eda60a4b2c7845b8fde7e072f021ff0e2ca8f37add",
172
+ "commands/pr-branch.md": "b1936fd12542f46f1bb77ee3c4c0e8d3477bed732cfae9420367fc54a01016c2",
173
+ "commands/profile-user.md": "6aa04897aa7adab129cff86acd1eb05f6a1465e2d4e85cd2a541eb4694bbe7b4",
174
+ "commands/progress.md": "a0fd6e0a0036344ce121039f4e41c51b870cc1b3acaba60061896bf6dfa1c25d",
175
+ "commands/quick.md": "3d67f6047fd2f583750feeba820f3df2dfabdc4979c4da912a7463cfa57ad682",
176
+ "commands/reapply-patches.md": "e2dfabb7eb4e94b2639a63aceeed0da1fdc89bb4e6056dbaf176456bd94ab290",
177
+ "commands/remove-phase.md": "cdb87fd3a48e527274005d7d6cd05d1bdaf162664d32e3056c4e25611dec56fc",
178
+ "commands/remove-workspace.md": "94b2e0323055161c4e6bcbd212920d7054aec75f019f5d30b65df34006ff4d78",
179
+ "commands/research-phase.md": "198992d82abb6759e491dddef55407eb127f5611e31def0bfd368bd574c2f7fa",
180
+ "commands/resume-work.md": "f39a7711816fb5eefa537fe679d4fb5782df83e441040e3ed9f84f2d5294b84a",
181
+ "commands/review-backlog.md": "bd452d075dde1675d5f577f023f00e415a048a52cb951a15f030bc669f19ba2a",
182
+ "commands/review.md": "614a068553673ff019a4f4ff6491c1e5608d8747f0f183d833451266e9254027",
183
+ "commands/session-report.md": "28516cff75e66aa7b391b8729cd518f273ce754b7591c74c2ba57d13c41da7e0",
184
+ "commands/set-profile.md": "dde73ae4a49eee13b91c6648dbf3f722499d34a7a8c6a2f991a7baff2997ad61",
185
+ "commands/settings.md": "b0a14bc3b57d8e0a5ee887c6e3a0a679e342683645ce9e9af6880b0af6feed05",
186
+ "commands/ship.md": "de72a7a9a4f38f314b0565be97c55b300d6f095c60998df07cfb2d51e39e59ca",
187
+ "commands/stats.md": "f33d5b4eb768e0b4967f2c1196f82366f1cac9fb0afaed00113967cbe3699ad2",
188
+ "commands/thread.md": "254539bc686df013370789677692258fcddac783f0e65c6c38b10ed542ab4cdf",
189
+ "commands/ui-phase.md": "4829b82696416ba3815160bdfd7304d78cf622530afa76e7814df4a01343a6d8",
190
+ "commands/ui-review.md": "c5e508530207ffd7eeea299dfa08325f180e394d8840814ae4be63537ca3fa7a",
191
+ "commands/update.md": "0ea0cb0a35b5f7453cc0c5e14e5b6e7aeed1b3e1bcdbcb67e1ed20855f16f5f2",
192
+ "commands/validate-phase.md": "44ab685a1c3b8f1b40e809c49bb1f6a6802f6973b8b4a7a63fd5ad7cda5ca765",
193
+ "commands/verify-work.md": "f728de8cac9a20d30235a909e9022ff4c02ab1a7f01245d428e8cfcc6c62899a",
194
+ "commands/workstreams.md": "69de96734c8e86b220ab702ba89a5f07bd337e3515655e59d0e9498b1fd7e4d1",
195
+ "agents/advisor-researcher.md": "dc92f96c2a957db3c45e1b514262433fa0caad30efdda4e8ce506f0d10c9c5be",
196
+ "agents/assumptions-analyzer.md": "fc71855620ada4e2487bc9ec697a9c28a6d2d3d838a0345449e8b82a94665cf9",
197
+ "agents/codebase-mapper.md": "7283e8de1d81ba33932bd2f0d25aa479fcedad0169ac3f4dd702fd0b18459b51",
198
+ "agents/debugger.md": "5a5f455fbbf6de9a2b548271469fb19c3e76c53e789344800619df7fafe71d0c",
199
+ "agents/executor.md": "063eab7c5e9c07728f57e0d4de95ee81b6c1a67388fc38e7eae9f203bee366f5",
200
+ "agents/integration-checker.md": "7c57871c05db388c9de2a863fbc3c8b8d705b14f66bac75bc900f4389135ec87",
201
+ "agents/nyquist-auditor.md": "5f93bf6a5ac47b8bb418341b71d1379c2e2e76350fa0ab357d8805d9dc9b56e4",
202
+ "agents/phase-researcher.md": "2f1350fc69f952f139e102e4a1f559d7caba3ae0cc55f8dc0ddf72b2423dddce",
203
+ "agents/plan-checker.md": "3c1bb309b3a238d6b4f84b49138c18c4301a9c92b524d29645aa46b4402d7dc2",
204
+ "agents/planner.md": "644fa86e3414c6db179618262c3582403ad95d970380bb24cbb290d00f0f3531",
205
+ "agents/project-researcher.md": "7c030061b576b4db1f1ef2e35d6b99253c2618eec213472aa3ba68e0ef598e79",
206
+ "agents/research-synthesizer.md": "07dd6f9bd8dc670207e574cfbf3a5c2114ca9c6acd662d5abeb02243bb0dba0d",
207
+ "agents/roadmapper.md": "5b68d9cd2f99f2bdf0a8cfa4d8b201b5ed69f9e3a7f6d42fb0304240c8521ce3",
208
+ "agents/ui-auditor.md": "2a3a79391d42a7602f8ce5d406b14fa4640a2397891e8bdd85e55ce163674888",
209
+ "agents/ui-checker.md": "0a1de927cef5e2aa254aadd741247817c3672e2a7f01cba439600462df961870",
210
+ "agents/ui-researcher.md": "432a4fe20c70df730152970baf5ca14ae6c95a65325429dfaa280c3dfeeb2356",
211
+ "agents/user-profiler.md": "898d31546b0c783b797d683903a40f9a3eca0c9fba651fdf5e126fa2f781b9ea",
212
+ "agents/verifier.md": "c6ab81297cb4b1bbcaf94586086124c3e889e92e2c94c7b51f631481ed357f3c",
213
+ "hooks/check-update.js": "39a6555598841163de07793305d36a33558475011fe601a95e13229c82d9f56e",
214
+ "hooks/context-monitor.js": "32c190d5d2bb69a5e39b24f8e0ce74506ca5cd265cc35fc175e2257afdbbce98",
215
+ "hooks/prompt-guard.js": "cc5cdd909ab9e38aab3477ac6b0a437f3ba6e58e0176d44ef41696d9548c325f",
216
+ "hooks/statusline.js": "519180b7a3a0804507c99116f59b8e4d6f5a8919d5f03380f6d0656b4d6696f3",
217
+ "hooks/workflow-guard.js": "0e2ae090ddd7f2db530974d3bfb3cdfa18edcd7a5cc839cc8b1a3670984f1453"
218
+ }
219
+ }
@@ -0,0 +1 @@
1
+ 1.30.0