wright-engineering 0.1.0__tar.gz

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 (963) hide show
  1. wright_engineering-0.1.0/.agents/skills/speckit-agent-context-update/SKILL.md +31 -0
  2. wright_engineering-0.1.0/.agents/skills/speckit-analyze/SKILL.md +257 -0
  3. wright_engineering-0.1.0/.agents/skills/speckit-checklist/SKILL.md +371 -0
  4. wright_engineering-0.1.0/.agents/skills/speckit-clarify/SKILL.md +283 -0
  5. wright_engineering-0.1.0/.agents/skills/speckit-constitution/SKILL.md +154 -0
  6. wright_engineering-0.1.0/.agents/skills/speckit-git-commit/SKILL.md +53 -0
  7. wright_engineering-0.1.0/.agents/skills/speckit-git-feature/SKILL.md +72 -0
  8. wright_engineering-0.1.0/.agents/skills/speckit-git-initialize/SKILL.md +54 -0
  9. wright_engineering-0.1.0/.agents/skills/speckit-git-remote/SKILL.md +50 -0
  10. wright_engineering-0.1.0/.agents/skills/speckit-git-validate/SKILL.md +54 -0
  11. wright_engineering-0.1.0/.agents/skills/speckit-implement/SKILL.md +221 -0
  12. wright_engineering-0.1.0/.agents/skills/speckit-plan/SKILL.md +161 -0
  13. wright_engineering-0.1.0/.agents/skills/speckit-specify/SKILL.md +342 -0
  14. wright_engineering-0.1.0/.agents/skills/speckit-tasks/SKILL.md +212 -0
  15. wright_engineering-0.1.0/.agents/skills/speckit-taskstoissues/SKILL.md +104 -0
  16. wright_engineering-0.1.0/.all-contributorsrc +14 -0
  17. wright_engineering-0.1.0/.dockerignore +42 -0
  18. wright_engineering-0.1.0/.editorconfig +14 -0
  19. wright_engineering-0.1.0/.gitattributes +2 -0
  20. wright_engineering-0.1.0/.github/CODEOWNERS +18 -0
  21. wright_engineering-0.1.0/.github/FUNDING.yml +3 -0
  22. wright_engineering-0.1.0/.github/ISSUE_TEMPLATE/bug_report.yml +161 -0
  23. wright_engineering-0.1.0/.github/ISSUE_TEMPLATE/config.yml +8 -0
  24. wright_engineering-0.1.0/.github/ISSUE_TEMPLATE/feature_request.yml +67 -0
  25. wright_engineering-0.1.0/.github/PULL_REQUEST_TEMPLATE.md +16 -0
  26. wright_engineering-0.1.0/.github/dependabot.yml +86 -0
  27. wright_engineering-0.1.0/.github/labels.yml +79 -0
  28. wright_engineering-0.1.0/.github/release-drafter.yml +30 -0
  29. wright_engineering-0.1.0/.github/workflows/docker-build.yml +176 -0
  30. wright_engineering-0.1.0/.github/workflows/docs-deploy.yml +64 -0
  31. wright_engineering-0.1.0/.github/workflows/frontend-quality.yml +129 -0
  32. wright_engineering-0.1.0/.github/workflows/public-alpha-safety.yml +53 -0
  33. wright_engineering-0.1.0/.github/workflows/publish-python-packages.yml +133 -0
  34. wright_engineering-0.1.0/.github/workflows/python-quality.yml +54 -0
  35. wright_engineering-0.1.0/.github/workflows/release-drafter.yml +20 -0
  36. wright_engineering-0.1.0/.github/workflows/release.yml +117 -0
  37. wright_engineering-0.1.0/.github/workflows/sync-hermes-plugin-mirror.yml +141 -0
  38. wright_engineering-0.1.0/.github/workflows/test-windows.yml +62 -0
  39. wright_engineering-0.1.0/.gitignore +304 -0
  40. wright_engineering-0.1.0/.gitleaks.toml +21 -0
  41. wright_engineering-0.1.0/.gitmodules +4 -0
  42. wright_engineering-0.1.0/.hermes.md +22 -0
  43. wright_engineering-0.1.0/.pre-commit-config.yaml +29 -0
  44. wright_engineering-0.1.0/.specify/extensions/.registry +47 -0
  45. wright_engineering-0.1.0/.specify/extensions/agent-context/README.md +57 -0
  46. wright_engineering-0.1.0/.specify/extensions/agent-context/agent-context-config.yml +4 -0
  47. wright_engineering-0.1.0/.specify/extensions/agent-context/commands/speckit.agent-context.update.md +26 -0
  48. wright_engineering-0.1.0/.specify/extensions/agent-context/extension.yml +34 -0
  49. wright_engineering-0.1.0/.specify/extensions/agent-context/scripts/bash/update-agent-context.sh +200 -0
  50. wright_engineering-0.1.0/.specify/extensions/agent-context/scripts/powershell/update-agent-context.ps1 +237 -0
  51. wright_engineering-0.1.0/.specify/extensions/git/README.md +100 -0
  52. wright_engineering-0.1.0/.specify/extensions/git/commands/speckit.git.commit.md +48 -0
  53. wright_engineering-0.1.0/.specify/extensions/git/commands/speckit.git.feature.md +67 -0
  54. wright_engineering-0.1.0/.specify/extensions/git/commands/speckit.git.initialize.md +49 -0
  55. wright_engineering-0.1.0/.specify/extensions/git/commands/speckit.git.remote.md +45 -0
  56. wright_engineering-0.1.0/.specify/extensions/git/commands/speckit.git.validate.md +49 -0
  57. wright_engineering-0.1.0/.specify/extensions/git/config-template.yml +62 -0
  58. wright_engineering-0.1.0/.specify/extensions/git/extension.yml +140 -0
  59. wright_engineering-0.1.0/.specify/extensions/git/git-config.yml +62 -0
  60. wright_engineering-0.1.0/.specify/extensions/git/scripts/bash/auto-commit.sh +140 -0
  61. wright_engineering-0.1.0/.specify/extensions/git/scripts/bash/create-new-feature.sh +453 -0
  62. wright_engineering-0.1.0/.specify/extensions/git/scripts/bash/git-common.sh +54 -0
  63. wright_engineering-0.1.0/.specify/extensions/git/scripts/bash/initialize-repo.sh +54 -0
  64. wright_engineering-0.1.0/.specify/extensions/git/scripts/powershell/auto-commit.ps1 +169 -0
  65. wright_engineering-0.1.0/.specify/extensions/git/scripts/powershell/create-new-feature.ps1 +403 -0
  66. wright_engineering-0.1.0/.specify/extensions/git/scripts/powershell/git-common.ps1 +51 -0
  67. wright_engineering-0.1.0/.specify/extensions/git/scripts/powershell/initialize-repo.ps1 +69 -0
  68. wright_engineering-0.1.0/.specify/extensions.yml +164 -0
  69. wright_engineering-0.1.0/.specify/feature.json +3 -0
  70. wright_engineering-0.1.0/.specify/init-options.json +9 -0
  71. wright_engineering-0.1.0/.specify/integration.json +15 -0
  72. wright_engineering-0.1.0/.specify/integrations/agy.manifest.json +16 -0
  73. wright_engineering-0.1.0/.specify/integrations/speckit.manifest.json +17 -0
  74. wright_engineering-0.1.0/.specify/memory/constitution.md +53 -0
  75. wright_engineering-0.1.0/.specify/scripts/bash/check-prerequisites.sh +192 -0
  76. wright_engineering-0.1.0/.specify/scripts/bash/common.sh +644 -0
  77. wright_engineering-0.1.0/.specify/scripts/bash/create-new-feature.sh +413 -0
  78. wright_engineering-0.1.0/.specify/scripts/bash/setup-plan.sh +91 -0
  79. wright_engineering-0.1.0/.specify/scripts/bash/setup-tasks.sh +96 -0
  80. wright_engineering-0.1.0/.specify/templates/checklist-template.md +40 -0
  81. wright_engineering-0.1.0/.specify/templates/constitution-template.md +50 -0
  82. wright_engineering-0.1.0/.specify/templates/plan-template.md +113 -0
  83. wright_engineering-0.1.0/.specify/templates/spec-template.md +131 -0
  84. wright_engineering-0.1.0/.specify/templates/tasks-template.md +252 -0
  85. wright_engineering-0.1.0/.specify/workflows/speckit/workflow.yml +77 -0
  86. wright_engineering-0.1.0/.specify/workflows/workflow-registry.json +13 -0
  87. wright_engineering-0.1.0/.vscode/launch.json +28 -0
  88. wright_engineering-0.1.0/.vscode/tasks.json +66 -0
  89. wright_engineering-0.1.0/AGENTS.md +16 -0
  90. wright_engineering-0.1.0/CHANGELOG.md +24 -0
  91. wright_engineering-0.1.0/CODE_OF_CONDUCT.md +67 -0
  92. wright_engineering-0.1.0/CONTRIBUTING.md +116 -0
  93. wright_engineering-0.1.0/LICENSE +21 -0
  94. wright_engineering-0.1.0/Makefile +182 -0
  95. wright_engineering-0.1.0/PKG-INFO +299 -0
  96. wright_engineering-0.1.0/README.md +274 -0
  97. wright_engineering-0.1.0/ROADMAP.md +88 -0
  98. wright_engineering-0.1.0/SECURITY.md +42 -0
  99. wright_engineering-0.1.0/SUPPORT.md +41 -0
  100. wright_engineering-0.1.0/apps/api/pyproject.toml +38 -0
  101. wright_engineering-0.1.0/apps/api/src/api/__init__.py +4 -0
  102. wright_engineering-0.1.0/apps/api/src/api/config.py +106 -0
  103. wright_engineering-0.1.0/apps/api/src/api/database/migrate.py +374 -0
  104. wright_engineering-0.1.0/apps/api/src/api/main.py +338 -0
  105. wright_engineering-0.1.0/apps/api/src/api/middleware/__init__.py +1 -0
  106. wright_engineering-0.1.0/apps/api/src/api/middleware/tracing.py +140 -0
  107. wright_engineering-0.1.0/apps/api/src/api/routers/__init__.py +1 -0
  108. wright_engineering-0.1.0/apps/api/src/api/routers/agent.py +706 -0
  109. wright_engineering-0.1.0/apps/api/src/api/routers/gateway.py +212 -0
  110. wright_engineering-0.1.0/apps/api/src/api/routers/logs.py +41 -0
  111. wright_engineering-0.1.0/apps/api/src/api/routers/mcp.py +386 -0
  112. wright_engineering-0.1.0/apps/api/src/api/routers/settings.py +87 -0
  113. wright_engineering-0.1.0/apps/api/src/api/routers/setup.py +204 -0
  114. wright_engineering-0.1.0/apps/api/src/api/routers/vault.py +55 -0
  115. wright_engineering-0.1.0/apps/api/src/api/routers/workspace.py +1136 -0
  116. wright_engineering-0.1.0/apps/api/src/api/schemas/__init__.py +4 -0
  117. wright_engineering-0.1.0/apps/api/src/api/schemas/common.py +36 -0
  118. wright_engineering-0.1.0/apps/api/src/api/schemas/logs.py +18 -0
  119. wright_engineering-0.1.0/apps/api/src/api/schemas/settings.py +14 -0
  120. wright_engineering-0.1.0/apps/api/src/api/schemas/workspace.py +325 -0
  121. wright_engineering-0.1.0/apps/api/src/api/services/__init__.py +1 -0
  122. wright_engineering-0.1.0/apps/api/src/api/services/hermes_sync.py +33 -0
  123. wright_engineering-0.1.0/apps/api/src/api/services/mcp_services.py +150 -0
  124. wright_engineering-0.1.0/apps/api/src/api/services/wright_gateway_sync.py +174 -0
  125. wright_engineering-0.1.0/apps/api/tests/conftest.py +174 -0
  126. wright_engineering-0.1.0/apps/api/tests/test_agent_commands.py +48 -0
  127. wright_engineering-0.1.0/apps/api/tests/test_agent_health.py +91 -0
  128. wright_engineering-0.1.0/apps/api/tests/test_agent_runtime_boot.py +8 -0
  129. wright_engineering-0.1.0/apps/api/tests/test_config.py +86 -0
  130. wright_engineering-0.1.0/apps/api/tests/test_gateway_api.py +301 -0
  131. wright_engineering-0.1.0/apps/api/tests/test_hermes_adapter.py +569 -0
  132. wright_engineering-0.1.0/apps/api/tests/test_hermes_sync.py +120 -0
  133. wright_engineering-0.1.0/apps/api/tests/test_mcp_api.py +390 -0
  134. wright_engineering-0.1.0/apps/api/tests/test_mcp_catalog_seed.py +139 -0
  135. wright_engineering-0.1.0/apps/api/tests/test_mcp_credentials.py +552 -0
  136. wright_engineering-0.1.0/apps/api/tests/test_setup_api.py +92 -0
  137. wright_engineering-0.1.0/apps/api/tests/test_trace_correlation.py +5 -0
  138. wright_engineering-0.1.0/apps/api/tests/test_webmcp.py +127 -0
  139. wright_engineering-0.1.0/apps/api/tests/test_workspace_api.py +1778 -0
  140. wright_engineering-0.1.0/apps/web/.gitignore +30 -0
  141. wright_engineering-0.1.0/apps/web/README.md +28 -0
  142. wright_engineering-0.1.0/apps/web/eslint.config.js +35 -0
  143. wright_engineering-0.1.0/apps/web/index.html +33 -0
  144. wright_engineering-0.1.0/apps/web/package-lock.json +5608 -0
  145. wright_engineering-0.1.0/apps/web/package.json +48 -0
  146. wright_engineering-0.1.0/apps/web/public/favicon.svg +1 -0
  147. wright_engineering-0.1.0/apps/web/public/icons.svg +24 -0
  148. wright_engineering-0.1.0/apps/web/src/App.css +184 -0
  149. wright_engineering-0.1.0/apps/web/src/App.tsx +105 -0
  150. wright_engineering-0.1.0/apps/web/src/assets/hero.png +0 -0
  151. wright_engineering-0.1.0/apps/web/src/assets/react.svg +1 -0
  152. wright_engineering-0.1.0/apps/web/src/assets/vite.svg +1 -0
  153. wright_engineering-0.1.0/apps/web/src/components/chat/AttachmentPill.tsx +73 -0
  154. wright_engineering-0.1.0/apps/web/src/components/chat/ChatLayout.tsx +14 -0
  155. wright_engineering-0.1.0/apps/web/src/components/chat/ChatTranscript.tsx +394 -0
  156. wright_engineering-0.1.0/apps/web/src/components/chat/CommandMenu.tsx +153 -0
  157. wright_engineering-0.1.0/apps/web/src/components/chat/EditorTabs.tsx +168 -0
  158. wright_engineering-0.1.0/apps/web/src/components/chat/MessageBubble.tsx +317 -0
  159. wright_engineering-0.1.0/apps/web/src/components/chat/MessageComposer.tsx +880 -0
  160. wright_engineering-0.1.0/apps/web/src/components/chat/SessionsSidebar.tsx +172 -0
  161. wright_engineering-0.1.0/apps/web/src/components/chat/ViewerInspector.tsx +561 -0
  162. wright_engineering-0.1.0/apps/web/src/components/chat/WorkspaceActivityBar.tsx +121 -0
  163. wright_engineering-0.1.0/apps/web/src/components/chat/WorkspacePanel.tsx +2818 -0
  164. wright_engineering-0.1.0/apps/web/src/components/common/CreateWorkspaceModal.tsx +258 -0
  165. wright_engineering-0.1.0/apps/web/src/components/common/DiffViewer.tsx +119 -0
  166. wright_engineering-0.1.0/apps/web/src/components/common/EditorTabs.tsx +94 -0
  167. wright_engineering-0.1.0/apps/web/src/components/common/FileEditor.tsx +171 -0
  168. wright_engineering-0.1.0/apps/web/src/components/common/FileTree.tsx +411 -0
  169. wright_engineering-0.1.0/apps/web/src/components/common/Icons.tsx +444 -0
  170. wright_engineering-0.1.0/apps/web/src/components/common/ImagePreviewer.tsx +77 -0
  171. wright_engineering-0.1.0/apps/web/src/components/common/NavItem.tsx +89 -0
  172. wright_engineering-0.1.0/apps/web/src/components/common/Placeholder.tsx +53 -0
  173. wright_engineering-0.1.0/apps/web/src/components/common/StatusDot.tsx +54 -0
  174. wright_engineering-0.1.0/apps/web/src/components/common/ThreeDViewer.tsx +210 -0
  175. wright_engineering-0.1.0/apps/web/src/components/common/ToolsMarketplace.tsx +220 -0
  176. wright_engineering-0.1.0/apps/web/src/components/layout/AppShell.tsx +52 -0
  177. wright_engineering-0.1.0/apps/web/src/components/layout/Header.tsx +70 -0
  178. wright_engineering-0.1.0/apps/web/src/components/layout/Sidebar.tsx +82 -0
  179. wright_engineering-0.1.0/apps/web/src/components/layout/StatusBar.tsx +100 -0
  180. wright_engineering-0.1.0/apps/web/src/components/pages/DashboardPage.tsx +832 -0
  181. wright_engineering-0.1.0/apps/web/src/components/pages/FileVaultPage.tsx +487 -0
  182. wright_engineering-0.1.0/apps/web/src/components/pages/LogsPage.tsx +866 -0
  183. wright_engineering-0.1.0/apps/web/src/components/pages/NotFoundPage.tsx +72 -0
  184. wright_engineering-0.1.0/apps/web/src/components/pages/SettingsPage.tsx +585 -0
  185. wright_engineering-0.1.0/apps/web/src/components/pages/SetupPage.tsx +521 -0
  186. wright_engineering-0.1.0/apps/web/src/components/pages/ToolRegistryPage.tsx +672 -0
  187. wright_engineering-0.1.0/apps/web/src/components/pages/WorkspacePage.tsx +156 -0
  188. wright_engineering-0.1.0/apps/web/src/components/tools/AddToolModal.tsx +366 -0
  189. wright_engineering-0.1.0/apps/web/src/components/tools/ServerTypeBadge.tsx +56 -0
  190. wright_engineering-0.1.0/apps/web/src/components/tools/ToolCard.tsx +1643 -0
  191. wright_engineering-0.1.0/apps/web/src/components/tools/WorkspaceEnablement.tsx +196 -0
  192. wright_engineering-0.1.0/apps/web/src/hooks/useDesktopIntegration.ts +16 -0
  193. wright_engineering-0.1.0/apps/web/src/hooks/useHealthStatus.ts +31 -0
  194. wright_engineering-0.1.0/apps/web/src/hooks/useLogger.ts +9 -0
  195. wright_engineering-0.1.0/apps/web/src/hooks/useTrace.ts +31 -0
  196. wright_engineering-0.1.0/apps/web/src/index.css +525 -0
  197. wright_engineering-0.1.0/apps/web/src/main.tsx +17 -0
  198. wright_engineering-0.1.0/apps/web/src/services/agent-service.ts +580 -0
  199. wright_engineering-0.1.0/apps/web/src/services/api-client.ts +169 -0
  200. wright_engineering-0.1.0/apps/web/src/services/health-service.ts +123 -0
  201. wright_engineering-0.1.0/apps/web/src/services/host-adapter/browser-adapter.ts +122 -0
  202. wright_engineering-0.1.0/apps/web/src/services/host-adapter/desktop-adapter.ts +164 -0
  203. wright_engineering-0.1.0/apps/web/src/services/host-adapter/detect.ts +9 -0
  204. wright_engineering-0.1.0/apps/web/src/services/host-adapter/host-adapter.ts +15 -0
  205. wright_engineering-0.1.0/apps/web/src/services/host-adapter/index.ts +46 -0
  206. wright_engineering-0.1.0/apps/web/src/services/host-adapter/wright-desktop.d.ts +75 -0
  207. wright_engineering-0.1.0/apps/web/src/services/log-store.ts +254 -0
  208. wright_engineering-0.1.0/apps/web/src/services/logger.ts +97 -0
  209. wright_engineering-0.1.0/apps/web/src/services/mcp-service.ts +473 -0
  210. wright_engineering-0.1.0/apps/web/src/services/telemetry.ts +121 -0
  211. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/__tests__/registry.test.ts +199 -0
  212. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/index.ts +3 -0
  213. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/panel-host.ts +190 -0
  214. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/providers/code-provider.ts +577 -0
  215. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/providers/iframe-provider.ts +132 -0
  216. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/providers/image-provider.ts +140 -0
  217. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/providers/markdown-provider.tsx +277 -0
  218. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/providers/pdf-provider.ts +129 -0
  219. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/providers/text-provider.ts +115 -0
  220. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/providers/threed-provider.ts +284 -0
  221. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/registry.ts +189 -0
  222. wright_engineering-0.1.0/apps/web/src/services/viewer-panel/types.ts +128 -0
  223. wright_engineering-0.1.0/apps/web/src/services/webmcp-service.ts +129 -0
  224. wright_engineering-0.1.0/apps/web/src/services/workspace-service.ts +1017 -0
  225. wright_engineering-0.1.0/apps/web/src/store/sessions.tsx +1076 -0
  226. wright_engineering-0.1.0/apps/web/src/store/tools.tsx +454 -0
  227. wright_engineering-0.1.0/apps/web/src/store/types.ts +94 -0
  228. wright_engineering-0.1.0/apps/web/src/store/viewer.tsx +599 -0
  229. wright_engineering-0.1.0/apps/web/src/test/ToolRegistryLayout.spec.tsx +89 -0
  230. wright_engineering-0.1.0/apps/web/src/test/setup.ts +46 -0
  231. wright_engineering-0.1.0/apps/web/src/tokens/design-tokens.css +121 -0
  232. wright_engineering-0.1.0/apps/web/src/types/generated/wright-contracts.ts +95 -0
  233. wright_engineering-0.1.0/apps/web/tests/AddToolModal.spec.tsx +138 -0
  234. wright_engineering-0.1.0/apps/web/tests/AppShell.spec.tsx +39 -0
  235. wright_engineering-0.1.0/apps/web/tests/ChatLayout.spec.tsx +225 -0
  236. wright_engineering-0.1.0/apps/web/tests/ChatSessions.spec.tsx +545 -0
  237. wright_engineering-0.1.0/apps/web/tests/ChatTranscript.spec.tsx +81 -0
  238. wright_engineering-0.1.0/apps/web/tests/EditorTabs.spec.tsx +30 -0
  239. wright_engineering-0.1.0/apps/web/tests/MessageBubble.spec.tsx +193 -0
  240. wright_engineering-0.1.0/apps/web/tests/MessageComposer.spec.tsx +170 -0
  241. wright_engineering-0.1.0/apps/web/tests/SessionsSidebar.spec.tsx +40 -0
  242. wright_engineering-0.1.0/apps/web/tests/SetupPage.spec.tsx +51 -0
  243. wright_engineering-0.1.0/apps/web/tests/Sidebar.spec.tsx +20 -0
  244. wright_engineering-0.1.0/apps/web/tests/StatusBar.spec.tsx +149 -0
  245. wright_engineering-0.1.0/apps/web/tests/ThreeDViewer.spec.tsx +80 -0
  246. wright_engineering-0.1.0/apps/web/tests/ToolRegistry.spec.tsx +273 -0
  247. wright_engineering-0.1.0/apps/web/tests/ViewerStore.spec.tsx +162 -0
  248. wright_engineering-0.1.0/apps/web/tests/WorkspacePanelSessions.spec.tsx +444 -0
  249. wright_engineering-0.1.0/apps/web/tests/host-adapter/browser-adapter.spec.ts +81 -0
  250. wright_engineering-0.1.0/apps/web/tests/host-adapter/desktop-adapter.spec.ts +134 -0
  251. wright_engineering-0.1.0/apps/web/tests/host-adapter/detect.spec.ts +32 -0
  252. wright_engineering-0.1.0/apps/web/tests/host-adapter/filesystem.spec.ts +61 -0
  253. wright_engineering-0.1.0/apps/web/tests/host-adapter/notifications.spec.ts +70 -0
  254. wright_engineering-0.1.0/apps/web/tests/host-adapter/select-files.spec.ts +57 -0
  255. wright_engineering-0.1.0/apps/web/tsconfig.app.json +26 -0
  256. wright_engineering-0.1.0/apps/web/tsconfig.json +7 -0
  257. wright_engineering-0.1.0/apps/web/tsconfig.node.json +25 -0
  258. wright_engineering-0.1.0/apps/web/vite.config.ts +51 -0
  259. wright_engineering-0.1.0/constitution.md +53 -0
  260. wright_engineering-0.1.0/docker/.env.example +10 -0
  261. wright_engineering-0.1.0/docker/DOCKER_HUB_README.md +107 -0
  262. wright_engineering-0.1.0/docker/Dockerfile +172 -0
  263. wright_engineering-0.1.0/docker/Dockerfile.base +49 -0
  264. wright_engineering-0.1.0/docker/Dockerfile.dev +36 -0
  265. wright_engineering-0.1.0/docker/SOUL.md +10 -0
  266. wright_engineering-0.1.0/docker/container-manifest.md +57 -0
  267. wright_engineering-0.1.0/docker/entrypoint.sh +115 -0
  268. wright_engineering-0.1.0/docker/supervisord.conf +42 -0
  269. wright_engineering-0.1.0/docker-compose.minimal.yml +55 -0
  270. wright_engineering-0.1.0/docker-compose.test.yml +71 -0
  271. wright_engineering-0.1.0/docker-compose.yml +71 -0
  272. wright_engineering-0.1.0/docs/Comprehensive Specification for Robust Feature-Based CAD Methodology_ Best Practices in Onshape and Spec-Driven Design.md +62 -0
  273. wright_engineering-0.1.0/docs/Engineering MCP Tools Discovery.md +229 -0
  274. wright_engineering-0.1.0/docs/admin/github-public-readiness.md +102 -0
  275. wright_engineering-0.1.0/docs/agent-docker-architecture.md +673 -0
  276. wright_engineering-0.1.0/docs/alpha-release-notes-template.md +76 -0
  277. wright_engineering-0.1.0/docs/alpha-release-readiness.md +236 -0
  278. wright_engineering-0.1.0/docs/api/api-reference.md +31 -0
  279. wright_engineering-0.1.0/docs/architecture/agent-adapters.md +57 -0
  280. wright_engineering-0.1.0/docs/architecture/data-storage.md +29 -0
  281. wright_engineering-0.1.0/docs/architecture/observability.md +26 -0
  282. wright_engineering-0.1.0/docs/architecture/project-structure.md +52 -0
  283. wright_engineering-0.1.0/docs/architecture/refactoring-audit-2026-07-01.md +455 -0
  284. wright_engineering-0.1.0/docs/architecture/refactoring-phase-2-2026-07-01.md +1014 -0
  285. wright_engineering-0.1.0/docs/architecture/system-overview.md +67 -0
  286. wright_engineering-0.1.0/docs/architecture/tool-registry.md +39 -0
  287. wright_engineering-0.1.0/docs/awesome-list-submissions.md +58 -0
  288. wright_engineering-0.1.0/docs/blog/introducing-wright.md +130 -0
  289. wright_engineering-0.1.0/docs/community/commercial-support.md +11 -0
  290. wright_engineering-0.1.0/docs/community/demo-gallery.md +17 -0
  291. wright_engineering-0.1.0/docs/community/discord-admin.md +53 -0
  292. wright_engineering-0.1.0/docs/community/funding.md +25 -0
  293. wright_engineering-0.1.0/docs/community/launch-indicators.md +13 -0
  294. wright_engineering-0.1.0/docs/community/partner-brief.md +18 -0
  295. wright_engineering-0.1.0/docs/community/visibility-checklist.md +12 -0
  296. wright_engineering-0.1.0/docs/community-features/011-repo-hygiene.md +54 -0
  297. wright_engineering-0.1.0/docs/community-features/012-readme-branding.md +138 -0
  298. wright_engineering-0.1.0/docs/community-features/013-github-templates.md +89 -0
  299. wright_engineering-0.1.0/docs/community-features/014-ci-quality-gates.md +84 -0
  300. wright_engineering-0.1.0/docs/community-features/015-release-engineering.md +86 -0
  301. wright_engineering-0.1.0/docs/community-features/016-docs-site.md +91 -0
  302. wright_engineering-0.1.0/docs/community-features/017-docker-distribution.md +92 -0
  303. wright_engineering-0.1.0/docs/community-features/018-community-engagement.md +95 -0
  304. wright_engineering-0.1.0/docs/community-readiness-roadmap.md +55 -0
  305. wright_engineering-0.1.0/docs/contributing/ci-cd-workflows.md +166 -0
  306. wright_engineering-0.1.0/docs/contributing/code-style.md +43 -0
  307. wright_engineering-0.1.0/docs/contributing/dev-setup.md +46 -0
  308. wright_engineering-0.1.0/docs/contributing/linux-windows-test-drift-2026-07-02.md +402 -0
  309. wright_engineering-0.1.0/docs/contributing/pull-requests.md +39 -0
  310. wright_engineering-0.1.0/docs/contributing/spec-kit.md +54 -0
  311. wright_engineering-0.1.0/docs/contributing/testing.md +139 -0
  312. wright_engineering-0.1.0/docs/demo-script.md +50 -0
  313. wright_engineering-0.1.0/docs/deployment-configurations.md +707 -0
  314. wright_engineering-0.1.0/docs/dual-mode-desktop-integration.md +453 -0
  315. wright_engineering-0.1.0/docs/getting-started/enterprise-evaluation.md +13 -0
  316. wright_engineering-0.1.0/docs/getting-started/hermes-desktop.md +11 -0
  317. wright_engineering-0.1.0/docs/getting-started/hermes-plugin.md +120 -0
  318. wright_engineering-0.1.0/docs/getting-started/install-matrix.md +14 -0
  319. wright_engineering-0.1.0/docs/getting-started/linux-gb10.md +15 -0
  320. wright_engineering-0.1.0/docs/getting-started/mcp-contributors.md +11 -0
  321. wright_engineering-0.1.0/docs/getting-started/overview.md +69 -0
  322. wright_engineering-0.1.0/docs/getting-started/prerequisites.md +37 -0
  323. wright_engineering-0.1.0/docs/getting-started/python-packages.md +12 -0
  324. wright_engineering-0.1.0/docs/getting-started/quickstart-docker.md +201 -0
  325. wright_engineering-0.1.0/docs/getting-started/quickstart-local.md +137 -0
  326. wright_engineering-0.1.0/docs/getting-started/windows-11.md +18 -0
  327. wright_engineering-0.1.0/docs/getting-started/workstation-gb10-dgx.md +159 -0
  328. wright_engineering-0.1.0/docs/good-first-issues.md +70 -0
  329. wright_engineering-0.1.0/docs/hermes-desktop-wright.md +161 -0
  330. wright_engineering-0.1.0/docs/images/favicon.ico +0 -0
  331. wright_engineering-0.1.0/docs/images/screenshot_agent_chat.png +0 -0
  332. wright_engineering-0.1.0/docs/images/screenshot_file_vault.png +0 -0
  333. wright_engineering-0.1.0/docs/images/screenshot_initial.png +0 -0
  334. wright_engineering-0.1.0/docs/images/screenshot_tool_registry.png +0 -0
  335. wright_engineering-0.1.0/docs/images/social-preview.png +0 -0
  336. wright_engineering-0.1.0/docs/images/wright-logo.png +0 -0
  337. wright_engineering-0.1.0/docs/images/wright-logo.svg +69 -0
  338. wright_engineering-0.1.0/docs/index.md +76 -0
  339. wright_engineering-0.1.0/docs/mcp-catalog/custom-tools.md +56 -0
  340. wright_engineering-0.1.0/docs/mcp-catalog/engineering_mcp_research_handoff.md +988 -0
  341. wright_engineering-0.1.0/docs/mcp-catalog/evidence/openscad-mcp-server-validation.json +82 -0
  342. wright_engineering-0.1.0/docs/mcp-catalog/evidence/openscad-mcp-server-validation.md +24 -0
  343. wright_engineering-0.1.0/docs/mcp-catalog/followups/.gitkeep +1 -0
  344. wright_engineering-0.1.0/docs/mcp-catalog/followups/autodesk-fusion-mcp-python.md +102 -0
  345. wright_engineering-0.1.0/docs/mcp-catalog/followups/creoson-mcp-bridge.md +34 -0
  346. wright_engineering-0.1.0/docs/mcp-catalog/followups/freecad-copilot-contextform.md +93 -0
  347. wright_engineering-0.1.0/docs/mcp-catalog/followups/freecad-engineering-sandraschi.md +104 -0
  348. wright_engineering-0.1.0/docs/mcp-catalog/followups/kicad-mcp-lamaalrajih.md +123 -0
  349. wright_engineering-0.1.0/docs/mcp-catalog/followups/openscad-linter-trikos529.md +58 -0
  350. wright_engineering-0.1.0/docs/mcp-catalog/followups/solidworks-mcp-alisamsam.md +72 -0
  351. wright_engineering-0.1.0/docs/mcp-catalog/followups/solidworks-mcp-python.md +77 -0
  352. wright_engineering-0.1.0/docs/mcp-catalog/followups/wincc-unified-mcp.md +38 -0
  353. wright_engineering-0.1.0/docs/mcp-catalog/mcp-server-setup-recipes.md +2056 -0
  354. wright_engineering-0.1.0/docs/mcp-catalog/mcp-server-testing-process.md +121 -0
  355. wright_engineering-0.1.0/docs/mcp-catalog/offline-cache.md +27 -0
  356. wright_engineering-0.1.0/docs/mcp-catalog/testing-problem-log.md +1645 -0
  357. wright_engineering-0.1.0/docs/mcp-catalog/tools-list.md +84 -0
  358. wright_engineering-0.1.0/docs/metadata-guide.md +39 -0
  359. wright_engineering-0.1.0/docs/public-launch-checklist.md +103 -0
  360. wright_engineering-0.1.0/docs/release/community-release-readiness.md +27 -0
  361. wright_engineering-0.1.0/docs/release/container-publishing.md +32 -0
  362. wright_engineering-0.1.0/docs/release/hermes-plugin-mirror.md +203 -0
  363. wright_engineering-0.1.0/docs/release/python-packaging.md +46 -0
  364. wright_engineering-0.1.0/docs/technical_analysis.md +323 -0
  365. wright_engineering-0.1.0/docs/user-guide/docker.md +176 -0
  366. wright_engineering-0.1.0/docs/user-guide/env-vars.md +69 -0
  367. wright_engineering-0.1.0/docs/user-guide/maintenance.md +94 -0
  368. wright_engineering-0.1.0/docs/user-guide/makefile.md +61 -0
  369. wright_engineering-0.1.0/docs/user-guide/recovery.md +107 -0
  370. wright_engineering-0.1.0/docs/versioning.md +51 -0
  371. wright_engineering-0.1.0/docs/viewer-spec.md +469 -0
  372. wright_engineering-0.1.0/docs/virtual_engineer_architecture.pdf +0 -0
  373. wright_engineering-0.1.0/docs/wright-hermes-plugin-plan.md +1460 -0
  374. wright_engineering-0.1.0/examples/bolt-analysis/README.md +21 -0
  375. wright_engineering-0.1.0/examples/bolt-analysis/main.py +141 -0
  376. wright_engineering-0.1.0/examples/bolt-analysis/output/bolt_stress.txt +22 -0
  377. wright_engineering-0.1.0/examples/bolt-analysis/output/validation.json +5 -0
  378. wright_engineering-0.1.0/examples/bracket-design/README.md +21 -0
  379. wright_engineering-0.1.0/examples/bracket-design/main.py +116 -0
  380. wright_engineering-0.1.0/examples/bracket-design/output/bracket.scad +9 -0
  381. wright_engineering-0.1.0/examples/bracket-design/output/metadata.json +5 -0
  382. wright_engineering-0.1.0/examples/onshape_cube.py +129 -0
  383. wright_engineering-0.1.0/examples/quickstart/README.md +24 -0
  384. wright_engineering-0.1.0/examples/quickstart/main.py +25 -0
  385. wright_engineering-0.1.0/fc_bridge.py +426 -0
  386. wright_engineering-0.1.0/hermes-plugin-wright/PROVENANCE.md +12 -0
  387. wright_engineering-0.1.0/hermes-plugin-wright/README.md +85 -0
  388. wright_engineering-0.1.0/hermes-plugin-wright/__init__.py +55 -0
  389. wright_engineering-0.1.0/hermes-plugin-wright/bridge.py +188 -0
  390. wright_engineering-0.1.0/hermes-plugin-wright/catalog.py +92 -0
  391. wright_engineering-0.1.0/hermes-plugin-wright/catalog.yaml +1946 -0
  392. wright_engineering-0.1.0/hermes-plugin-wright/commands.py +1117 -0
  393. wright_engineering-0.1.0/hermes-plugin-wright/plugin.yaml +12 -0
  394. wright_engineering-0.1.0/hermes-plugin-wright/pyproject.toml +29 -0
  395. wright_engineering-0.1.0/hermes-plugin-wright/schemas.py +106 -0
  396. wright_engineering-0.1.0/hermes-plugin-wright/tests/conftest.py +1 -0
  397. wright_engineering-0.1.0/hermes-plugin-wright/tests/test_bridge.py +212 -0
  398. wright_engineering-0.1.0/hermes-plugin-wright/tests/test_catalog.py +964 -0
  399. wright_engineering-0.1.0/hermes-plugin-wright/tests/test_commands.py +787 -0
  400. wright_engineering-0.1.0/hermes-plugin-wright/tests/test_plugin_metadata.py +60 -0
  401. wright_engineering-0.1.0/hermes-plugin-wright/verify_plugin.py +46 -0
  402. wright_engineering-0.1.0/hermes-slash-commands.json +1531 -0
  403. wright_engineering-0.1.0/hermes-wright-panel/README.md +54 -0
  404. wright_engineering-0.1.0/hermes-wright-panel/package.json +19 -0
  405. wright_engineering-0.1.0/hermes-wright-panel/panel.cjs +398 -0
  406. wright_engineering-0.1.0/hermes-wright-panel/preload.cjs +40 -0
  407. wright_engineering-0.1.0/hermes-wright-panel/test/README.md +25 -0
  408. wright_engineering-0.1.0/hermes-wright-panel/test/electron-test.cjs +50 -0
  409. wright_engineering-0.1.0/hermes-wright-panel/types.d.ts +21 -0
  410. wright_engineering-0.1.0/mkdocs.yml +99 -0
  411. wright_engineering-0.1.0/package-lock.json +6181 -0
  412. wright_engineering-0.1.0/package.json +16 -0
  413. wright_engineering-0.1.0/packages/agent_adapters/pyproject.toml +22 -0
  414. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/__init__.py +57 -0
  415. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/base.py +130 -0
  416. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/context.py +47 -0
  417. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/gateway.py +36 -0
  418. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/hermes-slash-commands.json +1531 -0
  419. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/hermes.py +1038 -0
  420. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/hermes_config.py +190 -0
  421. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/hermes_gateway.py +64 -0
  422. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/openclaw.py +90 -0
  423. wright_engineering-0.1.0/packages/agent_adapters/src/agent_adapters/registry.py +184 -0
  424. wright_engineering-0.1.0/packages/agent_adapters/tests/test_agent_registry.py +84 -0
  425. wright_engineering-0.1.0/packages/agent_adapters/tests/test_context_materialization.py +86 -0
  426. wright_engineering-0.1.0/packages/agent_adapters/tests/test_hermes_config.py +162 -0
  427. wright_engineering-0.1.0/packages/agent_adapters/tests/test_hermes_gateway_adapter.py +337 -0
  428. wright_engineering-0.1.0/packages/agent_adapters/tests/test_hermes_gateway_profile.py +30 -0
  429. wright_engineering-0.1.0/packages/agent_adapters/tests/test_openclaw_gateway_stub.py +39 -0
  430. wright_engineering-0.1.0/packages/agent_adapters/tests/test_wright_gateway_contracts.py +47 -0
  431. wright_engineering-0.1.0/packages/core/README.md +12 -0
  432. wright_engineering-0.1.0/packages/core/pyproject.toml +38 -0
  433. wright_engineering-0.1.0/packages/core/src/core/__init__.py +4 -0
  434. wright_engineering-0.1.0/packages/core/src/core/agent_sync.py +82 -0
  435. wright_engineering-0.1.0/packages/core/src/core/logging.py +102 -0
  436. wright_engineering-0.1.0/packages/core/src/core/redaction.py +79 -0
  437. wright_engineering-0.1.0/packages/core/src/core/telemetry.py +46 -0
  438. wright_engineering-0.1.0/packages/core/src/core/tracing.py +136 -0
  439. wright_engineering-0.1.0/packages/core/src/core/workspace.py +1717 -0
  440. wright_engineering-0.1.0/packages/core/tests/test_redaction.py +34 -0
  441. wright_engineering-0.1.0/packages/core/tests/test_telemetry.py +39 -0
  442. wright_engineering-0.1.0/packages/data_vault/pyproject.toml +22 -0
  443. wright_engineering-0.1.0/packages/data_vault/src/data_vault/__init__.py +5 -0
  444. wright_engineering-0.1.0/packages/data_vault/src/data_vault/state_store.py +31 -0
  445. wright_engineering-0.1.0/packages/data_vault/tests/test_state_store.py +17 -0
  446. wright_engineering-0.1.0/packages/tool_registry/README.md +12 -0
  447. wright_engineering-0.1.0/packages/tool_registry/pyproject.toml +43 -0
  448. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/__init__.py +52 -0
  449. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/catalog_loader.py +97 -0
  450. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/catalog_models.py +154 -0
  451. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/db.py +410 -0
  452. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/engineering_catalog.py +2728 -0
  453. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/gateway.py +174 -0
  454. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/manager.py +453 -0
  455. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/mcp_catalog.py +45 -0
  456. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/mcp_followups.py +87 -0
  457. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/mcp_validation.py +123 -0
  458. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/models.py +138 -0
  459. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/runners/__init__.py +5 -0
  460. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/runners/base.py +44 -0
  461. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/runners/sse.py +388 -0
  462. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/runners/stdio.py +282 -0
  463. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/safety.py +178 -0
  464. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/secrets.py +183 -0
  465. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/services.py +432 -0
  466. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/validation_cli.py +81 -0
  467. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/validation_evidence.py +99 -0
  468. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/validation_executor.py +405 -0
  469. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/validation_plan.py +135 -0
  470. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/validation_runner.py +96 -0
  471. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/validation_writer.py +66 -0
  472. wright_engineering-0.1.0/packages/tool_registry/src/tool_registry/version_check.py +357 -0
  473. wright_engineering-0.1.0/packages/tool_registry/tests/fixtures/catalog_normalization.yaml +16 -0
  474. wright_engineering-0.1.0/packages/tool_registry/tests/fixtures/validation_evidence.json +20 -0
  475. wright_engineering-0.1.0/packages/tool_registry/tests/mock_server.py +77 -0
  476. wright_engineering-0.1.0/packages/tool_registry/tests/test_catalog_normalization.py +115 -0
  477. wright_engineering-0.1.0/packages/tool_registry/tests/test_engineering_catalog.py +24 -0
  478. wright_engineering-0.1.0/packages/tool_registry/tests/test_mcp_followups.py +30 -0
  479. wright_engineering-0.1.0/packages/tool_registry/tests/test_mcp_safety.py +83 -0
  480. wright_engineering-0.1.0/packages/tool_registry/tests/test_mcp_services.py +304 -0
  481. wright_engineering-0.1.0/packages/tool_registry/tests/test_mcp_validation.py +58 -0
  482. wright_engineering-0.1.0/packages/tool_registry/tests/test_mcp_validation_evidence.py +84 -0
  483. wright_engineering-0.1.0/packages/tool_registry/tests/test_mcp_validation_plan.py +69 -0
  484. wright_engineering-0.1.0/packages/tool_registry/tests/test_mcp_validation_runner.py +92 -0
  485. wright_engineering-0.1.0/packages/tool_registry/tests/test_registry.py +276 -0
  486. wright_engineering-0.1.0/packages/tool_registry/tests/test_validation_cli.py +132 -0
  487. wright_engineering-0.1.0/packages/tool_registry/tests/test_validation_executor.py +73 -0
  488. wright_engineering-0.1.0/packages/tool_registry/tests/test_validation_writer.py +41 -0
  489. wright_engineering-0.1.0/packages/workspace_service/pyproject.toml +26 -0
  490. wright_engineering-0.1.0/packages/workspace_service/src/workspace_service/__init__.py +28 -0
  491. wright_engineering-0.1.0/packages/workspace_service/src/workspace_service/models.py +75 -0
  492. wright_engineering-0.1.0/packages/workspace_service/src/workspace_service/service.py +670 -0
  493. wright_engineering-0.1.0/packages/workspace_service/tests/test_non_hermes_activation.py +87 -0
  494. wright_engineering-0.1.0/packages/workspace_service/tests/test_workspace_service.py +174 -0
  495. wright_engineering-0.1.0/playwright.config.ts +31 -0
  496. wright_engineering-0.1.0/playwright.live.config.ts +25 -0
  497. wright_engineering-0.1.0/pyproject.toml +71 -0
  498. wright_engineering-0.1.0/scripts/README.md +363 -0
  499. wright_engineering-0.1.0/scripts/alpha-release-check.ps1 +55 -0
  500. wright_engineering-0.1.0/scripts/alpha-release-check.sh +35 -0
  501. wright_engineering-0.1.0/scripts/backup-volumes.sh +52 -0
  502. wright_engineering-0.1.0/scripts/build-python-distributions.sh +186 -0
  503. wright_engineering-0.1.0/scripts/check-dev-merge.sh +103 -0
  504. wright_engineering-0.1.0/scripts/check-prod-merge.sh +31 -0
  505. wright_engineering-0.1.0/scripts/check-public-alpha-leaks.py +218 -0
  506. wright_engineering-0.1.0/scripts/cleanup-workspaces.py +69 -0
  507. wright_engineering-0.1.0/scripts/docker-smoke-test.sh +129 -0
  508. wright_engineering-0.1.0/scripts/fetch_ci_failures.py +175 -0
  509. wright_engineering-0.1.0/scripts/freecad_mcp.patch +144 -0
  510. wright_engineering-0.1.0/scripts/generate-frontend-contracts.py +129 -0
  511. wright_engineering-0.1.0/scripts/hermes-plugin-lifecycle-common.sh +216 -0
  512. wright_engineering-0.1.0/scripts/openscad-headless.sh +3 -0
  513. wright_engineering-0.1.0/scripts/patch-submodule.sh +24 -0
  514. wright_engineering-0.1.0/scripts/production-update.sh +127 -0
  515. wright_engineering-0.1.0/scripts/restore-volume.sh +65 -0
  516. wright_engineering-0.1.0/scripts/security-scan.ps1 +65 -0
  517. wright_engineering-0.1.0/scripts/security-scan.sh +95 -0
  518. wright_engineering-0.1.0/scripts/setup-wright-profile.sh +56 -0
  519. wright_engineering-0.1.0/scripts/sync-hermes-plugin-mirror.sh +240 -0
  520. wright_engineering-0.1.0/scripts/test-hermes-plugin-install.sh +22 -0
  521. wright_engineering-0.1.0/scripts/test-hermes-plugin-uninstall.sh +30 -0
  522. wright_engineering-0.1.0/scripts/test-hermes-plugin-update.sh +36 -0
  523. wright_engineering-0.1.0/scripts/validate-hermes-plugin-mirror.sh +119 -0
  524. wright_engineering-0.1.0/specs/001-initial-ui/checklists/requirements.md +39 -0
  525. wright_engineering-0.1.0/specs/001-initial-ui/contracts/ui-contracts.md +212 -0
  526. wright_engineering-0.1.0/specs/001-initial-ui/data-model.md +176 -0
  527. wright_engineering-0.1.0/specs/001-initial-ui/plan.md +129 -0
  528. wright_engineering-0.1.0/specs/001-initial-ui/quickstart.md +73 -0
  529. wright_engineering-0.1.0/specs/001-initial-ui/research.md +101 -0
  530. wright_engineering-0.1.0/specs/001-initial-ui/spec.md +147 -0
  531. wright_engineering-0.1.0/specs/001-initial-ui/tasks.md +281 -0
  532. wright_engineering-0.1.0/specs/002-hermes-llm-integration/checklists/requirements.md +37 -0
  533. wright_engineering-0.1.0/specs/002-hermes-llm-integration/contracts/api-contracts.md +254 -0
  534. wright_engineering-0.1.0/specs/002-hermes-llm-integration/data-model.md +157 -0
  535. wright_engineering-0.1.0/specs/002-hermes-llm-integration/plan.md +103 -0
  536. wright_engineering-0.1.0/specs/002-hermes-llm-integration/quickstart.md +79 -0
  537. wright_engineering-0.1.0/specs/002-hermes-llm-integration/research.md +86 -0
  538. wright_engineering-0.1.0/specs/002-hermes-llm-integration/spec.md +123 -0
  539. wright_engineering-0.1.0/specs/002-hermes-llm-integration/tasks.md +217 -0
  540. wright_engineering-0.1.0/specs/003-mcp-tool-registry/checklists/requirements.md +35 -0
  541. wright_engineering-0.1.0/specs/003-mcp-tool-registry/contracts/api-contracts.md +137 -0
  542. wright_engineering-0.1.0/specs/003-mcp-tool-registry/data-model.md +55 -0
  543. wright_engineering-0.1.0/specs/003-mcp-tool-registry/plan.md +109 -0
  544. wright_engineering-0.1.0/specs/003-mcp-tool-registry/quickstart.md +48 -0
  545. wright_engineering-0.1.0/specs/003-mcp-tool-registry/research.md +27 -0
  546. wright_engineering-0.1.0/specs/003-mcp-tool-registry/spec.md +115 -0
  547. wright_engineering-0.1.0/specs/003-mcp-tool-registry/tasks.md +136 -0
  548. wright_engineering-0.1.0/specs/004-openscad-mcp/checklists/requirements.md +34 -0
  549. wright_engineering-0.1.0/specs/004-openscad-mcp/contracts/api-contracts.md +61 -0
  550. wright_engineering-0.1.0/specs/004-openscad-mcp/data-model.md +42 -0
  551. wright_engineering-0.1.0/specs/004-openscad-mcp/plan.md +98 -0
  552. wright_engineering-0.1.0/specs/004-openscad-mcp/quickstart.md +54 -0
  553. wright_engineering-0.1.0/specs/004-openscad-mcp/research.md +66 -0
  554. wright_engineering-0.1.0/specs/004-openscad-mcp/spec.md +97 -0
  555. wright_engineering-0.1.0/specs/004-openscad-mcp/tasks.md +140 -0
  556. wright_engineering-0.1.0/specs/005-engineering-workspace/checklists/requirements.md +34 -0
  557. wright_engineering-0.1.0/specs/005-engineering-workspace/contracts/api-contracts.md +221 -0
  558. wright_engineering-0.1.0/specs/005-engineering-workspace/data-model.md +117 -0
  559. wright_engineering-0.1.0/specs/005-engineering-workspace/plan.md +94 -0
  560. wright_engineering-0.1.0/specs/005-engineering-workspace/quickstart.md +93 -0
  561. wright_engineering-0.1.0/specs/005-engineering-workspace/research.md +88 -0
  562. wright_engineering-0.1.0/specs/005-engineering-workspace/spec.md +105 -0
  563. wright_engineering-0.1.0/specs/005-engineering-workspace/tasks.md +176 -0
  564. wright_engineering-0.1.0/specs/006-ide-ui-redesign/checklists/requirements.md +34 -0
  565. wright_engineering-0.1.0/specs/006-ide-ui-redesign/contracts/api-contracts.md +60 -0
  566. wright_engineering-0.1.0/specs/006-ide-ui-redesign/data-model.md +43 -0
  567. wright_engineering-0.1.0/specs/006-ide-ui-redesign/plan.md +89 -0
  568. wright_engineering-0.1.0/specs/006-ide-ui-redesign/quickstart.md +46 -0
  569. wright_engineering-0.1.0/specs/006-ide-ui-redesign/research.md +57 -0
  570. wright_engineering-0.1.0/specs/006-ide-ui-redesign/spec.md +104 -0
  571. wright_engineering-0.1.0/specs/006-ide-ui-redesign/tasks.md +109 -0
  572. wright_engineering-0.1.0/specs/007-workspace-dashboard-ux/checklists/requirements.md +36 -0
  573. wright_engineering-0.1.0/specs/007-workspace-dashboard-ux/contracts/workspace-api.md +124 -0
  574. wright_engineering-0.1.0/specs/007-workspace-dashboard-ux/data-model.md +99 -0
  575. wright_engineering-0.1.0/specs/007-workspace-dashboard-ux/plan.md +258 -0
  576. wright_engineering-0.1.0/specs/007-workspace-dashboard-ux/quickstart.md +69 -0
  577. wright_engineering-0.1.0/specs/007-workspace-dashboard-ux/research.md +74 -0
  578. wright_engineering-0.1.0/specs/007-workspace-dashboard-ux/spec.md +144 -0
  579. wright_engineering-0.1.0/specs/007-workspace-dashboard-ux/tasks.md +194 -0
  580. wright_engineering-0.1.0/specs/008-quality-testing-observability/checklists/requirements.md +36 -0
  581. wright_engineering-0.1.0/specs/008-quality-testing-observability/contracts/error-response.md +92 -0
  582. wright_engineering-0.1.0/specs/008-quality-testing-observability/data-model.md +88 -0
  583. wright_engineering-0.1.0/specs/008-quality-testing-observability/plan.md +564 -0
  584. wright_engineering-0.1.0/specs/008-quality-testing-observability/quickstart.md +60 -0
  585. wright_engineering-0.1.0/specs/008-quality-testing-observability/research.md +85 -0
  586. wright_engineering-0.1.0/specs/008-quality-testing-observability/spec.md +264 -0
  587. wright_engineering-0.1.0/specs/008-quality-testing-observability/tasks.md +346 -0
  588. wright_engineering-0.1.0/specs/009-tool-registry-enhanced-ui/checklists/requirements.md +34 -0
  589. wright_engineering-0.1.0/specs/009-tool-registry-enhanced-ui/contracts/mcp-version-check.md +165 -0
  590. wright_engineering-0.1.0/specs/009-tool-registry-enhanced-ui/data-model.md +91 -0
  591. wright_engineering-0.1.0/specs/009-tool-registry-enhanced-ui/plan.md +353 -0
  592. wright_engineering-0.1.0/specs/009-tool-registry-enhanced-ui/research.md +84 -0
  593. wright_engineering-0.1.0/specs/009-tool-registry-enhanced-ui/spec.md +160 -0
  594. wright_engineering-0.1.0/specs/009-tool-registry-enhanced-ui/tasks.md +234 -0
  595. wright_engineering-0.1.0/specs/010-agent-docker-setup/checklists/requirements.md +37 -0
  596. wright_engineering-0.1.0/specs/010-agent-docker-setup/contracts/ci-docker-build.md +54 -0
  597. wright_engineering-0.1.0/specs/010-agent-docker-setup/contracts/entrypoint.md +48 -0
  598. wright_engineering-0.1.0/specs/010-agent-docker-setup/data-model.md +89 -0
  599. wright_engineering-0.1.0/specs/010-agent-docker-setup/plan.md +91 -0
  600. wright_engineering-0.1.0/specs/010-agent-docker-setup/research.md +65 -0
  601. wright_engineering-0.1.0/specs/010-agent-docker-setup/spec.md +243 -0
  602. wright_engineering-0.1.0/specs/010-agent-docker-setup/tasks.md +302 -0
  603. wright_engineering-0.1.0/specs/011-repo-hygiene/checklists/requirements.md +36 -0
  604. wright_engineering-0.1.0/specs/011-repo-hygiene/data-model.md +31 -0
  605. wright_engineering-0.1.0/specs/011-repo-hygiene/plan.md +90 -0
  606. wright_engineering-0.1.0/specs/011-repo-hygiene/quickstart.md +42 -0
  607. wright_engineering-0.1.0/specs/011-repo-hygiene/research.md +37 -0
  608. wright_engineering-0.1.0/specs/011-repo-hygiene/spec.md +173 -0
  609. wright_engineering-0.1.0/specs/011-repo-hygiene/tasks.md +189 -0
  610. wright_engineering-0.1.0/specs/012-readme-branding/checklists/requirements.md +34 -0
  611. wright_engineering-0.1.0/specs/012-readme-branding/data-model.md +26 -0
  612. wright_engineering-0.1.0/specs/012-readme-branding/plan.md +82 -0
  613. wright_engineering-0.1.0/specs/012-readme-branding/quickstart.md +40 -0
  614. wright_engineering-0.1.0/specs/012-readme-branding/research.md +30 -0
  615. wright_engineering-0.1.0/specs/012-readme-branding/spec.md +113 -0
  616. wright_engineering-0.1.0/specs/012-readme-branding/tasks.md +164 -0
  617. wright_engineering-0.1.0/specs/013-github-templates/checklists/requirements.md +34 -0
  618. wright_engineering-0.1.0/specs/013-github-templates/data-model.md +48 -0
  619. wright_engineering-0.1.0/specs/013-github-templates/plan.md +111 -0
  620. wright_engineering-0.1.0/specs/013-github-templates/quickstart.md +29 -0
  621. wright_engineering-0.1.0/specs/013-github-templates/research.md +29 -0
  622. wright_engineering-0.1.0/specs/013-github-templates/spec.md +171 -0
  623. wright_engineering-0.1.0/specs/013-github-templates/tasks.md +168 -0
  624. wright_engineering-0.1.0/specs/014-ci-quality-gates/checklists/requirements.md +34 -0
  625. wright_engineering-0.1.0/specs/014-ci-quality-gates/data-model.md +71 -0
  626. wright_engineering-0.1.0/specs/014-ci-quality-gates/plan.md +79 -0
  627. wright_engineering-0.1.0/specs/014-ci-quality-gates/quickstart.md +56 -0
  628. wright_engineering-0.1.0/specs/014-ci-quality-gates/research.md +35 -0
  629. wright_engineering-0.1.0/specs/014-ci-quality-gates/spec.md +99 -0
  630. wright_engineering-0.1.0/specs/014-ci-quality-gates/tasks.md +138 -0
  631. wright_engineering-0.1.0/specs/015-release-engineering/checklists/requirements.md +34 -0
  632. wright_engineering-0.1.0/specs/015-release-engineering/data-model.md +52 -0
  633. wright_engineering-0.1.0/specs/015-release-engineering/plan.md +81 -0
  634. wright_engineering-0.1.0/specs/015-release-engineering/quickstart.md +45 -0
  635. wright_engineering-0.1.0/specs/015-release-engineering/research.md +34 -0
  636. wright_engineering-0.1.0/specs/015-release-engineering/spec.md +125 -0
  637. wright_engineering-0.1.0/specs/015-release-engineering/tasks.md +142 -0
  638. wright_engineering-0.1.0/specs/016-docs-site/checklists/requirements.md +34 -0
  639. wright_engineering-0.1.0/specs/016-docs-site/data-model.md +84 -0
  640. wright_engineering-0.1.0/specs/016-docs-site/plan.md +84 -0
  641. wright_engineering-0.1.0/specs/016-docs-site/quickstart.md +38 -0
  642. wright_engineering-0.1.0/specs/016-docs-site/research.md +31 -0
  643. wright_engineering-0.1.0/specs/016-docs-site/spec.md +108 -0
  644. wright_engineering-0.1.0/specs/016-docs-site/tasks.md +125 -0
  645. wright_engineering-0.1.0/specs/017-docker-distribution-polish/checklists/requirements.md +34 -0
  646. wright_engineering-0.1.0/specs/017-docker-distribution-polish/data-model.md +38 -0
  647. wright_engineering-0.1.0/specs/017-docker-distribution-polish/plan.md +81 -0
  648. wright_engineering-0.1.0/specs/017-docker-distribution-polish/quickstart.md +53 -0
  649. wright_engineering-0.1.0/specs/017-docker-distribution-polish/research.md +45 -0
  650. wright_engineering-0.1.0/specs/017-docker-distribution-polish/spec.md +108 -0
  651. wright_engineering-0.1.0/specs/017-docker-distribution-polish/tasks.md +158 -0
  652. wright_engineering-0.1.0/specs/018-community-engagement/checklists/requirements.md +34 -0
  653. wright_engineering-0.1.0/specs/018-community-engagement/data-model.md +63 -0
  654. wright_engineering-0.1.0/specs/018-community-engagement/plan.md +91 -0
  655. wright_engineering-0.1.0/specs/018-community-engagement/quickstart.md +79 -0
  656. wright_engineering-0.1.0/specs/018-community-engagement/research.md +50 -0
  657. wright_engineering-0.1.0/specs/018-community-engagement/spec.md +95 -0
  658. wright_engineering-0.1.0/specs/018-community-engagement/tasks.md +131 -0
  659. wright_engineering-0.1.0/specs/019-ui-theme-redesign/checklists/requirements.md +35 -0
  660. wright_engineering-0.1.0/specs/019-ui-theme-redesign/data-model.md +32 -0
  661. wright_engineering-0.1.0/specs/019-ui-theme-redesign/plan.md +83 -0
  662. wright_engineering-0.1.0/specs/019-ui-theme-redesign/quickstart.md +35 -0
  663. wright_engineering-0.1.0/specs/019-ui-theme-redesign/research.md +54 -0
  664. wright_engineering-0.1.0/specs/019-ui-theme-redesign/spec.md +97 -0
  665. wright_engineering-0.1.0/specs/019-ui-theme-redesign/tasks.md +152 -0
  666. wright_engineering-0.1.0/specs/020-chat-composer-commands/checklists/requirements.md +34 -0
  667. wright_engineering-0.1.0/specs/020-chat-composer-commands/contracts/api.md +35 -0
  668. wright_engineering-0.1.0/specs/020-chat-composer-commands/data-model.md +22 -0
  669. wright_engineering-0.1.0/specs/020-chat-composer-commands/plan.md +67 -0
  670. wright_engineering-0.1.0/specs/020-chat-composer-commands/research.md +16 -0
  671. wright_engineering-0.1.0/specs/020-chat-composer-commands/spec.md +102 -0
  672. wright_engineering-0.1.0/specs/020-chat-composer-commands/tasks.md +113 -0
  673. wright_engineering-0.1.0/specs/021-workspace-mcp-sessions/checklists/requirements.md +34 -0
  674. wright_engineering-0.1.0/specs/021-workspace-mcp-sessions/contracts/api-contracts.md +84 -0
  675. wright_engineering-0.1.0/specs/021-workspace-mcp-sessions/data-model.md +53 -0
  676. wright_engineering-0.1.0/specs/021-workspace-mcp-sessions/plan.md +140 -0
  677. wright_engineering-0.1.0/specs/021-workspace-mcp-sessions/quickstart.md +57 -0
  678. wright_engineering-0.1.0/specs/021-workspace-mcp-sessions/research.md +87 -0
  679. wright_engineering-0.1.0/specs/021-workspace-mcp-sessions/spec.md +138 -0
  680. wright_engineering-0.1.0/specs/021-workspace-mcp-sessions/tasks.md +148 -0
  681. wright_engineering-0.1.0/specs/022-ui-navigation-redesign/checklists/requirements.md +35 -0
  682. wright_engineering-0.1.0/specs/022-ui-navigation-redesign/contracts/api-contracts.md +121 -0
  683. wright_engineering-0.1.0/specs/022-ui-navigation-redesign/data-model.md +37 -0
  684. wright_engineering-0.1.0/specs/022-ui-navigation-redesign/plan.md +93 -0
  685. wright_engineering-0.1.0/specs/022-ui-navigation-redesign/quickstart.md +41 -0
  686. wright_engineering-0.1.0/specs/022-ui-navigation-redesign/research.md +60 -0
  687. wright_engineering-0.1.0/specs/022-ui-navigation-redesign/spec.md +181 -0
  688. wright_engineering-0.1.0/specs/022-ui-navigation-redesign/tasks.md +159 -0
  689. wright_engineering-0.1.0/specs/023-viewer-panel-api/checklists/requirements.md +34 -0
  690. wright_engineering-0.1.0/specs/023-viewer-panel-api/contracts/api-contracts.md +173 -0
  691. wright_engineering-0.1.0/specs/023-viewer-panel-api/data-model.md +98 -0
  692. wright_engineering-0.1.0/specs/023-viewer-panel-api/plan.md +87 -0
  693. wright_engineering-0.1.0/specs/023-viewer-panel-api/quickstart.md +59 -0
  694. wright_engineering-0.1.0/specs/023-viewer-panel-api/research.md +30 -0
  695. wright_engineering-0.1.0/specs/023-viewer-panel-api/spec.md +143 -0
  696. wright_engineering-0.1.0/specs/023-viewer-panel-api/tasks.md +207 -0
  697. wright_engineering-0.1.0/specs/024-add-freecad-mcp/checklists/requirements.md +34 -0
  698. wright_engineering-0.1.0/specs/024-add-freecad-mcp/contracts/api-contracts.md +98 -0
  699. wright_engineering-0.1.0/specs/024-add-freecad-mcp/data-model.md +35 -0
  700. wright_engineering-0.1.0/specs/024-add-freecad-mcp/plan.md +71 -0
  701. wright_engineering-0.1.0/specs/024-add-freecad-mcp/quickstart.md +41 -0
  702. wright_engineering-0.1.0/specs/024-add-freecad-mcp/research.md +21 -0
  703. wright_engineering-0.1.0/specs/024-add-freecad-mcp/spec.md +76 -0
  704. wright_engineering-0.1.0/specs/024-add-freecad-mcp/tasks.md +133 -0
  705. wright_engineering-0.1.0/specs/025-migrate-hermes-native-api/checklists/requirements.md +37 -0
  706. wright_engineering-0.1.0/specs/025-migrate-hermes-native-api/data-model.md +372 -0
  707. wright_engineering-0.1.0/specs/025-migrate-hermes-native-api/plan.md +271 -0
  708. wright_engineering-0.1.0/specs/025-migrate-hermes-native-api/quickstart.md +111 -0
  709. wright_engineering-0.1.0/specs/025-migrate-hermes-native-api/research.md +128 -0
  710. wright_engineering-0.1.0/specs/025-migrate-hermes-native-api/spec.md +150 -0
  711. wright_engineering-0.1.0/specs/025-migrate-hermes-native-api/tasks.md +276 -0
  712. wright_engineering-0.1.0/specs/026-mcp-credential-setup/checklists/requirements.md +36 -0
  713. wright_engineering-0.1.0/specs/026-mcp-credential-setup/data-model.md +148 -0
  714. wright_engineering-0.1.0/specs/026-mcp-credential-setup/plan.md +266 -0
  715. wright_engineering-0.1.0/specs/026-mcp-credential-setup/quickstart.md +87 -0
  716. wright_engineering-0.1.0/specs/026-mcp-credential-setup/research.md +75 -0
  717. wright_engineering-0.1.0/specs/026-mcp-credential-setup/spec.md +123 -0
  718. wright_engineering-0.1.0/specs/026-mcp-credential-setup/tasks.md +215 -0
  719. wright_engineering-0.1.0/specs/027-wright-plugin-skeleton/checklists/requirements.md +34 -0
  720. wright_engineering-0.1.0/specs/027-wright-plugin-skeleton/contracts/plugin_interface.md +37 -0
  721. wright_engineering-0.1.0/specs/027-wright-plugin-skeleton/data-model.md +48 -0
  722. wright_engineering-0.1.0/specs/027-wright-plugin-skeleton/plan.md +71 -0
  723. wright_engineering-0.1.0/specs/027-wright-plugin-skeleton/quickstart.md +54 -0
  724. wright_engineering-0.1.0/specs/027-wright-plugin-skeleton/research.md +21 -0
  725. wright_engineering-0.1.0/specs/027-wright-plugin-skeleton/spec.md +94 -0
  726. wright_engineering-0.1.0/specs/027-wright-plugin-skeleton/tasks.md +133 -0
  727. wright_engineering-0.1.0/specs/028-wright-tool-catalog/checklists/requirements.md +34 -0
  728. wright_engineering-0.1.0/specs/028-wright-tool-catalog/contracts/catalog_interface.md +42 -0
  729. wright_engineering-0.1.0/specs/028-wright-tool-catalog/data-model.md +58 -0
  730. wright_engineering-0.1.0/specs/028-wright-tool-catalog/plan.md +77 -0
  731. wright_engineering-0.1.0/specs/028-wright-tool-catalog/quickstart.md +30 -0
  732. wright_engineering-0.1.0/specs/028-wright-tool-catalog/research.md +20 -0
  733. wright_engineering-0.1.0/specs/028-wright-tool-catalog/spec.md +97 -0
  734. wright_engineering-0.1.0/specs/028-wright-tool-catalog/tasks.md +124 -0
  735. wright_engineering-0.1.0/specs/029-wright-api-bridge/checklists/requirements.md +34 -0
  736. wright_engineering-0.1.0/specs/029-wright-api-bridge/contracts/bridge_interface.md +85 -0
  737. wright_engineering-0.1.0/specs/029-wright-api-bridge/data-model.md +39 -0
  738. wright_engineering-0.1.0/specs/029-wright-api-bridge/plan.md +79 -0
  739. wright_engineering-0.1.0/specs/029-wright-api-bridge/quickstart.md +38 -0
  740. wright_engineering-0.1.0/specs/029-wright-api-bridge/research.md +21 -0
  741. wright_engineering-0.1.0/specs/029-wright-api-bridge/spec.md +97 -0
  742. wright_engineering-0.1.0/specs/029-wright-api-bridge/tasks.md +123 -0
  743. wright_engineering-0.1.0/specs/030-wright-slash-commands/checklists/requirements.md +35 -0
  744. wright_engineering-0.1.0/specs/030-wright-slash-commands/contracts/command_contracts.md +91 -0
  745. wright_engineering-0.1.0/specs/030-wright-slash-commands/data-model.md +55 -0
  746. wright_engineering-0.1.0/specs/030-wright-slash-commands/plan.md +122 -0
  747. wright_engineering-0.1.0/specs/030-wright-slash-commands/quickstart.md +84 -0
  748. wright_engineering-0.1.0/specs/030-wright-slash-commands/research.md +66 -0
  749. wright_engineering-0.1.0/specs/030-wright-slash-commands/spec.md +140 -0
  750. wright_engineering-0.1.0/specs/030-wright-slash-commands/tasks.md +188 -0
  751. wright_engineering-0.1.0/specs/031-docker-integration-distribution/checklists/requirements.md +34 -0
  752. wright_engineering-0.1.0/specs/031-docker-integration-distribution/contracts/distribution_contracts.md +55 -0
  753. wright_engineering-0.1.0/specs/031-docker-integration-distribution/data-model.md +37 -0
  754. wright_engineering-0.1.0/specs/031-docker-integration-distribution/plan.md +70 -0
  755. wright_engineering-0.1.0/specs/031-docker-integration-distribution/quickstart.md +45 -0
  756. wright_engineering-0.1.0/specs/031-docker-integration-distribution/research.md +55 -0
  757. wright_engineering-0.1.0/specs/031-docker-integration-distribution/spec.md +111 -0
  758. wright_engineering-0.1.0/specs/031-docker-integration-distribution/tasks.md +153 -0
  759. wright_engineering-0.1.0/specs/032-dual-mode-desktop/contracts/ipc-contract.md +51 -0
  760. wright_engineering-0.1.0/specs/032-dual-mode-desktop/data-model.md +99 -0
  761. wright_engineering-0.1.0/specs/032-dual-mode-desktop/plan.md +96 -0
  762. wright_engineering-0.1.0/specs/032-dual-mode-desktop/quickstart.md +84 -0
  763. wright_engineering-0.1.0/specs/032-dual-mode-desktop/research.md +75 -0
  764. wright_engineering-0.1.0/specs/032-dual-mode-desktop/spec.md +190 -0
  765. wright_engineering-0.1.0/specs/032-dual-mode-desktop/tasks.md +306 -0
  766. wright_engineering-0.1.0/specs/033-fix-test-failures/checklists/requirements.md +34 -0
  767. wright_engineering-0.1.0/specs/033-fix-test-failures/contracts/validation-commands.md +12 -0
  768. wright_engineering-0.1.0/specs/033-fix-test-failures/data-model.md +14 -0
  769. wright_engineering-0.1.0/specs/033-fix-test-failures/plan.md +77 -0
  770. wright_engineering-0.1.0/specs/033-fix-test-failures/quickstart.md +29 -0
  771. wright_engineering-0.1.0/specs/033-fix-test-failures/research.md +28 -0
  772. wright_engineering-0.1.0/specs/033-fix-test-failures/spec.md +86 -0
  773. wright_engineering-0.1.0/specs/033-fix-test-failures/tasks.md +115 -0
  774. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/checklists/requirements.md +34 -0
  775. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/contracts/catalog-contract.md +43 -0
  776. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/contracts/followup-contract.md +36 -0
  777. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/contracts/ui-contract.md +39 -0
  778. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/contracts/validation-contract.md +43 -0
  779. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/data-model.md +151 -0
  780. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/plan.md +123 -0
  781. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/quickstart.md +95 -0
  782. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/research.md +55 -0
  783. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/spec.md +130 -0
  784. wright_engineering-0.1.0/specs/034-engineering-mcp-catalog/tasks.md +171 -0
  785. wright_engineering-0.1.0/specs/035-alpha-release-readiness/alpha-release-readiness-prompt.md +291 -0
  786. wright_engineering-0.1.0/specs/035-alpha-release-readiness/plan.md +47 -0
  787. wright_engineering-0.1.0/specs/035-alpha-release-readiness/spec.md +46 -0
  788. wright_engineering-0.1.0/specs/035-alpha-release-readiness/tasks.md +187 -0
  789. wright_engineering-0.1.0/specs/036-port-nous-fixes/checklists/requirements.md +34 -0
  790. wright_engineering-0.1.0/specs/036-port-nous-fixes/contracts/extraction-contract.md +35 -0
  791. wright_engineering-0.1.0/specs/036-port-nous-fixes/contracts/validation-contract.md +36 -0
  792. wright_engineering-0.1.0/specs/036-port-nous-fixes/data-model.md +84 -0
  793. wright_engineering-0.1.0/specs/036-port-nous-fixes/plan.md +107 -0
  794. wright_engineering-0.1.0/specs/036-port-nous-fixes/quickstart.md +57 -0
  795. wright_engineering-0.1.0/specs/036-port-nous-fixes/research.md +37 -0
  796. wright_engineering-0.1.0/specs/036-port-nous-fixes/spec.md +105 -0
  797. wright_engineering-0.1.0/specs/036-port-nous-fixes/tasks.md +146 -0
  798. wright_engineering-0.1.0/specs/037-refactoring-audit/checklists/requirements.md +35 -0
  799. wright_engineering-0.1.0/specs/037-refactoring-audit/contracts/agent-runtime-registry.md +51 -0
  800. wright_engineering-0.1.0/specs/037-refactoring-audit/contracts/mcp-service-contract.md +46 -0
  801. wright_engineering-0.1.0/specs/037-refactoring-audit/contracts/validation-evidence-contract.md +65 -0
  802. wright_engineering-0.1.0/specs/037-refactoring-audit/contracts/wright-gateway-protocol.md +57 -0
  803. wright_engineering-0.1.0/specs/037-refactoring-audit/data-model.md +77 -0
  804. wright_engineering-0.1.0/specs/037-refactoring-audit/plan.md +147 -0
  805. wright_engineering-0.1.0/specs/037-refactoring-audit/quickstart.md +50 -0
  806. wright_engineering-0.1.0/specs/037-refactoring-audit/research.md +50 -0
  807. wright_engineering-0.1.0/specs/037-refactoring-audit/risk-review.md +74 -0
  808. wright_engineering-0.1.0/specs/037-refactoring-audit/spec.md +176 -0
  809. wright_engineering-0.1.0/specs/037-refactoring-audit/tasks.md +316 -0
  810. wright_engineering-0.1.0/specs/038-refactoring-phase-2/checklists/requirements.md +35 -0
  811. wright_engineering-0.1.0/specs/038-refactoring-phase-2/contracts/agent-context-materialization.md +36 -0
  812. wright_engineering-0.1.0/specs/038-refactoring-phase-2/contracts/frontend-contracts.md +21 -0
  813. wright_engineering-0.1.0/specs/038-refactoring-phase-2/contracts/mcp-safety-policy.md +32 -0
  814. wright_engineering-0.1.0/specs/038-refactoring-phase-2/contracts/telemetry-contract.md +54 -0
  815. wright_engineering-0.1.0/specs/038-refactoring-phase-2/contracts/validation-cli.md +36 -0
  816. wright_engineering-0.1.0/specs/038-refactoring-phase-2/contracts/workspace-service.md +48 -0
  817. wright_engineering-0.1.0/specs/038-refactoring-phase-2/data-model.md +161 -0
  818. wright_engineering-0.1.0/specs/038-refactoring-phase-2/plan.md +159 -0
  819. wright_engineering-0.1.0/specs/038-refactoring-phase-2/quickstart.md +49 -0
  820. wright_engineering-0.1.0/specs/038-refactoring-phase-2/research.md +62 -0
  821. wright_engineering-0.1.0/specs/038-refactoring-phase-2/spec.md +180 -0
  822. wright_engineering-0.1.0/specs/038-refactoring-phase-2/tasks.md +239 -0
  823. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/checklists/requirements.md +34 -0
  824. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/contracts/hermes-lifecycle-contract.md +82 -0
  825. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/contracts/mirror-repository-contract.md +98 -0
  826. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/contracts/python-package-contract.md +75 -0
  827. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/contracts/release-validation-contract.md +94 -0
  828. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/data-model.md +151 -0
  829. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/plan.md +147 -0
  830. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/quickstart.md +167 -0
  831. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/research.md +88 -0
  832. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/spec.md +117 -0
  833. wright_engineering-0.1.0/specs/039-hermes-plugin-mirror-pypi/tasks.md +242 -0
  834. wright_engineering-0.1.0/specs/040-workspace-session-model/checklists/requirements.md +34 -0
  835. wright_engineering-0.1.0/specs/040-workspace-session-model/contracts/workspace-session-api.md +153 -0
  836. wright_engineering-0.1.0/specs/040-workspace-session-model/data-model.md +101 -0
  837. wright_engineering-0.1.0/specs/040-workspace-session-model/plan.md +104 -0
  838. wright_engineering-0.1.0/specs/040-workspace-session-model/quickstart.md +55 -0
  839. wright_engineering-0.1.0/specs/040-workspace-session-model/research.md +47 -0
  840. wright_engineering-0.1.0/specs/040-workspace-session-model/spec.md +132 -0
  841. wright_engineering-0.1.0/specs/040-workspace-session-model/tasks.md +164 -0
  842. wright_engineering-0.1.0/specs/041-community-release-readiness/checklists/requirements.md +34 -0
  843. wright_engineering-0.1.0/specs/041-community-release-readiness/contracts/public-release-artifacts.md +90 -0
  844. wright_engineering-0.1.0/specs/041-community-release-readiness/data-model.md +118 -0
  845. wright_engineering-0.1.0/specs/041-community-release-readiness/plan.md +117 -0
  846. wright_engineering-0.1.0/specs/041-community-release-readiness/quickstart.md +86 -0
  847. wright_engineering-0.1.0/specs/041-community-release-readiness/research.md +74 -0
  848. wright_engineering-0.1.0/specs/041-community-release-readiness/spec.md +141 -0
  849. wright_engineering-0.1.0/specs/041-community-release-readiness/tasks.md +178 -0
  850. wright_engineering-0.1.0/src/wright_engineering/__init__.py +3 -0
  851. wright_engineering-0.1.0/src/wright_engineering/cli.py +37 -0
  852. wright_engineering-0.1.0/tests/e2e/.gitkeep +3 -0
  853. wright_engineering-0.1.0/tests/e2e/README.md +15 -0
  854. wright_engineering-0.1.0/tests/e2e/conftest.py +96 -0
  855. wright_engineering-0.1.0/tests/e2e/test_agent_registry_smoke.py +10 -0
  856. wright_engineering-0.1.0/tests/e2e/test_api_health_smoke.py +5 -0
  857. wright_engineering-0.1.0/tests/e2e/test_mcp_listing_smoke.py +9 -0
  858. wright_engineering-0.1.0/tests/e2e/test_wright_gateway_smoke.py +20 -0
  859. wright_engineering-0.1.0/tests/e2e-live/live-chat.spec.ts +74 -0
  860. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/LICENSE +1 -0
  861. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/PROVENANCE.md +8 -0
  862. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/README.md +44 -0
  863. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/__init__.py +2 -0
  864. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/bridge.py +1 -0
  865. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/catalog.py +1 -0
  866. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/catalog.yaml +1 -0
  867. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/commands.py +1 -0
  868. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/plugin.yaml +9 -0
  869. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/provenance.json +9 -0
  870. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/pyproject.toml +25 -0
  871. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/schemas.py +1 -0
  872. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/tests/test_placeholder.py +2 -0
  873. wright_engineering-0.1.0/tests/fixtures/hermes_plugin_mirror/verify_plugin.py +1 -0
  874. wright_engineering-0.1.0/tests/release/__init__.py +0 -0
  875. wright_engineering-0.1.0/tests/release/conftest.py +75 -0
  876. wright_engineering-0.1.0/tests/test_alpha_release_readiness.py +166 -0
  877. wright_engineering-0.1.0/tests/test_alpha_release_wrapup.py +32 -0
  878. wright_engineering-0.1.0/tests/test_architecture_alpha_docs.py +78 -0
  879. wright_engineering-0.1.0/tests/test_blog_intro_alpha_docs.py +64 -0
  880. wright_engineering-0.1.0/tests/test_ci_cd_workflow_docs.py +94 -0
  881. wright_engineering-0.1.0/tests/test_community_feature_docs.py +83 -0
  882. wright_engineering-0.1.0/tests/test_deployment_configuration_docs.py +78 -0
  883. wright_engineering-0.1.0/tests/test_docker_smoke_contract.py +84 -0
  884. wright_engineering-0.1.0/tests/test_docs_home_overview_alpha_contract.py +114 -0
  885. wright_engineering-0.1.0/tests/test_docs_release_gate.py +79 -0
  886. wright_engineering-0.1.0/tests/test_frontend_contracts.py +13 -0
  887. wright_engineering-0.1.0/tests/test_getting_started_paths.py +107 -0
  888. wright_engineering-0.1.0/tests/test_github_labels.py +66 -0
  889. wright_engineering-0.1.0/tests/test_hermes_plugin_lifecycle_contract.py +26 -0
  890. wright_engineering-0.1.0/tests/test_hermes_plugin_mirror_docs.py +30 -0
  891. wright_engineering-0.1.0/tests/test_hermes_plugin_mirror_provenance.py +29 -0
  892. wright_engineering-0.1.0/tests/test_hermes_plugin_mirror_readme.py +35 -0
  893. wright_engineering-0.1.0/tests/test_hermes_plugin_mirror_sync.py +132 -0
  894. wright_engineering-0.1.0/tests/test_hermes_plugin_mirror_validation.py +111 -0
  895. wright_engineering-0.1.0/tests/test_import_boundaries.py +34 -0
  896. wright_engineering-0.1.0/tests/test_legacy_plan_alpha_language.py +38 -0
  897. wright_engineering-0.1.0/tests/test_public_alpha_leak_scan.py +85 -0
  898. wright_engineering-0.1.0/tests/test_publish_python_packages_workflow.py +25 -0
  899. wright_engineering-0.1.0/tests/test_python_package_distribution_build.py +31 -0
  900. wright_engineering-0.1.0/tests/test_python_package_metadata.py +49 -0
  901. wright_engineering-0.1.0/tests/test_readme_branding_and_docker_user_guide.py +80 -0
  902. wright_engineering-0.1.0/tests/test_release_engineering_scripts.py +59 -0
  903. wright_engineering-0.1.0/tests/test_release_policy.py +91 -0
  904. wright_engineering-0.1.0/tests/test_security_scanner_setup.py +95 -0
  905. wright_engineering-0.1.0/tests/test_sync_hermes_plugin_mirror_workflow.py +18 -0
  906. wright_engineering-0.1.0/tests/ui-integration/.gitkeep +3 -0
  907. wright_engineering-0.1.0/tests/ui-integration/agent-chat.spec.ts +608 -0
  908. wright_engineering-0.1.0/tests/ui-integration/capture-screenshot.spec.ts +89 -0
  909. wright_engineering-0.1.0/tests/ui-integration/create-session.spec.ts +203 -0
  910. wright_engineering-0.1.0/tests/ui-integration/dashboard-real.spec.ts +62 -0
  911. wright_engineering-0.1.0/tests/ui-integration/dashboard.spec.ts +254 -0
  912. wright_engineering-0.1.0/tests/ui-integration/mcp-directory.spec.ts +46 -0
  913. wright_engineering-0.1.0/tests/ui-integration/navigation-redesign.spec.ts +554 -0
  914. wright_engineering-0.1.0/tests/ui-integration/navigation.spec.ts +43 -0
  915. wright_engineering-0.1.0/tests/ui-integration/setup.spec.ts +123 -0
  916. wright_engineering-0.1.0/tests/ui-integration/tool-registry.spec.ts +410 -0
  917. wright_engineering-0.1.0/tests/ui-integration/ui-consistency-theme.spec.ts +172 -0
  918. wright_engineering-0.1.0/tests/ui-integration/viewer-panel-lifecycle.spec.ts +482 -0
  919. wright_engineering-0.1.0/tests/ui-integration/viewer-panel-persistence.spec.ts +278 -0
  920. wright_engineering-0.1.0/tests/ui-integration/viewer-panel-watchdog.spec.ts +263 -0
  921. wright_engineering-0.1.0/tests/ui-smoke-test.ts +112 -0
  922. wright_engineering-0.1.0/uv.lock +1755 -0
  923. wright_engineering-0.1.0/windows-sandbox/README.md +319 -0
  924. wright_engineering-0.1.0/windows-sandbox/bootstrap-base-vm.ps1 +64 -0
  925. wright_engineering-0.1.0/windows-sandbox/diagnose-running-vm.ps1 +134 -0
  926. wright_engineering-0.1.0/windows-sandbox/hermes-code-search.ps1 +19 -0
  927. wright_engineering-0.1.0/windows-sandbox/image-factory/Build-WrightHermesImage.ps1 +233 -0
  928. wright_engineering-0.1.0/windows-sandbox/image-factory/Checkpoint-ManualHermesVm.ps1 +50 -0
  929. wright_engineering-0.1.0/windows-sandbox/image-factory/Diagnose-HermesApiInManualVm.ps1 +119 -0
  930. wright_engineering-0.1.0/windows-sandbox/image-factory/Disable-ManualHermesVmNetwork.ps1 +47 -0
  931. wright_engineering-0.1.0/windows-sandbox/image-factory/Install-WrightOnManualHermesVm.ps1 +125 -0
  932. wright_engineering-0.1.0/windows-sandbox/image-factory/New-WrightHermesTestVm.ps1 +118 -0
  933. wright_engineering-0.1.0/windows-sandbox/image-factory/README.md +129 -0
  934. wright_engineering-0.1.0/windows-sandbox/image-factory/Repair-ManualHermesVmBoot.ps1 +61 -0
  935. wright_engineering-0.1.0/windows-sandbox/image-factory/Restart-WrightApiInManualHermesVm.ps1 +128 -0
  936. wright_engineering-0.1.0/windows-sandbox/image-factory/Start-ExistingManualHermesVm.ps1 +57 -0
  937. wright_engineering-0.1.0/windows-sandbox/image-factory/Start-HermesGatewayInManualVm.ps1 +112 -0
  938. wright_engineering-0.1.0/windows-sandbox/image-factory/Start-ManualHermesVm.ps1 +87 -0
  939. wright_engineering-0.1.0/windows-sandbox/image-factory/Start-ManualHermesVmCheckpoint.ps1 +57 -0
  940. wright_engineering-0.1.0/windows-sandbox/image-factory/guest/Install-WrightForHermesTest.ps1 +247 -0
  941. wright_engineering-0.1.0/windows-sandbox/image-factory/guest/Test-WrightHermesGuest.ps1 +52 -0
  942. wright_engineering-0.1.0/windows-sandbox/image-factory/guest/Test-WrightHermesManualGuest.ps1 +132 -0
  943. wright_engineering-0.1.0/windows-sandbox/image-factory/packer/autounattend/Autounattend.xml.template +147 -0
  944. wright_engineering-0.1.0/windows-sandbox/image-factory/packer/scripts/Install-BaseTools.ps1 +32 -0
  945. wright_engineering-0.1.0/windows-sandbox/image-factory/packer/scripts/Install-HermesDesktop.ps1 +156 -0
  946. wright_engineering-0.1.0/windows-sandbox/image-factory/packer/scripts/Test-HermesReady.ps1 +30 -0
  947. wright_engineering-0.1.0/windows-sandbox/image-factory/packer/wright-hermes.pkr.hcl +112 -0
  948. wright_engineering-0.1.0/windows-sandbox/inspect-gateway-help.ps1 +14 -0
  949. wright_engineering-0.1.0/windows-sandbox/inspect-hermes-auth.ps1 +99 -0
  950. wright_engineering-0.1.0/windows-sandbox/install-wright-on-hermes-vm.ps1 +154 -0
  951. wright_engineering-0.1.0/windows-sandbox/manage-vm.ps1 +189 -0
  952. wright_engineering-0.1.0/windows-sandbox/probe-gateway-ports.ps1 +10 -0
  953. wright_engineering-0.1.0/windows-sandbox/probe-gateway.ps1 +27 -0
  954. wright_engineering-0.1.0/windows-sandbox/provision-vm.ps1 +849 -0
  955. wright_engineering-0.1.0/windows-sandbox/restore-hermes-installed-stage2.ps1 +19 -0
  956. wright_engineering-0.1.0/windows-sandbox/restore-hermes-installed.ps1 +22 -0
  957. wright_engineering-0.1.0/windows-sandbox/run-clean-vm-install.ps1 +59 -0
  958. wright_engineering-0.1.0/windows-sandbox/run-vm-test.ps1 +625 -0
  959. wright_engineering-0.1.0/windows-sandbox/setup-and-test.ps1 +80 -0
  960. wright_engineering-0.1.0/windows-sandbox/stop-vm-test-runners.ps1 +30 -0
  961. wright_engineering-0.1.0/windows-sandbox/test-windows.wsb +15 -0
  962. wright_engineering-0.1.0/windows-sandbox/update-running-vm.ps1 +421 -0
  963. wright_engineering-0.1.0/windows-sandbox/vm-gateway-current.ps1 +38 -0
@@ -0,0 +1,31 @@
1
+ ---
2
+ name: speckit-agent-context-update
3
+ description: Refresh the managed Spec Kit section in the coding agent context file
4
+ compatibility: Requires spec-kit project structure with .specify/ directory
5
+ metadata:
6
+ author: github-spec-kit
7
+ source: agent-context:commands/speckit.agent-context.update.md
8
+ ---
9
+
10
+ # Update Coding Agent Context
11
+
12
+ Refresh the managed Spec Kit section inside the active coding agent's context/instruction file (e.g. `CLAUDE.md`, `.github/copilot-instructions.md`, `AGENTS.md`).
13
+
14
+ ## Behavior
15
+
16
+ The script reads the agent-context extension config at
17
+ `.specify/extensions/agent-context/agent-context-config.yml` to discover:
18
+
19
+ - `context_file` — the path of the coding agent context file to manage.
20
+ - `context_markers.start` / `.end` — the delimiters surrounding the managed section. Defaults to `<!-- SPECKIT START -->` and `<!-- SPECKIT END -->` when the field is missing.
21
+
22
+ It then creates, replaces, or appends the managed block so that the section points at the most recent plan path when one can be discovered (`specs/<feature>/plan.md`).
23
+
24
+ If `context_file` is empty or the file cannot be located, the command reports nothing to do and exits successfully.
25
+
26
+ ## Execution
27
+
28
+ - **Bash**: `.specify/extensions/agent-context/scripts/bash/update-agent-context.sh [plan_path]`
29
+ - **PowerShell**: `.specify/extensions/agent-context/scripts/powershell/update-agent-context.ps1 [plan_path]`
30
+
31
+ When `plan_path` is omitted, the script auto-detects the most recently modified `specs/*/plan.md`.
@@ -0,0 +1,257 @@
1
+ ---
2
+ name: "speckit-analyze"
3
+ description: "Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation."
4
+ compatibility: "Requires spec-kit project structure with .specify/ directory"
5
+ metadata:
6
+ author: "github-spec-kit"
7
+ source: "templates/commands/analyze.md"
8
+ ---
9
+
10
+
11
+ ## User Input
12
+
13
+ ```text
14
+ $ARGUMENTS
15
+ ```
16
+
17
+ You **MUST** consider the user input before proceeding (if not empty).
18
+
19
+ ## Pre-Execution Checks
20
+
21
+ **Check for extension hooks (before analysis)**:
22
+ - Check if `.specify/extensions.yml` exists in the project root.
23
+ - If it exists, read it and look for entries under the `hooks.before_analyze` key
24
+ - If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
25
+ - Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.
26
+ - For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:
27
+ - If the hook has no `condition` field, or it is null/empty, treat the hook as executable
28
+ - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation
29
+ - When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.
30
+ - For each executable hook, output the following based on its `optional` flag:
31
+ - **Optional hook** (`optional: true`):
32
+ ```
33
+ ## Extension Hooks
34
+
35
+ **Optional Pre-Hook**: {extension}
36
+ Command: `/{command}`
37
+ Description: {description}
38
+
39
+ Prompt: {prompt}
40
+ To execute: `/{command}`
41
+ ```
42
+ - **Mandatory hook** (`optional: false`):
43
+ ```
44
+ ## Extension Hooks
45
+
46
+ **Automatic Pre-Hook**: {extension}
47
+ Executing: `/{command}`
48
+ EXECUTE_COMMAND: {command}
49
+
50
+ Wait for the result of the hook command before proceeding to the Goal.
51
+ ```
52
+ - If no hooks are registered or `.specify/extensions.yml` does not exist, skip silently
53
+
54
+ ## Goal
55
+
56
+ Identify inconsistencies, duplications, ambiguities, and underspecified items across the three core artifacts (`spec.md`, `plan.md`, `tasks.md`) before implementation. This command MUST run only after `/speckit-tasks` has successfully produced a complete `tasks.md`.
57
+
58
+ ## Operating Constraints
59
+
60
+ **STRICTLY READ-ONLY**: Do **not** modify any files. Output a structured analysis report. Offer an optional remediation plan (user must explicitly approve before any follow-up editing commands would be invoked manually).
61
+
62
+ **Constitution Authority**: The project constitution (`.specify/memory/constitution.md`) is **non-negotiable** within this analysis scope. Constitution conflicts are automatically CRITICAL and require adjustment of the spec, plan, or tasks—not dilution, reinterpretation, or silent ignoring of the principle. If a principle itself needs to change, that must occur in a separate, explicit constitution update outside `/speckit-analyze`.
63
+
64
+ ## Execution Steps
65
+
66
+ ### 1. Initialize Analysis Context
67
+
68
+ Run `.specify/scripts/bash/check-prerequisites.sh --json --require-tasks --include-tasks` once from repo root and parse JSON for FEATURE_DIR and AVAILABLE_DOCS. Derive absolute paths:
69
+
70
+ - SPEC = FEATURE_DIR/spec.md
71
+ - PLAN = FEATURE_DIR/plan.md
72
+ - TASKS = FEATURE_DIR/tasks.md
73
+
74
+ Abort with an error message if any required file is missing (instruct the user to run missing prerequisite command).
75
+ For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'\''m Groot' (or double-quote if possible: "I'm Groot").
76
+
77
+ ### 2. Load Artifacts (Progressive Disclosure)
78
+
79
+ Load only the minimal necessary context from each artifact:
80
+
81
+ **From spec.md:**
82
+
83
+ - Overview/Context
84
+ - Functional Requirements
85
+ - Success Criteria (measurable outcomes — e.g., performance, security, availability, user success, business impact)
86
+ - User Stories
87
+ - Edge Cases (if present)
88
+
89
+ **From plan.md:**
90
+
91
+ - Architecture/stack choices
92
+ - Data Model references
93
+ - Phases
94
+ - Technical constraints
95
+
96
+ **From tasks.md:**
97
+
98
+ - Task IDs
99
+ - Descriptions
100
+ - Phase grouping
101
+ - Parallel markers [P]
102
+ - Referenced file paths
103
+
104
+ **From constitution:**
105
+
106
+ - Load `.specify/memory/constitution.md` for principle validation
107
+
108
+ ### 3. Build Semantic Models
109
+
110
+ Create internal representations (do not include raw artifacts in output):
111
+
112
+ - **Requirements inventory**: For each Functional Requirement (FR-###) and Success Criterion (SC-###), record a stable key. Use the explicit FR-/SC- identifier as the primary key when present, and optionally also derive an imperative-phrase slug for readability (e.g., "User can upload file" → `user-can-upload-file`). Include only Success Criteria items that require buildable work (e.g., load-testing infrastructure, security audit tooling), and exclude post-launch outcome metrics and business KPIs (e.g., "Reduce support tickets by 50%").
113
+ - **User story/action inventory**: Discrete user actions with acceptance criteria
114
+ - **Task coverage mapping**: Map each task to one or more requirements or stories (inference by keyword / explicit reference patterns like IDs or key phrases)
115
+ - **Constitution rule set**: Extract principle names and MUST/SHOULD normative statements
116
+
117
+ ### 4. Detection Passes (Token-Efficient Analysis)
118
+
119
+ Focus on high-signal findings. Limit to 50 findings total; aggregate remainder in overflow summary.
120
+
121
+ #### A. Duplication Detection
122
+
123
+ - Identify near-duplicate requirements
124
+ - Mark lower-quality phrasing for consolidation
125
+
126
+ #### B. Ambiguity Detection
127
+
128
+ - Flag vague adjectives (fast, scalable, secure, intuitive, robust) lacking measurable criteria
129
+ - Flag unresolved placeholders (TODO, TKTK, ???, `<placeholder>`, etc.)
130
+
131
+ #### C. Underspecification
132
+
133
+ - Requirements with verbs but missing object or measurable outcome
134
+ - User stories missing acceptance criteria alignment
135
+ - Tasks referencing files or components not defined in spec/plan
136
+
137
+ #### D. Constitution Alignment
138
+
139
+ - Any requirement or plan element conflicting with a MUST principle
140
+ - Missing mandated sections or quality gates from constitution
141
+
142
+ #### E. Coverage Gaps
143
+
144
+ - Requirements with zero associated tasks
145
+ - Tasks with no mapped requirement/story
146
+ - Success Criteria requiring buildable work (performance, security, availability) not reflected in tasks
147
+
148
+ #### F. Inconsistency
149
+
150
+ - Terminology drift (same concept named differently across files)
151
+ - Data entities referenced in plan but absent in spec (or vice versa)
152
+ - Task ordering contradictions (e.g., integration tasks before foundational setup tasks without dependency note)
153
+ - Conflicting requirements (e.g., one requires Next.js while other specifies Vue)
154
+
155
+ ### 5. Severity Assignment
156
+
157
+ Use this heuristic to prioritize findings:
158
+
159
+ - **CRITICAL**: Violates constitution MUST, missing core spec artifact, or requirement with zero coverage that blocks baseline functionality
160
+ - **HIGH**: Duplicate or conflicting requirement, ambiguous security/performance attribute, untestable acceptance criterion
161
+ - **MEDIUM**: Terminology drift, missing non-functional task coverage, underspecified edge case
162
+ - **LOW**: Style/wording improvements, minor redundancy not affecting execution order
163
+
164
+ ### 6. Produce Compact Analysis Report
165
+
166
+ Output a Markdown report (no file writes) with the following structure:
167
+
168
+ ## Specification Analysis Report
169
+
170
+ | ID | Category | Severity | Location(s) | Summary | Recommendation |
171
+ |----|----------|----------|-------------|---------|----------------|
172
+ | A1 | Duplication | HIGH | spec.md:L120-134 | Two similar requirements ... | Merge phrasing; keep clearer version |
173
+
174
+ (Add one row per finding; generate stable IDs prefixed by category initial.)
175
+
176
+ **Coverage Summary Table:**
177
+
178
+ | Requirement Key | Has Task? | Task IDs | Notes |
179
+ |-----------------|-----------|----------|-------|
180
+
181
+ **Constitution Alignment Issues:** (if any)
182
+
183
+ **Unmapped Tasks:** (if any)
184
+
185
+ **Metrics:**
186
+
187
+ - Total Requirements
188
+ - Total Tasks
189
+ - Coverage % (requirements with >=1 task)
190
+ - Ambiguity Count
191
+ - Duplication Count
192
+ - Critical Issues Count
193
+
194
+ ### 7. Provide Next Actions
195
+
196
+ At end of report, output a concise Next Actions block:
197
+
198
+ - If CRITICAL issues exist: Recommend resolving before `/speckit-implement`
199
+ - If only LOW/MEDIUM: User may proceed, but provide improvement suggestions
200
+ - Provide explicit command suggestions: e.g., "Run /speckit-specify with refinement", "Run /speckit-plan to adjust architecture", "Manually edit tasks.md to add coverage for 'performance-metrics'"
201
+
202
+ ### 8. Offer Remediation
203
+
204
+ Ask the user: "Would you like me to suggest concrete remediation edits for the top N issues?" (Do NOT apply them automatically.)
205
+
206
+ ### 9. Check for extension hooks
207
+
208
+ After reporting, check if `.specify/extensions.yml` exists in the project root.
209
+ - If it exists, read it and look for entries under the `hooks.after_analyze` key
210
+ - If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
211
+ - Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.
212
+ - For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:
213
+ - If the hook has no `condition` field, or it is null/empty, treat the hook as executable
214
+ - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation
215
+ - When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.
216
+ - For each executable hook, output the following based on its `optional` flag:
217
+ - **Optional hook** (`optional: true`):
218
+ ```
219
+ ## Extension Hooks
220
+
221
+ **Optional Hook**: {extension}
222
+ Command: `/{command}`
223
+ Description: {description}
224
+
225
+ Prompt: {prompt}
226
+ To execute: `/{command}`
227
+ ```
228
+ - **Mandatory hook** (`optional: false`):
229
+ ```
230
+ ## Extension Hooks
231
+
232
+ **Automatic Hook**: {extension}
233
+ Executing: `/{command}`
234
+ EXECUTE_COMMAND: {command}
235
+ ```
236
+ - If no hooks are registered or `.specify/extensions.yml` does not exist, skip silently
237
+
238
+ ## Operating Principles
239
+
240
+ ### Context Efficiency
241
+
242
+ - **Minimal high-signal tokens**: Focus on actionable findings, not exhaustive documentation
243
+ - **Progressive disclosure**: Load artifacts incrementally; don't dump all content into analysis
244
+ - **Token-efficient output**: Limit findings table to 50 rows; summarize overflow
245
+ - **Deterministic results**: Rerunning without changes should produce consistent IDs and counts
246
+
247
+ ### Analysis Guidelines
248
+
249
+ - **NEVER modify files** (this is read-only analysis)
250
+ - **NEVER hallucinate missing sections** (if absent, report them accurately)
251
+ - **Prioritize constitution violations** (these are always CRITICAL)
252
+ - **Use examples over exhaustive rules** (cite specific instances, not generic patterns)
253
+ - **Report zero issues gracefully** (emit success report with coverage statistics)
254
+
255
+ ## Context
256
+
257
+ $ARGUMENTS
@@ -0,0 +1,371 @@
1
+ ---
2
+ name: "speckit-checklist"
3
+ description: "Generate a custom checklist for the current feature based on user requirements."
4
+ compatibility: "Requires spec-kit project structure with .specify/ directory"
5
+ metadata:
6
+ author: "github-spec-kit"
7
+ source: "templates/commands/checklist.md"
8
+ ---
9
+
10
+
11
+ ## Checklist Purpose: "Unit Tests for English"
12
+
13
+ **CRITICAL CONCEPT**: Checklists are **UNIT TESTS FOR REQUIREMENTS WRITING** - they validate the quality, clarity, and completeness of requirements in a given domain.
14
+
15
+ **NOT for verification/testing**:
16
+
17
+ - ❌ NOT "Verify the button clicks correctly"
18
+ - ❌ NOT "Test error handling works"
19
+ - ❌ NOT "Confirm the API returns 200"
20
+ - ❌ NOT checking if code/implementation matches the spec
21
+
22
+ **FOR requirements quality validation**:
23
+
24
+ - ✅ "Are visual hierarchy requirements defined for all card types?" (completeness)
25
+ - ✅ "Is 'prominent display' quantified with specific sizing/positioning?" (clarity)
26
+ - ✅ "Are hover state requirements consistent across all interactive elements?" (consistency)
27
+ - ✅ "Are accessibility requirements defined for keyboard navigation?" (coverage)
28
+ - ✅ "Does the spec define what happens when logo image fails to load?" (edge cases)
29
+
30
+ **Metaphor**: If your spec is code written in English, the checklist is its unit test suite. You're testing whether the requirements are well-written, complete, unambiguous, and ready for implementation - NOT whether the implementation works.
31
+
32
+ ## User Input
33
+
34
+ ```text
35
+ $ARGUMENTS
36
+ ```
37
+
38
+ You **MUST** consider the user input before proceeding (if not empty).
39
+
40
+ ## Pre-Execution Checks
41
+
42
+ **Check for extension hooks (before checklist generation)**:
43
+ - Check if `.specify/extensions.yml` exists in the project root.
44
+ - If it exists, read it and look for entries under the `hooks.before_checklist` key
45
+ - If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
46
+ - Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.
47
+ - For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:
48
+ - If the hook has no `condition` field, or it is null/empty, treat the hook as executable
49
+ - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation
50
+ - When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.
51
+ - For each executable hook, output the following based on its `optional` flag:
52
+ - **Optional hook** (`optional: true`):
53
+ ```
54
+ ## Extension Hooks
55
+
56
+ **Optional Pre-Hook**: {extension}
57
+ Command: `/{command}`
58
+ Description: {description}
59
+
60
+ Prompt: {prompt}
61
+ To execute: `/{command}`
62
+ ```
63
+ - **Mandatory hook** (`optional: false`):
64
+ ```
65
+ ## Extension Hooks
66
+
67
+ **Automatic Pre-Hook**: {extension}
68
+ Executing: `/{command}`
69
+ EXECUTE_COMMAND: {command}
70
+
71
+ Wait for the result of the hook command before proceeding to the Execution Steps.
72
+ ```
73
+ - If no hooks are registered or `.specify/extensions.yml` does not exist, skip silently
74
+
75
+ ## Execution Steps
76
+
77
+ 1. **Setup**: Run `.specify/scripts/bash/check-prerequisites.sh --json` from repo root and parse JSON for FEATURE_DIR and AVAILABLE_DOCS list.
78
+ - All file paths must be absolute.
79
+ - For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'\''m Groot' (or double-quote if possible: "I'm Groot").
80
+
81
+ 2. **IF EXISTS**: Load `.specify/memory/constitution.md` for project principles and governance constraints.
82
+
83
+ 3. **Clarify intent (dynamic)**: Derive up to THREE initial contextual clarifying questions (no pre-baked catalog). They MUST:
84
+ - Be generated from the user's phrasing + extracted signals from spec/plan/tasks
85
+ - Only ask about information that materially changes checklist content
86
+ - Be skipped individually if already unambiguous in `$ARGUMENTS`
87
+ - Prefer precision over breadth
88
+
89
+ Generation algorithm:
90
+ 1. Extract signals: feature domain keywords (e.g., auth, latency, UX, API), risk indicators ("critical", "must", "compliance"), stakeholder hints ("QA", "review", "security team"), and explicit deliverables ("a11y", "rollback", "contracts").
91
+ 2. Cluster signals into candidate focus areas (max 4) ranked by relevance.
92
+ 3. Identify probable audience & timing (author, reviewer, QA, release) if not explicit.
93
+ 4. Detect missing dimensions: scope breadth, depth/rigor, risk emphasis, exclusion boundaries, measurable acceptance criteria.
94
+ 5. Formulate questions chosen from these archetypes:
95
+ - Scope refinement (e.g., "Should this include integration touchpoints with X and Y or stay limited to local module correctness?")
96
+ - Risk prioritization (e.g., "Which of these potential risk areas should receive mandatory gating checks?")
97
+ - Depth calibration (e.g., "Is this a lightweight pre-commit sanity list or a formal release gate?")
98
+ - Audience framing (e.g., "Will this be used by the author only or peers during PR review?")
99
+ - Boundary exclusion (e.g., "Should we explicitly exclude performance tuning items this round?")
100
+ - Scenario class gap (e.g., "No recovery flows detected—are rollback / partial failure paths in scope?")
101
+
102
+ Question formatting rules:
103
+ - If presenting options, generate a compact table with columns: Option | Candidate | Why It Matters
104
+ - Limit to A–E options maximum; omit table if a free-form answer is clearer
105
+ - Never ask the user to restate what they already said
106
+ - Avoid speculative categories (no hallucination). If uncertain, ask explicitly: "Confirm whether X belongs in scope."
107
+
108
+ Defaults when interaction impossible:
109
+ - Depth: Standard
110
+ - Audience: Reviewer (PR) if code-related; Author otherwise
111
+ - Focus: Top 2 relevance clusters
112
+
113
+ Output the questions (label Q1/Q2/Q3). After answers: if ≥2 scenario classes (Alternate / Exception / Recovery / Non-Functional domain) remain unclear, you MAY ask up to TWO more targeted follow‑ups (Q4/Q5) with a one-line justification each (e.g., "Unresolved recovery path risk"). Do not exceed five total questions. Skip escalation if user explicitly declines more.
114
+
115
+ 4. **Understand user request**: Combine `$ARGUMENTS` + clarifying answers:
116
+ - Derive checklist theme (e.g., security, review, deploy, ux)
117
+ - Consolidate explicit must-have items mentioned by user
118
+ - Map focus selections to category scaffolding
119
+ - Infer any missing context from spec/plan/tasks (do NOT hallucinate)
120
+
121
+ 5. **Load feature context**: Read from FEATURE_DIR:
122
+ - spec.md: Feature requirements and scope
123
+ - plan.md (if exists): Technical details, dependencies
124
+ - tasks.md (if exists): Implementation tasks
125
+
126
+ **Context Loading Strategy**:
127
+ - Load only necessary portions relevant to active focus areas (avoid full-file dumping)
128
+ - Prefer summarizing long sections into concise scenario/requirement bullets
129
+ - Use progressive disclosure: add follow-on retrieval only if gaps detected
130
+ - If source docs are large, generate interim summary items instead of embedding raw text
131
+
132
+ 6. **Generate checklist** - Create "Unit Tests for Requirements":
133
+ - Create `FEATURE_DIR/checklists/` directory if it doesn't exist
134
+ - Generate unique checklist filename:
135
+ - Use short, descriptive name based on domain (e.g., `ux.md`, `api.md`, `security.md`)
136
+ - Format: `[domain].md`
137
+ - File handling behavior:
138
+ - If file does NOT exist: Create new file and number items starting from CHK001
139
+ - If file exists: Append new items to existing file, continuing from the last CHK ID (e.g., if last item is CHK015, start new items at CHK016)
140
+ - Never delete or replace existing checklist content - always preserve and append
141
+
142
+ **CORE PRINCIPLE - Test the Requirements, Not the Implementation**:
143
+ Every checklist item MUST evaluate the REQUIREMENTS THEMSELVES for:
144
+ - **Completeness**: Are all necessary requirements present?
145
+ - **Clarity**: Are requirements unambiguous and specific?
146
+ - **Consistency**: Do requirements align with each other?
147
+ - **Measurability**: Can requirements be objectively verified?
148
+ - **Coverage**: Are all scenarios/edge cases addressed?
149
+
150
+ **Category Structure** - Group items by requirement quality dimensions:
151
+ - **Requirement Completeness** (Are all necessary requirements documented?)
152
+ - **Requirement Clarity** (Are requirements specific and unambiguous?)
153
+ - **Requirement Consistency** (Do requirements align without conflicts?)
154
+ - **Acceptance Criteria Quality** (Are success criteria measurable?)
155
+ - **Scenario Coverage** (Are all flows/cases addressed?)
156
+ - **Edge Case Coverage** (Are boundary conditions defined?)
157
+ - **Non-Functional Requirements** (Performance, Security, Accessibility, etc. - are they specified?)
158
+ - **Dependencies & Assumptions** (Are they documented and validated?)
159
+ - **Ambiguities & Conflicts** (What needs clarification?)
160
+
161
+ **HOW TO WRITE CHECKLIST ITEMS - "Unit Tests for English"**:
162
+
163
+ ❌ **WRONG** (Testing implementation):
164
+ - "Verify landing page displays 3 episode cards"
165
+ - "Test hover states work on desktop"
166
+ - "Confirm logo click navigates home"
167
+
168
+ ✅ **CORRECT** (Testing requirements quality):
169
+ - "Are the exact number and layout of featured episodes specified?" [Completeness]
170
+ - "Is 'prominent display' quantified with specific sizing/positioning?" [Clarity]
171
+ - "Are hover state requirements consistent across all interactive elements?" [Consistency]
172
+ - "Are keyboard navigation requirements defined for all interactive UI?" [Coverage]
173
+ - "Is the fallback behavior specified when logo image fails to load?" [Edge Cases]
174
+ - "Are loading states defined for asynchronous episode data?" [Completeness]
175
+ - "Does the spec define visual hierarchy for competing UI elements?" [Clarity]
176
+
177
+ **ITEM STRUCTURE**:
178
+ Each item should follow this pattern:
179
+ - Question format asking about requirement quality
180
+ - Focus on what's WRITTEN (or not written) in the spec/plan
181
+ - Include quality dimension in brackets [Completeness/Clarity/Consistency/etc.]
182
+ - Reference spec section `[Spec §X.Y]` when checking existing requirements
183
+ - Use `[Gap]` marker when checking for missing requirements
184
+
185
+ **EXAMPLES BY QUALITY DIMENSION**:
186
+
187
+ Completeness:
188
+ - "Are error handling requirements defined for all API failure modes? [Gap]"
189
+ - "Are accessibility requirements specified for all interactive elements? [Completeness]"
190
+ - "Are mobile breakpoint requirements defined for responsive layouts? [Gap]"
191
+
192
+ Clarity:
193
+ - "Is 'fast loading' quantified with specific timing thresholds? [Clarity, Spec §NFR-2]"
194
+ - "Are 'related episodes' selection criteria explicitly defined? [Clarity, Spec §FR-5]"
195
+ - "Is 'prominent' defined with measurable visual properties? [Ambiguity, Spec §FR-4]"
196
+
197
+ Consistency:
198
+ - "Do navigation requirements align across all pages? [Consistency, Spec §FR-10]"
199
+ - "Are card component requirements consistent between landing and detail pages? [Consistency]"
200
+
201
+ Coverage:
202
+ - "Are requirements defined for zero-state scenarios (no episodes)? [Coverage, Edge Case]"
203
+ - "Are concurrent user interaction scenarios addressed? [Coverage, Gap]"
204
+ - "Are requirements specified for partial data loading failures? [Coverage, Exception Flow]"
205
+
206
+ Measurability:
207
+ - "Are visual hierarchy requirements measurable/testable? [Acceptance Criteria, Spec §FR-1]"
208
+ - "Can 'balanced visual weight' be objectively verified? [Measurability, Spec §FR-2]"
209
+
210
+ **Scenario Classification & Coverage** (Requirements Quality Focus):
211
+ - Check if requirements exist for: Primary, Alternate, Exception/Error, Recovery, Non-Functional scenarios
212
+ - For each scenario class, ask: "Are [scenario type] requirements complete, clear, and consistent?"
213
+ - If scenario class missing: "Are [scenario type] requirements intentionally excluded or missing? [Gap]"
214
+ - Include resilience/rollback when state mutation occurs: "Are rollback requirements defined for migration failures? [Gap]"
215
+
216
+ **Traceability Requirements**:
217
+ - MINIMUM: ≥80% of items MUST include at least one traceability reference
218
+ - Each item should reference: spec section `[Spec §X.Y]`, or use markers: `[Gap]`, `[Ambiguity]`, `[Conflict]`, `[Assumption]`
219
+ - If no ID system exists: "Is a requirement & acceptance criteria ID scheme established? [Traceability]"
220
+
221
+ **Surface & Resolve Issues** (Requirements Quality Problems):
222
+ Ask questions about the requirements themselves:
223
+ - Ambiguities: "Is the term 'fast' quantified with specific metrics? [Ambiguity, Spec §NFR-1]"
224
+ - Conflicts: "Do navigation requirements conflict between §FR-10 and §FR-10a? [Conflict]"
225
+ - Assumptions: "Is the assumption of 'always available podcast API' validated? [Assumption]"
226
+ - Dependencies: "Are external podcast API requirements documented? [Dependency, Gap]"
227
+ - Missing definitions: "Is 'visual hierarchy' defined with measurable criteria? [Gap]"
228
+
229
+ **Content Consolidation**:
230
+ - Soft cap: If raw candidate items > 40, prioritize by risk/impact
231
+ - Merge near-duplicates checking the same requirement aspect
232
+ - If >5 low-impact edge cases, create one item: "Are edge cases X, Y, Z addressed in requirements? [Coverage]"
233
+
234
+ **🚫 ABSOLUTELY PROHIBITED** - These make it an implementation test, not a requirements test:
235
+ - ❌ Any item starting with "Verify", "Test", "Confirm", "Check" + implementation behavior
236
+ - ❌ References to code execution, user actions, system behavior
237
+ - ❌ "Displays correctly", "works properly", "functions as expected"
238
+ - ❌ "Click", "navigate", "render", "load", "execute"
239
+ - ❌ Test cases, test plans, QA procedures
240
+ - ❌ Implementation details (frameworks, APIs, algorithms)
241
+
242
+ **✅ REQUIRED PATTERNS** - These test requirements quality:
243
+ - ✅ "Are [requirement type] defined/specified/documented for [scenario]?"
244
+ - ✅ "Is [vague term] quantified/clarified with specific criteria?"
245
+ - ✅ "Are requirements consistent between [section A] and [section B]?"
246
+ - ✅ "Can [requirement] be objectively measured/verified?"
247
+ - ✅ "Are [edge cases/scenarios] addressed in requirements?"
248
+ - ✅ "Does the spec define [missing aspect]?"
249
+
250
+ 7. **Structure Reference**: Generate the checklist following the canonical template in `.specify/templates/checklist-template.md` for title, meta section, category headings, and ID formatting. If template is unavailable, use: H1 title, purpose/created meta lines, `##` category sections containing `- [ ] CHK### <requirement item>` lines with globally incrementing IDs starting at CHK001.
251
+
252
+ 8. **Report**: Output full path to checklist file, item count, and summarize whether the run created a new file or appended to an existing one. Summarize:
253
+ - Focus areas selected
254
+ - Depth level
255
+ - Actor/timing
256
+ - Any explicit user-specified must-have items incorporated
257
+
258
+ **Important**: Each `/speckit-checklist` command invocation uses a short, descriptive checklist filename and either creates a new file or appends to an existing one. This allows:
259
+
260
+ - Multiple checklists of different types (e.g., `ux.md`, `test.md`, `security.md`)
261
+ - Simple, memorable filenames that indicate checklist purpose
262
+ - Easy identification and navigation in the `checklists/` folder
263
+
264
+ To avoid clutter, use descriptive types and clean up obsolete checklists when done.
265
+
266
+ ## Example Checklist Types & Sample Items
267
+
268
+ **UX Requirements Quality:** `ux.md`
269
+
270
+ Sample items (testing the requirements, NOT the implementation):
271
+
272
+ - "Are visual hierarchy requirements defined with measurable criteria? [Clarity, Spec §FR-1]"
273
+ - "Is the number and positioning of UI elements explicitly specified? [Completeness, Spec §FR-1]"
274
+ - "Are interaction state requirements (hover, focus, active) consistently defined? [Consistency]"
275
+ - "Are accessibility requirements specified for all interactive elements? [Coverage, Gap]"
276
+ - "Is fallback behavior defined when images fail to load? [Edge Case, Gap]"
277
+ - "Can 'prominent display' be objectively measured? [Measurability, Spec §FR-4]"
278
+
279
+ **API Requirements Quality:** `api.md`
280
+
281
+ Sample items:
282
+
283
+ - "Are error response formats specified for all failure scenarios? [Completeness]"
284
+ - "Are rate limiting requirements quantified with specific thresholds? [Clarity]"
285
+ - "Are authentication requirements consistent across all endpoints? [Consistency]"
286
+ - "Are retry/timeout requirements defined for external dependencies? [Coverage, Gap]"
287
+ - "Is versioning strategy documented in requirements? [Gap]"
288
+
289
+ **Performance Requirements Quality:** `performance.md`
290
+
291
+ Sample items:
292
+
293
+ - "Are performance requirements quantified with specific metrics? [Clarity]"
294
+ - "Are performance targets defined for all critical user journeys? [Coverage]"
295
+ - "Are performance requirements under different load conditions specified? [Completeness]"
296
+ - "Can performance requirements be objectively measured? [Measurability]"
297
+ - "Are degradation requirements defined for high-load scenarios? [Edge Case, Gap]"
298
+
299
+ **Security Requirements Quality:** `security.md`
300
+
301
+ Sample items:
302
+
303
+ - "Are authentication requirements specified for all protected resources? [Coverage]"
304
+ - "Are data protection requirements defined for sensitive information? [Completeness]"
305
+ - "Is the threat model documented and requirements aligned to it? [Traceability]"
306
+ - "Are security requirements consistent with compliance obligations? [Consistency]"
307
+ - "Are security failure/breach response requirements defined? [Gap, Exception Flow]"
308
+
309
+ ## Anti-Examples: What NOT To Do
310
+
311
+ **❌ WRONG - These test implementation, not requirements:**
312
+
313
+ ```markdown
314
+ - [ ] CHK001 - Verify landing page displays 3 episode cards [Spec §FR-001]
315
+ - [ ] CHK002 - Test hover states work correctly on desktop [Spec §FR-003]
316
+ - [ ] CHK003 - Confirm logo click navigates to home page [Spec §FR-010]
317
+ - [ ] CHK004 - Check that related episodes section shows 3-5 items [Spec §FR-005]
318
+ ```
319
+
320
+ **✅ CORRECT - These test requirements quality:**
321
+
322
+ ```markdown
323
+ - [ ] CHK001 - Are the number and layout of featured episodes explicitly specified? [Completeness, Spec §FR-001]
324
+ - [ ] CHK002 - Are hover state requirements consistently defined for all interactive elements? [Consistency, Spec §FR-003]
325
+ - [ ] CHK003 - Are navigation requirements clear for all clickable brand elements? [Clarity, Spec §FR-010]
326
+ - [ ] CHK004 - Is the selection criteria for related episodes documented? [Gap, Spec §FR-005]
327
+ - [ ] CHK005 - Are loading state requirements defined for asynchronous episode data? [Gap]
328
+ - [ ] CHK006 - Can "visual hierarchy" requirements be objectively measured? [Measurability, Spec §FR-001]
329
+ ```
330
+
331
+ **Key Differences:**
332
+
333
+ - Wrong: Tests if the system works correctly
334
+ - Correct: Tests if the requirements are written correctly
335
+ - Wrong: Verification of behavior
336
+ - Correct: Validation of requirement quality
337
+ - Wrong: "Does it do X?"
338
+ - Correct: "Is X clearly specified?"
339
+
340
+ ## Post-Execution Checks
341
+
342
+ **Check for extension hooks (after checklist generation)**:
343
+ Check if `.specify/extensions.yml` exists in the project root.
344
+ - If it exists, read it and look for entries under the `hooks.after_checklist` key
345
+ - If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
346
+ - Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.
347
+ - For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:
348
+ - If the hook has no `condition` field, or it is null/empty, treat the hook as executable
349
+ - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation
350
+ - When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.
351
+ - For each executable hook, output the following based on its `optional` flag:
352
+ - **Optional hook** (`optional: true`):
353
+ ```
354
+ ## Extension Hooks
355
+
356
+ **Optional Hook**: {extension}
357
+ Command: `/{command}`
358
+ Description: {description}
359
+
360
+ Prompt: {prompt}
361
+ To execute: `/{command}`
362
+ ```
363
+ - **Mandatory hook** (`optional: false`):
364
+ ```
365
+ ## Extension Hooks
366
+
367
+ **Automatic Hook**: {extension}
368
+ Executing: `/{command}`
369
+ EXECUTE_COMMAND: {command}
370
+ ```
371
+ - If no hooks are registered or `.specify/extensions.yml` does not exist, skip silently