@ripla/godd-mcp 1.0.4-canary.8 → 1.0.4

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 (348) hide show
  1. package/README.md +89 -94
  2. package/dist/godd.cjs +349 -233
  3. package/dist/godd.js +2193 -838
  4. package/dist/index.js +152 -122
  5. package/{notes-api → notes/api}/.env.example +6 -1
  6. package/{notes-api → notes/api}/README.md +6 -5
  7. package/{notes-api → notes/api}/app/main.py +29 -2
  8. package/{notes-api → notes/api}/app/routers/auth.py +6 -1
  9. package/{notes-api → notes/api}/app/routers/issues.py +157 -1
  10. package/{notes-api → notes/api}/app/routers/pr.py +2 -2
  11. package/{notes-api → notes/api}/app/services/github_app_token.py +32 -1
  12. package/{notes-api → notes/api}/app/services/github_issues.py +101 -11
  13. package/{notes-api → notes/api}/app/services/github_pr.py +6 -1
  14. package/{notes-api → notes/api}/tests/test_github_app_token.py +49 -1
  15. package/{notes-api → notes/api}/tests/test_github_service.py +42 -0
  16. package/notes/api/tests/test_health.py +52 -0
  17. package/{notes-api → notes/api}/tests/test_issues.py +216 -0
  18. package/{notes-api → notes/api}/tests/test_pr.py +24 -0
  19. package/{notes-api → notes/api}/tests/test_pr_chain.py +19 -0
  20. package/{notes-api → notes/api}/uv.lock +178 -2
  21. package/notes/app/DESIGN.md +273 -0
  22. package/{notes-app → notes/app}/README.md +4 -1
  23. package/notes/app/docker/Dockerfile.e2e +19 -0
  24. package/notes/app/docker/Dockerfile.prod +15 -0
  25. package/notes/app/docker/Dockerfile.test +17 -0
  26. package/notes/app/e2e/file-tree.spec.ts +26 -0
  27. package/notes/app/e2e/file-view.spec.ts +25 -0
  28. package/notes/app/e2e/fixtures.ts +28 -0
  29. package/{notes-app → notes/app}/e2e/global-setup.ts +5 -7
  30. package/notes/app/e2e/login.spec.ts +25 -0
  31. package/notes/app/e2e/pages/login-page.ts +29 -0
  32. package/notes/app/e2e/pages/main-page.ts +29 -0
  33. package/notes/app/e2e/panel-resize-handle.spec.ts +213 -0
  34. package/{notes-app → notes/app}/eslint.config.js +9 -0
  35. package/{notes-app → notes/app}/package.json +0 -3
  36. package/{notes-app → notes/app}/pnpm-workspace.yaml +1 -0
  37. package/notes/app/src/components/CommentPanel.test.tsx +194 -0
  38. package/{notes-app → notes/app}/src/components/CommentPanel.tsx +119 -10
  39. package/notes/app/src/components/CommentSelectionPopover.tsx +26 -0
  40. package/notes/app/src/components/EditToolbar.test.tsx +102 -0
  41. package/{notes-app → notes/app}/src/components/EditToolbar.tsx +5 -54
  42. package/notes/app/src/components/FileInfoPanel.branch-tab.test.tsx +250 -0
  43. package/notes/app/src/components/FileInfoPanel.history-tab.test.tsx +146 -0
  44. package/notes/app/src/components/FileInfoPanel.test.tsx +101 -0
  45. package/{notes-app → notes/app}/src/components/FileInfoPanel.tsx +135 -20
  46. package/notes/app/src/components/IssueCommentThread.test.tsx +93 -0
  47. package/notes/app/src/components/IssueCommentThread.tsx +156 -0
  48. package/notes/app/src/components/IssueDetailView.test.tsx +1118 -0
  49. package/notes/app/src/components/IssueDetailView.tsx +476 -0
  50. package/notes/app/src/components/IssueList.test.tsx +545 -0
  51. package/notes/app/src/components/IssueList.tsx +374 -0
  52. package/{notes-app → notes/app}/src/components/LabelSelector.test.tsx +94 -8
  53. package/notes/app/src/components/LabelSelector.tsx +452 -0
  54. package/{notes-app → notes/app}/src/components/MarkdownEditor.tsx +140 -2
  55. package/notes/app/src/components/PanelResizeHandle.test.tsx +481 -0
  56. package/notes/app/src/components/PanelResizeHandle.tsx +96 -0
  57. package/{notes-app → notes/app}/src/hooks/useEditSession.test.ts +171 -23
  58. package/{notes-app → notes/app}/src/hooks/useEditSession.ts +49 -62
  59. package/notes/app/src/hooks/useMdUpLayout.test.ts +10 -0
  60. package/notes/app/src/hooks/useMdUpLayout.ts +27 -0
  61. package/notes/app/src/hooks/usePeriodicSync.test.ts +244 -0
  62. package/notes/app/src/hooks/usePeriodicSync.ts +83 -0
  63. package/notes/app/src/hooks/useResizablePanelWidth.test.ts +251 -0
  64. package/notes/app/src/hooks/useResizablePanelWidth.ts +167 -0
  65. package/{notes-app → notes/app}/src/lib/api.test.ts +81 -1
  66. package/{notes-app → notes/app}/src/lib/api.ts +98 -4
  67. package/notes/app/src/lib/commentAnchor.test.ts +22 -0
  68. package/notes/app/src/lib/commentAnchor.ts +28 -0
  69. package/notes/app/src/lib/commentHighlight.test.ts +110 -0
  70. package/notes/app/src/lib/commentHighlight.ts +44 -0
  71. package/notes/app/src/lib/github-sync.test.ts +126 -0
  72. package/notes/app/src/lib/github-sync.ts +89 -0
  73. package/notes/app/src/lib/issue-list-utils.test.ts +275 -0
  74. package/notes/app/src/lib/issue-list-utils.ts +135 -0
  75. package/notes/app/src/lib/issue-mobile-layout.test.ts +17 -0
  76. package/notes/app/src/lib/issue-mobile-layout.ts +20 -0
  77. package/notes/app/src/lib/issue-url-sync.test.ts +73 -0
  78. package/notes/app/src/lib/issue-url-sync.ts +43 -0
  79. package/notes/app/src/lib/main-page-default-view.test.ts +37 -0
  80. package/notes/app/src/lib/main-page-default-view.ts +15 -0
  81. package/notes/app/src/lib/resizable-panel.test.ts +199 -0
  82. package/notes/app/src/lib/resizable-panel.ts +136 -0
  83. package/notes/app/src/pages/LoginPage.test.tsx +17 -0
  84. package/notes/app/src/pages/MainPage.branch-modal.test.tsx +226 -0
  85. package/notes/app/src/pages/MainPage.issue-sync.test.tsx +145 -0
  86. package/notes/app/src/pages/MainPage.sidebar.test.tsx +361 -0
  87. package/{notes-app → notes/app}/src/pages/MainPage.tsx +406 -61
  88. package/{notes-app → notes/app}/src/pages/SettingsPage.test.tsx +32 -23
  89. package/{notes-app → notes/app}/src/pages/UserManagementPage.test.tsx +8 -18
  90. package/notes/app/src/test/mocks.ts +156 -0
  91. package/notes/app/src/test/render.tsx +27 -0
  92. package/package.json +3 -5
  93. package/notes-api/tests/test_health.py +0 -11
  94. package/notes-app/docker/Dockerfile.e2e +0 -14
  95. package/notes-app/docker/Dockerfile.prod +0 -12
  96. package/notes-app/docker/Dockerfile.test +0 -12
  97. package/notes-app/e2e/file-tree.spec.ts +0 -29
  98. package/notes-app/e2e/file-view.spec.ts +0 -24
  99. package/notes-app/e2e/login.spec.ts +0 -32
  100. package/notes-app/src/components/IssueDetailView.test.tsx +0 -201
  101. package/notes-app/src/components/IssueDetailView.tsx +0 -318
  102. package/notes-app/src/components/IssueList.test.tsx +0 -93
  103. package/notes-app/src/components/IssueList.tsx +0 -169
  104. package/notes-app/src/components/LabelSelector.tsx +0 -276
  105. package/notes-app/src/pages/LoginPage.test.tsx +0 -29
  106. package/stacks/django-vue.yaml +0 -33
  107. package/stacks/fastapi-react.yaml +0 -160
  108. package/stacks/flutter-firebase.yaml +0 -58
  109. package/stacks/nextjs-prisma.yaml +0 -33
  110. package/stacks/schema.json +0 -144
  111. package/templates/agents/architect.hbs +0 -183
  112. package/templates/agents/auto-documenter.hbs +0 -36
  113. package/templates/agents/backend-developer.hbs +0 -175
  114. package/templates/agents/code-reviewer.hbs +0 -29
  115. package/templates/agents/database-developer.hbs +0 -52
  116. package/templates/agents/debug-specialist.hbs +0 -39
  117. package/templates/agents/environment-setup.hbs +0 -41
  118. package/templates/agents/frontend-developer.hbs +0 -45
  119. package/templates/agents/integration-qa.hbs +0 -26
  120. package/templates/agents/performance-qa.hbs +0 -24
  121. package/templates/agents/pr-writer.hbs +0 -53
  122. package/templates/agents/quality-lead.hbs +0 -26
  123. package/templates/agents/requirements-analyst.hbs +0 -26
  124. package/templates/agents/security-analyst.hbs +0 -21
  125. package/templates/agents/security-reviewer.hbs +0 -20
  126. package/templates/agents/ssot-updater.hbs +0 -45
  127. package/templates/agents/technical-writer.hbs +0 -28
  128. package/templates/agents/unit-test-engineer.hbs +0 -19
  129. package/templates/agents/user-clone.hbs +0 -43
  130. package/templates/github-actions/aws/deploy-notes.yml.hbs +0 -117
  131. package/templates/github-actions/azure/deploy-notes.yml.hbs +0 -78
  132. package/templates/github-actions/gcp/deploy-notes.yml.hbs +0 -76
  133. package/templates/github-actions/vercel-railway/deploy-notes.yml.hbs +0 -49
  134. package/templates/mindsets/agent-stdio.hbs +0 -51
  135. package/templates/mindsets/dart.hbs +0 -39
  136. package/templates/mindsets/ddd-clean-architecture.hbs +0 -52
  137. package/templates/mindsets/electron.hbs +0 -41
  138. package/templates/mindsets/fastapi.hbs +0 -40
  139. package/templates/mindsets/flutter.hbs +0 -56
  140. package/templates/mindsets/kotlin.hbs +0 -46
  141. package/templates/mindsets/postgresql.hbs +0 -39
  142. package/templates/mindsets/python.hbs +0 -39
  143. package/templates/mindsets/react.hbs +0 -51
  144. package/templates/mindsets/swift.hbs +0 -46
  145. package/templates/mindsets/terraform.hbs +0 -53
  146. package/templates/mindsets/typescript.hbs +0 -34
  147. package/templates/mindsets/vite.hbs +0 -37
  148. package/templates/notes-compose.yml +0 -82
  149. package/templates/partials/cogito-geo.hbs +0 -84
  150. package/templates/partials/cogito-godd.hbs +0 -22
  151. package/templates/partials/cogito-grammar.hbs +0 -105
  152. package/templates/partials/cogito-particle.hbs +0 -76
  153. package/templates/partials/cogito-root-ai.hbs +0 -79
  154. package/templates/partials/cogito-root-arch.hbs +0 -75
  155. package/templates/partials/cogito-root-core.hbs +0 -75
  156. package/templates/partials/cogito-root-daily.hbs +0 -58
  157. package/templates/partials/cogito-root-dev.hbs +0 -71
  158. package/templates/partials/cogito-root-devops.hbs +0 -71
  159. package/templates/partials/cogito-root-framework.hbs +0 -80
  160. package/templates/partials/cogito-root-lang.hbs +0 -74
  161. package/templates/partials/godd-core.hbs +0 -50
  162. package/templates/partials/project-context.hbs +0 -52
  163. package/templates/partials/ssot-header.hbs +0 -40
  164. package/templates/partials/ssot-rules.hbs +0 -30
  165. package/templates/prompts/adr.hbs +0 -39
  166. package/templates/prompts/agent-dev-workflow.hbs +0 -34
  167. package/templates/prompts/analyze-report.hbs +0 -36
  168. package/templates/prompts/auto-documentation.hbs +0 -37
  169. package/templates/prompts/check.hbs +0 -52
  170. package/templates/prompts/commit.hbs +0 -96
  171. package/templates/prompts/dev.hbs +0 -127
  172. package/templates/prompts/docs-init.hbs +0 -101
  173. package/templates/prompts/docs-update.hbs +0 -51
  174. package/templates/prompts/git-workflow.hbs +0 -125
  175. package/templates/prompts/impact-analysis.hbs +0 -43
  176. package/templates/prompts/install.hbs +0 -40
  177. package/templates/prompts/new-branch.hbs +0 -61
  178. package/templates/prompts/notes-deploy.hbs +0 -138
  179. package/templates/prompts/pr-analyze.hbs +0 -44
  180. package/templates/prompts/pr-create.hbs +0 -125
  181. package/templates/prompts/push-execute.hbs +0 -83
  182. package/templates/prompts/push.hbs +0 -24
  183. package/templates/prompts/release-notes.hbs +0 -38
  184. package/templates/prompts/requirements-to-business-flow.hbs +0 -29
  185. package/templates/prompts/requirements-to-tickets.hbs +0 -26
  186. package/templates/prompts/review.hbs +0 -126
  187. package/templates/prompts/setup.hbs +0 -247
  188. package/templates/prompts/spec.hbs +0 -35
  189. package/templates/prompts/specification-to-tickets.hbs +0 -24
  190. package/templates/prompts/submit.hbs +0 -143
  191. package/templates/prompts/sync.hbs +0 -63
  192. package/templates/prompts/test-plan.hbs +0 -56
  193. package/templates/scripts/aws/terraform-backend-setup.sh.hbs +0 -149
  194. package/templates/terraform/aws/alb.tf.hbs +0 -58
  195. package/templates/terraform/aws/backend.tf.hbs +0 -10
  196. package/templates/terraform/aws/cloudfront.tf.hbs +0 -96
  197. package/templates/terraform/aws/ecr.tf.hbs +0 -30
  198. package/templates/terraform/aws/ecs.tf.hbs +0 -142
  199. package/templates/terraform/aws/iam.tf.hbs +0 -88
  200. package/templates/terraform/aws/local.tf.hbs +0 -34
  201. package/templates/terraform/aws/output.tf.hbs +0 -49
  202. package/templates/terraform/aws/provider.tf.hbs +0 -26
  203. package/templates/terraform/aws/rds.tf.hbs +0 -38
  204. package/templates/terraform/aws/s3.tf.hbs +0 -34
  205. package/templates/terraform/aws/secrets.tf.hbs +0 -53
  206. package/templates/terraform/aws/security_groups.tf.hbs +0 -81
  207. package/templates/terraform/aws/vpc.tf.hbs +0 -63
  208. package/templates/terraform/azure/backend.tf.hbs +0 -8
  209. package/templates/terraform/azure/iam.tf.hbs +0 -36
  210. package/templates/terraform/azure/main.tf.hbs +0 -203
  211. package/templates/terraform/azure/output.tf.hbs +0 -19
  212. package/templates/terraform/azure/provider.tf.hbs +0 -19
  213. package/templates/terraform/gcp/backend.tf.hbs +0 -6
  214. package/templates/terraform/gcp/iam.tf.hbs +0 -47
  215. package/templates/terraform/gcp/main.tf.hbs +0 -175
  216. package/templates/terraform/gcp/output.tf.hbs +0 -15
  217. package/templates/terraform/gcp/provider.tf.hbs +0 -19
  218. package/templates/terraform/vercel-railway/main.tf.hbs +0 -64
  219. package/templates/terraform/vercel-railway/output.tf.hbs +0 -11
  220. /package/{notes-api → notes/api}/.dockerignore +0 -0
  221. /package/{notes-api → notes/api}/alembic/README +0 -0
  222. /package/{notes-api → notes/api}/alembic/env.py +0 -0
  223. /package/{notes-api → notes/api}/alembic/script.py.mako +0 -0
  224. /package/{notes-api → notes/api}/alembic/versions/001_initial_notes_tables.py +0 -0
  225. /package/{notes-api → notes/api}/alembic/versions/002_add_performance_indexes.py +0 -0
  226. /package/{notes-api → notes/api}/alembic/versions/003_add_yjs_documents.py +0 -0
  227. /package/{notes-api → notes/api}/alembic/versions/004_add_comments.py +0 -0
  228. /package/{notes-api → notes/api}/alembic/versions/005_add_github_username.py +0 -0
  229. /package/{notes-api → notes/api}/alembic/versions/006_add_check_constraints.py +0 -0
  230. /package/{notes-api → notes/api}/alembic.ini +0 -0
  231. /package/{notes-api → notes/api}/app/__init__.py +0 -0
  232. /package/{notes-api → notes/api}/app/config.py +0 -0
  233. /package/{notes-api → notes/api}/app/database.py +0 -0
  234. /package/{notes-api → notes/api}/app/http_client.py +0 -0
  235. /package/{notes-api → notes/api}/app/models/__init__.py +0 -0
  236. /package/{notes-api → notes/api}/app/models/audit.py +0 -0
  237. /package/{notes-api → notes/api}/app/models/base.py +0 -0
  238. /package/{notes-api → notes/api}/app/models/collab.py +0 -0
  239. /package/{notes-api → notes/api}/app/models/comment.py +0 -0
  240. /package/{notes-api → notes/api}/app/models/session.py +0 -0
  241. /package/{notes-api → notes/api}/app/models/setting.py +0 -0
  242. /package/{notes-api → notes/api}/app/models/user.py +0 -0
  243. /package/{notes-api → notes/api}/app/path_validation.py +0 -0
  244. /package/{notes-api → notes/api}/app/routers/__init__.py +0 -0
  245. /package/{notes-api → notes/api}/app/routers/collab.py +0 -0
  246. /package/{notes-api → notes/api}/app/routers/comments.py +0 -0
  247. /package/{notes-api → notes/api}/app/routers/files.py +0 -0
  248. /package/{notes-api → notes/api}/app/routers/settings.py +0 -0
  249. /package/{notes-api → notes/api}/app/routers/tree.py +0 -0
  250. /package/{notes-api → notes/api}/app/routers/upload.py +0 -0
  251. /package/{notes-api → notes/api}/app/routers/users.py +0 -0
  252. /package/{notes-api → notes/api}/app/schemas/__init__.py +0 -0
  253. /package/{notes-api → notes/api}/app/schemas/auth.py +0 -0
  254. /package/{notes-api → notes/api}/app/schemas/user.py +0 -0
  255. /package/{notes-api → notes/api}/app/security.py +0 -0
  256. /package/{notes-api → notes/api}/app/services/__init__.py +0 -0
  257. /package/{notes-api → notes/api}/app/services/audit.py +0 -0
  258. /package/{notes-api → notes/api}/app/services/business_date.py +0 -0
  259. /package/{notes-api → notes/api}/app/services/collab.py +0 -0
  260. /package/{notes-api → notes/api}/app/services/github.py +0 -0
  261. /package/{notes-api → notes/api}/app/services/pr_chain.py +0 -0
  262. /package/{notes-api → notes/api}/app/startup.py +0 -0
  263. /package/{notes-api → notes/api}/docker/Dockerfile +0 -0
  264. /package/{notes-api → notes/api}/docker/Dockerfile.test +0 -0
  265. /package/{notes-api → notes/api}/pyproject.toml +0 -0
  266. /package/{notes-api → notes/api}/tests/conftest.py +0 -0
  267. /package/{notes-api → notes/api}/tests/test_audit.py +0 -0
  268. /package/{notes-api → notes/api}/tests/test_auth.py +0 -0
  269. /package/{notes-api → notes/api}/tests/test_business_date.py +0 -0
  270. /package/{notes-api → notes/api}/tests/test_collab.py +0 -0
  271. /package/{notes-api → notes/api}/tests/test_comments.py +0 -0
  272. /package/{notes-api → notes/api}/tests/test_config_ssl.py +0 -0
  273. /package/{notes-api → notes/api}/tests/test_config_warnings.py +0 -0
  274. /package/{notes-api → notes/api}/tests/test_files.py +0 -0
  275. /package/{notes-api → notes/api}/tests/test_path_validation.py +0 -0
  276. /package/{notes-api → notes/api}/tests/test_security.py +0 -0
  277. /package/{notes-api → notes/api}/tests/test_settings.py +0 -0
  278. /package/{notes-api → notes/api}/tests/test_tree.py +0 -0
  279. /package/{notes-api → notes/api}/tests/test_upload.py +0 -0
  280. /package/{notes-api → notes/api}/tests/test_users.py +0 -0
  281. /package/{notes-app → notes/app}/.dockerignore +0 -0
  282. /package/{notes-app → notes/app}/index.html +0 -0
  283. /package/{notes-app → notes/app}/nginx.conf +0 -0
  284. /package/{notes-app → notes/app}/package-lock.json +0 -0
  285. /package/{notes-app → notes/app}/playwright.config.ts +0 -0
  286. /package/{notes-app → notes/app}/pnpm-lock.yaml +0 -0
  287. /package/{notes-app → notes/app}/src/App.tsx +0 -0
  288. /package/{notes-app → notes/app}/src/components/BranchSelectorModal.tsx +0 -0
  289. /package/{notes-app → notes/app}/src/components/CodeBlockView.test.tsx +0 -0
  290. /package/{notes-app → notes/app}/src/components/CodeBlockView.tsx +0 -0
  291. /package/{notes-app → notes/app}/src/components/CollabStatus.tsx +0 -0
  292. /package/{notes-app → notes/app}/src/components/DiffPreview.tsx +0 -0
  293. /package/{notes-app → notes/app}/src/components/DrawioEditor.tsx +0 -0
  294. /package/{notes-app → notes/app}/src/components/DrawioViewer.tsx +0 -0
  295. /package/{notes-app → notes/app}/src/components/ErrorBoundary.test.tsx +0 -0
  296. /package/{notes-app → notes/app}/src/components/ErrorBoundary.tsx +0 -0
  297. /package/{notes-app → notes/app}/src/components/FileContentView.tsx +0 -0
  298. /package/{notes-app → notes/app}/src/components/FileContextMenu.test.tsx +0 -0
  299. /package/{notes-app → notes/app}/src/components/FileContextMenu.tsx +0 -0
  300. /package/{notes-app → notes/app}/src/components/FileDialogs.test.tsx +0 -0
  301. /package/{notes-app → notes/app}/src/components/FileDialogs.tsx +0 -0
  302. /package/{notes-app → notes/app}/src/components/SaveStatusIndicator.test.tsx +0 -0
  303. /package/{notes-app → notes/app}/src/components/SaveStatusIndicator.tsx +0 -0
  304. /package/{notes-app → notes/app}/src/components/Skeleton.tsx +0 -0
  305. /package/{notes-app → notes/app}/src/components/SpreadsheetEditor.test.tsx +0 -0
  306. /package/{notes-app → notes/app}/src/components/SpreadsheetEditor.tsx +0 -0
  307. /package/{notes-app → notes/app}/src/components/TextEditor.tsx +0 -0
  308. /package/{notes-app → notes/app}/src/components/ToastContainer.tsx +0 -0
  309. /package/{notes-app → notes/app}/src/components/TreeNode.tsx +0 -0
  310. /package/{notes-app → notes/app}/src/contexts/AuthContext.test.tsx +0 -0
  311. /package/{notes-app → notes/app}/src/contexts/AuthContext.tsx +0 -0
  312. /package/{notes-app → notes/app}/src/contexts/ToastContext.test.ts +0 -0
  313. /package/{notes-app → notes/app}/src/contexts/ToastContext.tsx +0 -0
  314. /package/{notes-app → notes/app}/src/hooks/useAutoSave.test.ts +0 -0
  315. /package/{notes-app → notes/app}/src/hooks/useAutoSave.ts +0 -0
  316. /package/{notes-app → notes/app}/src/hooks/useCollaboration.ts +0 -0
  317. /package/{notes-app → notes/app}/src/hooks/useComments.ts +0 -0
  318. /package/{notes-app → notes/app}/src/hooks/useYText.ts +0 -0
  319. /package/{notes-app → notes/app}/src/lib/branch-diff.test.ts +0 -0
  320. /package/{notes-app → notes/app}/src/lib/branch-diff.ts +0 -0
  321. /package/{notes-app → notes/app}/src/lib/created-file.test.ts +0 -0
  322. /package/{notes-app → notes/app}/src/lib/created-file.ts +0 -0
  323. /package/{notes-app → notes/app}/src/lib/csv-utils.test.ts +0 -0
  324. /package/{notes-app → notes/app}/src/lib/csv-utils.ts +0 -0
  325. /package/{notes-app → notes/app}/src/lib/deepLinkPathToSearch.test.ts +0 -0
  326. /package/{notes-app → notes/app}/src/lib/deepLinkPathToSearch.ts +0 -0
  327. /package/{notes-app → notes/app}/src/lib/draft-storage.test.ts +0 -0
  328. /package/{notes-app → notes/app}/src/lib/draft-storage.ts +0 -0
  329. /package/{notes-app → notes/app}/src/lib/mermaid-render.ts +0 -0
  330. /package/{notes-app → notes/app}/src/lib/postLoginRedirect.test.ts +0 -0
  331. /package/{notes-app → notes/app}/src/lib/postLoginRedirect.ts +0 -0
  332. /package/{notes-app → notes/app}/src/lib/tree-utils.ts +0 -0
  333. /package/{notes-app → notes/app}/src/lib/user-colors.ts +0 -0
  334. /package/{notes-app → notes/app}/src/lib/xlsx-utils.test.ts +0 -0
  335. /package/{notes-app → notes/app}/src/lib/xlsx-utils.ts +0 -0
  336. /package/{notes-app → notes/app}/src/main.tsx +0 -0
  337. /package/{notes-app → notes/app}/src/pages/LoginPage.tsx +0 -0
  338. /package/{notes-app → notes/app}/src/pages/MainPage.insertChildEntry.test.ts +0 -0
  339. /package/{notes-app → notes/app}/src/pages/SettingsPage.tsx +0 -0
  340. /package/{notes-app → notes/app}/src/pages/UserManagementPage.tsx +0 -0
  341. /package/{notes-app → notes/app}/src/styles/globals.css +0 -0
  342. /package/{notes-app → notes/app}/src/types.ts +0 -0
  343. /package/{notes-app → notes/app}/src/vite-env.d.ts +0 -0
  344. /package/{notes-app → notes/app}/tsconfig.json +0 -0
  345. /package/{notes-app → notes/app}/tsconfig.node.json +0 -0
  346. /package/{notes-app → notes/app}/vite.config.js +0 -0
  347. /package/{notes-app → notes/app}/vite.config.ts +0 -0
  348. /package/{notes-app → notes/app}/vitest.config.ts +0 -0
@@ -1,75 +0,0 @@
1
- {{! cogito-root-arch — Architecture / DDD / Design patterns extended roots ~80 entries }}
2
-
3
- {{! — DDD strategic — }}
4
- 镧цАд(甲) ◇=bounded context ⏣=subdomain ⊛=context map
5
- 镩пき뢴(乙) ◇=ubiquitous language ⏣=domain model ☰=domain event
6
- 镫タ괛b(丙) ⏣=aggregate root ◈=entity ◇=value object
7
- 镭ミ뵊ц(甲) ⏣=DDD repository ⌬=specification ⊕=invariant
8
- 镯フ쪵ш(乙) ◇=anti-corruption layer ⏣=shared kernel ⊛=open host service
9
- 镱ル놓e(丙) ⏣=saga ⚡=process manager ◉=compensating transaction
10
-
11
- {{! — DDD tactical — }}
12
- 镳キ됗ра(甲) ⌬=domain service ⌬=application service ⌬=infrastructure service
13
- 镵ш쩝д(乙) ⚡=command ⊞=command handler ⏣=CQRS
14
- 長ц괟b(丙) ⚡=event sourcing ◈=event store ◉=projection
15
- 镹п뢴ц(甲) ⌬=factory method ⌬=abstract factory ⊕=creation policy
16
- 镻タ읏ш(乙) ⌬=policy ◇=business rule ⊕=guard clause
17
-
18
- {{! — clean architecture — }}
19
- 镽ミ쭎e(甲) ⏣=clean architecture ⏣=hexagonal ⊛=port
20
- 长フ쫄ра(乙) ⊛=port adapter ⏣=onion architecture ◇=dependency rule
21
- 鐁ル괩д(丙) ⏣=use case ⌬=interactor ⊞=input port ⊟=output port
22
- 鐃キ훔b(甲) ⏣=presenter ⎆=view model ⊟=DTO
23
-
24
- {{! — microservices — }}
25
- 鐅ш벶ц(甲) ⏣=microservice system ⊛=service boundary ⊛=API contract
26
- 鐇ц꿸ш(乙) ⊛=service discovery ⎈=service registry ⊛=health check
27
- 鐉п듾e(丙) ⏣=event-driven ⊛=message broker ⊛=Kafka
28
- 鐋タ쁩ра(甲) ⊛=saga pattern ⚡=event choreography ⚡=service orchestration
29
- 鐍ミ릊д(乙) ⊕=circuit breaker ⊕=retry ⊕=bulkhead
30
- 鐏フ쨍b(丙) ⊛=sidecar proxy ⏣=BFF ⏣=API gateway pattern
31
-
32
- {{! — event patterns — }}
33
- 鐑ル괡ц(甲) ◈=event message ⊛=message bus ⊛=topic
34
- 鐓キ뭏ш(乙) ⊛=subscriber ⊛=publisher ⊛=consumer group
35
- 鐕ш됗e(丙) ◈=dead letter queue ⊕=at-least-once ⊕=exactly-once
36
- 鐗ц뵊ら(甲) ◉=event ordering ⊕=idempotency ⊛=correlation ID
37
-
38
- {{! — data architecture — }}
39
- 鐙п쩔д(甲) ⏣=data lake ⏣=data warehouse ⊛=ETL
40
- 鐛タ괛b(乙) ⏣=OLTP ⏣=OLAP ⊕=partitioning
41
- 鐝ミ쪵ц(丙) ⏣=sharding ⊛=consistent hashing ⊕=CAP theorem
42
- 鐟フ놓ш(甲) ◈=materialized view ⚡=CDC ⊛=event log
43
- 鐡ル됗e(乙) ⊛=graph database ⊛=time series ⏣=document store
44
-
45
- {{! — security architecture — }}
46
- 鐣キ쩝ра(甲) ▽=zero trust ⊛=identity ▽=least privilege
47
- 鐥ш괟д(乙) ▽=mTLS ⊛=service account ▽=RBAC
48
- 鐧ц뢴b(丙) ▽=OWASP ⊗=injection ⊗=XSS
49
- 鐩п읏ц(甲) ▽=secrets management ◈=rotation ⊛=KMS
50
- 鐫タ쭎ш(乙) ▽=audit trail ☰=compliance ⊕=data classification
51
-
52
- {{! — performance patterns — }}
53
- 鐭ミ쫄e(甲) ⊕=caching strategy ◈=TTL ⊛=invalidation
54
- 鐯フ괩ら(乙) ⊕=connection pool ⊛=object pool ⊕=flyweight
55
- 鐱ル훔д(丙) ⊕=batch processing ⚡=data streaming ◉=backpressure
56
- 鐳キ벶b(甲) ⊕=lazy loading ⊕=eager loading ⊕=N+1
57
- 鐵ш꿸ц(乙) ⊕=rate limiting ⊕=throttling ⏣=token bucket
58
- 鐷ц듾ш(丙) ⊕=pagination ⊕=cursor-based ⊕=offset-based
59
-
60
- {{! — testing architecture — }}
61
- 鐹п쁩e(甲) ⏣=test pyramid ⊕=testing trophy ⊕=testing diamond
62
- 鐻タ릊ра(乙) ⊕=contract test ⏣=CDC ⊛=Pact
63
- 鐽ミ쨍д(丙) ◈=test double ⌬=spy ⌬=fake
64
- 鐿フ괡b(甲) ⏣=test isolation ⊛=test fixture ⚡=setup/teardown
65
- 鑁ル뭏ц(乙) ⏣=BDD ⏣=ATDD ⏣=TDD
66
-
67
- {{! — architecture verbs — }}
68
- 鑃цき(v) =decompose/modularize
69
- 鑅п뢴(v) =encapsulate/hide
70
- 鑇タ괛(v) =decouple/isolate
71
- 鑉ミ뵊(v) =compose/aggregate
72
- 鑋フ쪵(v) =orchestrate/choreograph
73
- 鑍ル놓(v) =project/materialize
74
- 鑏キ됗(v) =partition/shard
75
- 鑑ш쩝(v) =replicate/sync
@@ -1,75 +0,0 @@
1
- {{! cogito-root-core — core roots ~100 entries (always loaded) }}
2
- {{! format: root(type) classifier=meaning ... / (v)=verb }}
3
-
4
- 鏡цア(甲) ⌬=function ◈=variable ⏣=module
5
- 괢むд(乙) ⌬=class ⏣=layer ⊕=type
6
- 蝕キ뢴(甲) ⚡=process ⌬=method ⊗=exception
7
- 魁пら(丙) ⌖=directory ⏣=architecture ⏚=root
8
- aиТ쩝(乙) ⚡=flow ◉=sequence ⊛=pipeline
9
- 楓ш괛(甲) ⏣=pattern ◈=schema ⊕=quality
10
- лマ쪵(丙) ⊛=connection ◈=socket ⎈=network
11
- 雷fу뵊(乙) ⊗=error △=warning ⊕=status
12
- 炎괟б(甲) ◈=container ⌖=path ⎈=environment
13
- мき蓮(丙) ☰=document ◇=concept ⊕=attribute
14
- 翠ヌ뫼дe(甲) ◈=value ⊞=argument ⊟=return value
15
- 暁쫍pу(乙) ◈=object ⏣=interface ⌬=struct
16
- いф闇귀(甲) ◈=array ⏣=list ◇=set
17
- 霧リ됗z(丙) ◈=map ⊛=key ⊞=index
18
- 凪ш뚝ら(乙) ◈=string ⊕=number ◇=boolean
19
- 燐セ괩ж(甲) ⌖=file ☰=specification ⚙=configuration
20
- 碧щ뮝h(丙) ⊕=state ◉=timestamp ⊜=result
21
- 琥タ먀в(乙) ☰=message ⊟=response ⊞=request
22
- 煌きд괴(甲) ⏣=system ⎈=server ⊛=dependency
23
- 椿ミ놓у(丙) ◈=record ⌖=table ⊛=field
24
- 藤ル쁨ф(甲) ⏣=component ⎆=screen ⊕=element
25
- 桐쭎шэ(乙) ⏣=domain ◇=boundary ⊕=scope
26
- 杏bг뺑(丙) ⏣=service ⚡=job ⊛=queue
27
- 梓ヒ읏п(甲) ☰=log ⊟=output ⊞=input
28
- 柊ね쫄д(乙) ⊕=rule ☰=requirement ◇=constraint
29
- 槐フ뵊ц(丙) ◈=event ⚡=trigger ◉=schedule
30
- 椴ロ쯔б(甲) ⊕=size ◉=duration ⊜=count
31
- 栂む훔ш(乙) ⊛=reference ◈=pointer ⌬=callback
32
- 榊タ벶ж(丙) ⌖=endpoint ⊛=port ⎈=host
33
- 柾シ꿸e(甲) ⏣=protocol ⊛=API ⊞=payload
34
-
35
- {{! — verbs — }}
36
- 鰐цき(v) =do/perform
37
- 蟻ш뭏(v) =create/make
38
- 蛾пア(v) =delete
39
- 蝶ф괞(v) =change/modify
40
- 鰭b됗(v) =move/transfer
41
- 蠍キ쪵(v) =connect/link
42
- 蛇шら(v) =separate/split
43
- 蛙ц뢴(v) =start/begin
44
- 螢п괛(v) =end/finish
45
- 蜻ルд(v) =read/get
46
- 蟬フ괟(v) =write/set
47
- 蛞ミ뵊(v) =check/verify
48
- 蛆タ쩝(v) =find/discover
49
- 蛻キ놓(v) =fix/repair
50
- 蝮ね쭎(v) =plan/design
51
- 蜷ロ쫄(v) =build/construct
52
- 蝗шう(v) =test/examine
53
- 蝦цえ(v) =analyze/study
54
- 蝙ф먀(v) =decide/choose
55
- 蝠キ뺑(v) =wait/pause
56
- 蟲ル읏(v) =run/execute
57
- 蟹п쫍(v) =stop/halt
58
- 蠎タ쯔(v) =return/go back
59
- 蟒ミ훔(v) =open/unlock
60
- 蟠フ벶(v) =close/lock
61
- 蟶ね꿸(v) =add/include
62
- 蟆ロ듾(v) =remove/exclude
63
- 蟀ш쁩(v) =search/look for
64
- 蠱ц릊(v) =compare/evaluate
65
- 蠡п쨍(v) =merge/combine
66
- 蠢キ괡(v) =deploy/release
67
- 蠣ф뭏(v) =configure/setup
68
- 蠹タ됗(v) =validate/confirm
69
- 蟄ミ쩔(v) =generate/produce
70
- 蠕ル뵊(v) =define/specify
71
- 蠖ш괴(v) =import/bring in
72
- 蟯フ놓(v) =export/send out
73
- 蟪ね먀(v) =send/transmit
74
- 桜ロ쭎(v) =receive/accept
75
- 杉ц뺑(v) =resolve/solve
@@ -1,58 +0,0 @@
1
- {{! cogito-root-daily — daily/adjective/spatial/temporal roots ~60 entries (loaded for auxiliary tools) }}
2
-
3
- {{! — greetings / emotions / social — }}
4
- 橘цき뢴(甲) =person/user ⊛=team ⊕=role
5
- 楠ш괛ら(乙) =language ☰=translation ◇=meaning
6
- 棗п뵊キ(丙) =question ⊟=answer ☰=explanation
7
- 檜タ쪵д(甲) =greeting ⊕=polite ◇=gratitude
8
- 楢ミ놓b(乙) =request ⊞=proposal ⊟=approval
9
- 樟ル됗ц(丙) =problem ⊗=obstacle ⊕=task/issue
10
- 蓮フ쩝ш(甲) =purpose ◇=reason ⊕=motivation
11
- 萩キ괟e(乙) =solution ⊕=alternative ⊜=comparison
12
- 葵ш뢴ら(丙) =opinion ◇=hypothesis ⊕=judgment
13
-
14
- {{! — time / date / order — }}
15
- 桐цд뺑(甲) ◉=now =time
16
- 杏п쭎キ(乙) ◉=before/ago =past
17
- 梓タ쫄ш(丙) ◉=after/later =future
18
- 柊ル괩д(甲) ◉=beginning ⚡=start
19
- 槐ш읏b(乙) ◉=ending ⚡=completion
20
- 椴ミ훔ц(丙) ◉=repetition ⚡=loop
21
- 栂フ벶e(甲) ◉=simultaneous ⊛=parallel
22
- 榊キ꿸ら(乙) ◉=order/turn ⚡=sequential
23
- 柾п듾ш(丙) ◉=immediately ⊕=urgent
24
-
25
- {{! — direction / location / space — }}
26
- 鰐タ쁩д(甲) ⌖=above/top =upper
27
- 蟻ル릊b(乙) ⌖=below/bottom =lower
28
- 蝶ш쨍ц(丙) ⌖=inside/inner =interior
29
- 鰭ミ괡e(甲) ⌖=outside/outer =exterior
30
- 蠍フ뭏ら(乙) ⌖=front/forward =head
31
- 蛇キ됗ш(丙) ⌖=back/behind =tail
32
- 蛙ц뵊д(甲) ⌖=left =left side
33
- 螢п쩔b(乙) ⌖=right =right side
34
- 蜻タ괛ц(丙) ⌖=center =middle
35
-
36
- {{! — adjectives / adverbs (size/speed/quality/age/quantity etc.) — }}
37
- 蟬ル쪵e(甲) ⊕=big/large ⊜=maximum
38
- 蛞ш읏ら(乙) ⊕=small/little ⊜=minimum
39
- 蛆ミ놓д(丙) ⊕=fast/quick ⊜=high-speed
40
- 蛻フ괩ш(甲) ⊕=slow ⊜=low-speed
41
- 蝮キ쫍b(乙) ⊕=good ⊜=best
42
- 蜷ц됗ц(丙) ⊕=bad ⊜=worst
43
- 蝗п뺑e(甲) ⊕=new ◉=latest
44
- 蝦タ훔ら(乙) ⊕=old ◉=legacy
45
- 蝙ル벶д(丙) ⊕=many/much ⊜=excessive
46
- 蝠ш꿸ш(甲) ⊕=few/little ⊜=insufficient
47
- 蟲ミ듾b(乙) ⊕=correct ⊜=valid
48
- 蟹フ쁩ц(丙) ⊕=wrong/incorrect ⊜=invalid
49
- 蠎キ릊e(甲) ⊕=easy/simple ⊜=simple
50
- 蟒ц쨍ら(乙) ⊕=difficult/hard ⊜=complex
51
- 蟠п괡д(丙) ⊕=safe/secure ⊜=robust
52
- 蟶タ뭏ш(甲) ⊕=dangerous ⊜=fragile
53
- 蟆ル됗b(乙) ⊕=important ⊜=required/must
54
- 蟀ш뵊ц(丙) ⊕=unnecessary ⊜=optional
55
- 蠱ミ쩔e(甲) ⊕=complete/perfect ⊜=comprehensive
56
- 蠡フ괛ら(乙) ⊕=incomplete ⊜=partial
57
- 蠢キ쪵д(丙) ⊕=same/equal ⊜=match
58
- 蠣ц놓ш(甲) ⊕=different ⊜=mismatch
@@ -1,71 +0,0 @@
1
- {{! cogito-root-dev — development domain roots ~60 entries (loaded for dev tools) }}
2
-
3
- {{! — data types / structures — }}
4
- 柳щ뫼h(甲) ◈=integer ⊕=float
5
- 松bц괩(乙) ◈=null ⊕=undefined
6
- 竹ミ뢴ш(丙) ◈=enum ⏣=union type
7
- 梅ルж뺑(甲) ◈=generics ⏣=trait
8
- 蘭え훔п(乙) ◈=tuple ⏣=stack ⊛=tree
9
- 菊タ괛ц(丙) ◈=hash ⊛=graph ⊕=heap
10
- 薔き쫄д(甲) ◈=iterator ⚡=generator
11
- 薇フ뵊b(乙) ◈=promise ⚡=async ◉=coroutine
12
- 百ш쪵е(丙) ◈=stream ⊞=buffer ⊟=channel
13
- 合ロ됗ж(甲) ◈=slice ⊛=range ⊕=byte array
14
-
15
- {{! — Web / API / frontend — }}
16
- 牡ц쩝ら(乙) ⊞=HTTP ⊛=REST ⏣=GraphQL
17
- 丹ミ괟e(丙) ⊞=header ◈=cookie ▽=token
18
- 芙キ놓ф(甲) ⎆=DOM ⏣=virtual DOM ⚡=rendering
19
- 蓉ш뭏h(乙) ⎆=style ⊕=theme ⏣=layout
20
- 芍タ읏б(丙) ⎈=middleware ⏣=router ⚡=handler
21
- 薬ル쭎д(甲) ⊛=WebSocket ⊞=SSE ⚡=polling
22
- 桔ф괴ら(乙) ◈=JSON ⊟=XML ⊞=YAML
23
- 梗ね쫍ц(丙) ⎆=form ⊞=validation ⊗=sanitize
24
-
25
- {{! — DB / SQL / ORM — }}
26
- 撫п뺑キ(甲) ⌖=database ⏣=schema ⊛=relation
27
- 子ш읏え(乙) ⚡=query ⌬=stored procedure ⊞=prepared statement
28
- 菖ル훔b(丙) ⚡=migration ◉=seed ◈=backup
29
- 蒲ミ벶ж(甲) ⊛=foreign key ◈=primary key ⊕=unique constraint
30
- 蕗フ꿸д(乙) ⚡=transaction ⊕=isolation level ⊗=deadlock
31
- 茜タ듾ц(丙) ◈=cursor ⚡=pagination ⊕=sort
32
-
33
- {{! — design patterns / architecture — }}
34
- 芹ц뭏ш(甲) ⏣=repository ◇=factory ⌬=singleton
35
- 薺キ괡e(乙) ⏣=MVC ◇=MVVM ⊕=clean architecture
36
- 蕨п쨍ら(丙) ◇=DI ⏣=IoC ⊛=adapter
37
- 蕎ロ릊ф(甲) ◇=observer ⚡=pub/sub ⊛=event bus
38
- 茅ш쁩h(乙) ◇=strategy ⌬=decorator ⏣=proxy
39
- 萱ミ괞д(丙) ⏣=microservice ⊛=monolith ◇=CQRS
40
- 荻タ됗b(甲) ◇=aggregate ⏣=value type ⊕=entity
41
-
42
- {{! — build / Git / tools — }}
43
- 荷フ쩔ц(乙) ⚡=commit ⏣=branch ⊛=merge
44
- 苗ル뵊ш(丙) ⚡=pull request ⊟=review ⊛=conflict
45
- 苔キ쪵e(甲) ⎈=package manager ⚙=dependency resolution ⚡=install
46
- 茸ш괩ら(乙) ⚡=build ⚙=bundler ⊟=artifact
47
- 蔓ц쫍ф(丙) ⚡=release ◉=version ☰=changelog
48
- 葛п읏д(甲) ⌖=IDE ⎆=editor ⚙=extension
49
-
50
- {{! — testing / quality / QA — }}
51
- 芥タ뢴b(乙) ⚡=unit test ⊕=coverage ⊗=failing test
52
- 蒜ミ괛ц(丙) ⚡=integration test ⏣=E2E test ⊕=regression test
53
- 薤フ놓ш(甲) ⊕=assertion ◈=mock ⌬=stub
54
- 韮ル쭎e(乙) ⊕=lint ⚙=formatter ⊗=lint error
55
- 蕪ш뺑ら(丙) ⊕=metrics ⊜=benchmark ◉=performance
56
- 蕾キ쫄ф(甲) ⊕=code review ☰=static analysis ⊗=tech debt
57
-
58
- {{! — security — }}
59
- 苺ц듾д(乙) ▽=authentication ⊛=authorization ⊕=permission
60
- 桜タ훔b(丙) ▽=encryption ◈=hashing ⊛=signing
61
- 杉п벶ш(甲) ▽=firewall ⊗=vulnerability △=CVE
62
- 柳ミ꿸ц(乙) ▽=CORS ⊕=CSP ⊞=CSRF
63
- 松ロ쁩e(丙) ▽=OAuth ⊛=JWT ◈=session
64
-
65
- {{! — infra / containers / CI/CD — }}
66
- 竹フ릊ら(甲) ⎈=Docker engine ⚙=Dockerfile ◈=container image
67
- 梅ц쨍д(乙) ⎈=K8s cluster ⏣=K8s Pod ⊛=K8s service mesh
68
- 蘭キ괡ш(丙) ⚡=CI ⊟=CD ⏣=pipeline
69
- 菊ш뭏b(甲) ⎈=load balancer ⊛=reverse proxy ⊕=CDN
70
- 薔タ쩔e(乙) ⎈=monitoring ☰=alert ◈=dashboard
71
- 薇ル됗ц(丙) ⎈=cache ◈=Redis ⊕=TTL
@@ -1,71 +0,0 @@
1
- {{! cogito-root-devops — DevOps / Cloud / Infrastructure / Observability roots ~80 entries }}
2
-
3
- {{! — containers & orchestration — }}
4
- 铸цАш(甲) =Docker ⚙=multi-stage Dockerfile ◈=image layer
5
- 铺пき뢴(乙) =container ⊛=volume ⎈=network bridge
6
- 铼タ괛ра(丙) =Docker Compose ⚙=service ⊛=depends_on
7
- 铿ミ뵊д(甲) =Kubernetes ⏣=Pod ⊛=Service
8
- 锁フ쪵b(乙) ⏣=Deployment ⏣=StatefulSet ◈=ConfigMap
9
- 锃ル놓ц(丙) ⏣=Ingress ⎈=namespace ⊛=service mesh
10
- 锅キ됗ш(甲) ⚙=Helm ⚙=Kustomize ⏣=operator
11
- 锇ш쩝e(乙) =Istio ⊛=sidecar ⎈=envoy proxy
12
-
13
- {{! — cloud providers & services — }}
14
- 锉ц괟ら(甲) =AWS ⎈=EC2 ⊛=S3
15
- 锋п뢴д(乙) =GCP ⎈=Cloud Run ⊛=GCS
16
- 锍タ읏b(丙) =Azure ⎈=App Service ⊛=Blob
17
- 锏ミ쭎ц(甲) =Railway ⎈=Vercel ⊛=Fly.io
18
- 锑フ쫄ш(乙) ⎈=Lambda ⚡=serverless ◈=cold start
19
- 锓ル괩e(丙) ⎈=VPC ⊛=subnet ⊕=security group
20
- 锕キ훔ра(甲) ⊛=CDN ⎈=edge function ⊕=region
21
- 锗ш벶д(乙) ⎈=managed DB ⊛=RDS ⊕=DB connection pool
22
-
23
- {{! — CI/CD & pipelines — }}
24
- 锛ц꿸b(甲) =CI pipeline ⚡=CI job ⊛=pipeline stage
25
- 锝п듾ц(乙) =CD ⚡=deploy trigger ◉=schedule
26
- 锟タ쁩ш(丙) ⚡=GitHub Actions ⚙=workflow ⊛=step
27
- 锡ミ릊e(甲) ⎈=GitLab CI ⎈=CircleCI ⎈=Jenkins
28
- 锣フ쨍ра(乙) ⚡=artifact ⊟=registry ◈=tag
29
- 锥ル괡д(丙) ⚡=rollback ⚡=canary ⚡=blue-green
30
- 锧キ뭏b(甲) ◈=secret ⚙=env variable ▽=vault
31
- 锩ш됗ц(乙) ⊕=build matrix ⊛=parallelism ◉=build timeout
32
-
33
- {{! — observability & monitoring — }}
34
- 锫ц뵊ш(甲) ⎈=infra monitoring ◈=metric ⊕=SLA/SLO
35
- 锭п쩔e(乙) ☰=logging ⊕=log level ⊛=structured log
36
- 锯タ괛ра(丙) ⊛=tracing ◈=span ◉=trace ID
37
- 锱ミ쪵д(甲) ⎈=Prometheus ⎈=Grafana ⊛=alert rule
38
- 锳フ놓b(乙) ⎈=Datadog ⎈=New Relic ⊕=APM
39
- 锵ル됗ц(丙) ⎈=ELK ⎈=Loki ☰=retention policy
40
- 锷キ쩝ш(甲) ⊕=latency ⊕=throughput ⊜=percentile
41
- 锹ш괟e(乙) ◈=liveness check ⚡=probe ⊗=incident
42
-
43
- {{! — networking & DNS — }}
44
- 锻ц뢴ра(甲) ⎈=DNS ⊛=A record ⊛=CNAME
45
- 锽п읏д(乙) ⎈=TLS ▽=certificate ◈=HTTPS
46
- 锿タ쭎b(丙) ⎈=cloud load balancer ⏣=reverse proxy ⊛=upstream
47
- 镁ミ쫄ц(甲) ⊛=gRPC ⏣=protocol buffer ◈=message
48
- 镃フ괩ш(乙) ⎈=cloud API gateway ⊛=rate limit ⊕=throttle
49
-
50
- {{! — IaC & configuration — }}
51
- 镅ц훔e(甲) =Terraform ⚙=HCL ⊛=state file
52
- 镇п벶ら(乙) =Ansible ⚙=playbook ⊛=role
53
- 镉タ꿸д(丙) =Pulumi ⚙=CDK ⊛=stack
54
- 镋ミ듾b(甲) ⊛=drift detection ⚡=plan ⚡=apply
55
- 镍フ쁩ц(乙) ⚙=config management ⊛=immutable infra ⊕=idempotent
56
-
57
- {{! — database ops — }}
58
- 镏ц릊ш(甲) ⚡=replication ⊛=replica ⊕=consistency
59
- 镑п쨍e(乙) ⚡=failover ⊛=cluster ⊗=split brain
60
- 镓タ괡ら(丙) ⚡=point-in-time recovery ◈=WAL ◈=snapshot
61
- 镕ミき뭏д(甲) ⚙=connection pooler ⊛=PgBouncer ⊕=max connections
62
-
63
- {{! — devops verbs — }}
64
- 镗ц뢴(v) =provision/allocate
65
- 镙п괛(v) =scale up/scale out
66
- 镛タ쪵(v) =containerize/package
67
- 镝ミ놓(v) =orchestrate/schedule
68
- 镟フ됗(v) =monitor/observe
69
- 镡ル쩝(v) =alert/page
70
- 镣キ괟(v) =rotate/renew (secrets/certs)
71
- 镥ш읏(v) =backup/restore
@@ -1,80 +0,0 @@
1
- {{! cogito-root-framework — framework-specific roots ~80 entries }}
2
- {{! Covers: React, Next.js, Vue, Angular, Svelte, Django, Rails, FastAPI, Express, NestJS, etc. }}
3
-
4
- {{! — React / Next.js — }}
5
- 钊цАд(甲) =React ⏣=JSX ⎆=React virtual DOM
6
- 钌пき뢴(乙) ⌬=hook ⚡=useEffect ◈=useState
7
- 钎タ괛b(丙) ⏣=Server Component ⏣=Client Component ⚡=Suspense
8
- 钐ミ뵊ц(甲) ⎆=portal ⊛=context ◈=ref
9
- 钒フ쪵ш(乙) =Next.js ⏣=App Router ⚡=Server Action
10
- 钔ル놓e(丙) ⚡=SSR ⚡=SSG ⚡=ISR
11
- 钖キ됗ら(甲) ⏣=Next.js middleware ⏣=route group ⊛=layout
12
- 钘ш쩝д(乙) ⚡=RSC streaming ⊕=revalidation ◈=metadata
13
-
14
- {{! — Vue — }}
15
- 钚ц괟b(甲) =Vue ⏣=Composition API ⎆=SFC
16
- 钜п뢴ц(乙) ◈=ref() ◈=reactive() ⌬=computed()
17
- 钞タ읏ш(丙) ⌬=composable ⚡=watchEffect ⊛=provide/inject
18
- 钠ミ쭎e(甲) ⏣=Pinia ⊛=store ⚡=action
19
-
20
- {{! — Angular — }}
21
- 钢フ쫄ら(甲) =Angular ⏣=standalone component ⊛=Angular DI
22
- 钤ル괩д(乙) ⌬=signal ⚡=effect ◈=computed signal
23
- 钦キ훔b(丙) ⎈=NgModule ⏣=lazy loading ⚡=@defer
24
- 钨ш벶ц(甲) ⚡=RxJS ⌬=Observable ⊛=pipe
25
-
26
- {{! — Svelte — }}
27
- 钪ц꿸ш(甲) =Svelte ⏣=SvelteKit ⚡=compiler
28
- 钬п듾e(乙) ⌬=$state ⌬=$derived ⌬=$effect
29
- 钮タ쁩ら(丙) ⌬=$props ⚡=rune ⊕=no virtual DOM
30
-
31
- {{! — Django — }}
32
- 钰ц릊д(甲) =Django ⏣=MTV ⌖=Admin
33
- 钲п쨍b(乙) ⌬=ORM ⏣=QuerySet ⊛=Manager
34
- 钴タ괡ц(丙) ⚡=Django migration ⏣=Form ⊕=Django signal
35
- 钶ミ뭏ш(甲) ⎈=Django middleware ⏣=template tag ⊞=context processor
36
-
37
- {{! — Rails — }}
38
- 钸フき됗(甲) =Rails ⏣=MVC ⊕=convention over configuration
39
- 钺ル뵊e(乙) ⌬=ActiveRecord ⏣=scope ⊛=association
40
- 钼キ쩔ら(丙) ⚡=Turbo ⚡=Stimulus ⏣=Hotwire
41
- 钾ш괛д(甲) ⎈=Sidekiq ⚡=ActiveJob ⊛=cable
42
-
43
- {{! — FastAPI / Flask — }}
44
- 铀ц쪵b(甲) =FastAPI ⏣=Pydantic ⊛=Depends
45
- 铂п놓ц(乙) ⌬=path operation ⊞=request body ⊟=response model
46
- 铄タ됗ш(丙) =Flask ⏣=Blueprint ⌬=app factory
47
- 铆ミ쩝e(甲) ⎈=WSGI ⎈=ASGI ⚡=uvicorn
48
-
49
- {{! — Express / Fastify / NestJS — }}
50
- 铈フ괟ら(甲) =Express ⏣=middleware chain ⚡=next()
51
- 铊ル뢴д(乙) =Fastify ⏣=JSON Schema ⊛=plugin
52
- 铌キ읏b(丙) =NestJS ⏣=NestJS module ⊛=DI container
53
- 铎ш쭎ц(甲) ⌬=guard ⌬=interceptor ⌬=pipe
54
-
55
- {{! — Go frameworks — }}
56
- 铐ц쫄ш(甲) =Gin ⏣=RouterGroup ⊞=binding
57
- 铒п괩e(乙) =Echo ⏣=validator ⊛=group
58
- 铔タ훔ра(丙) =Fiber ⎈=fasthttp ⏣=middleware stack
59
-
60
- {{! — Laravel / Symfony / WordPress — }}
61
- 铖ц벶д(甲) =Laravel ⏣=Eloquent ⊛=service container
62
- 铘п꿸b(乙) ⌬=Form Request ⚡=queue ⊛=event/listener
63
- 铚タ듾ц(丙) =Symfony ⏣=Bundle ⊛=Doctrine
64
- 铜ミ쁩ш(甲) =WordPress ⏣=hook ⌬=action/filter
65
- 铞フ릊e(乙) ⏣=theme hierarchy ⊛=shortcode ⎆=Gutenberg
66
-
67
- {{! — CSS frameworks — }}
68
- 铠ц쨍ра(甲) =Tailwind ⏣=utility class ⚙=config
69
- 铢п괡д(乙) =Sass ⌬=Sass mixin ⏣=@use module
70
- 铤タ뭏b(丙) ⊕=design system ◈=design token ⎆=responsive breakpoint
71
-
72
- {{! — framework verbs — }}
73
- 铦цき(v) =render/paint
74
- 铨п뢴(v) =hydrate/rehydrate
75
- 铪タ괛(v) =mount/unmount
76
- 铬ミ뵊(v) =route/navigate
77
- 铮フ쪵(v) =middleware/intercept
78
- 铰ル놓(v) =inject/provide
79
- 铳キ됗(v) =migrate/seed
80
- 铵ш쩝(v) =scaffold/generate
@@ -1,74 +0,0 @@
1
- {{! cogito-root-lang — programming language-specific roots ~80 entries }}
2
- {{! Covers: Python, TypeScript, Go, PHP, Ruby, C, JavaScript, HTML, CSS concepts }}
3
-
4
- {{! — Python — }}
5
- 鍬цАш(甲) =Python ⏣=CPython ⎈=virtualenv
6
- 鍛пき뢴(乙) ⌬=Python decorator ⏣=metaclass ◇=descriptor
7
- 鍮タ괛ら(丙) ⚡=Python generator ⌬=comprehension ◈=lambda
8
- 鍖ミ뵊д(甲) ⏣=PEP ⚙=pyproject.toml ⊕=Zen of Python
9
- 鍼フ쪵b(乙) ⌬=dataclass ◈=namedtuple ⏣=Protocol
10
- 鍾ル놓ц(丙) ⎈=pip ⚙=uv ⊛=wheel
11
- 鍔키됗ш(甲) ⚡=asyncio ◈=Python coroutine ⊛=event loop
12
- 鑓ш쩝e(乙) ⌬=context manager ⚡=with statement ◈=GIL
13
-
14
- {{! — TypeScript / JavaScript — }}
15
- 鋲ц괟ら(甲) =TypeScript ⏣=type system ⊕=strict mode
16
- 鋳п뢴д(乙) ⌬=generic ⏣=discriminated union ◈=template literal type
17
- 鋸タ읏b(丙) ⌬=interface ⏣=type alias ◇=satisfies
18
- 鋩ミ쭎ц(甲) ⊕=type guard ◈=type assertion ⊗=type error
19
- 鋏フ쫄ш(乙) =JavaScript ⌬=prototype ◈=closure
20
- 鋤ル괩e(丙) ⚡=Promise ⌬=async/await ◈=callback
21
- 鋭キ훔ら(甲) ⏣=ESModule ⊟=CommonJS ⚙=bundler
22
- 鋼ш벶д(乙) ◈=Proxy ⌬=Reflect ⏣=WeakMap
23
-
24
- {{! — Go — }}
25
- 鑢ц꿸b(甲) =Go ⏣=goroutine ⊛=channel
26
- 鑰п듾ц(乙) ⌬=Go interface ⏣=struct embedding ◇=composition
27
- 鑞タ쁩ш(丙) ⊗=error handling ⌬=defer ⚡=panic/recover
28
- 鑚ミ릊e(甲) ⏣=go module ⚙=go.mod ⊛=workspace
29
- 鑷フ쨍ら(乙) ⚡=select ◈=context ◉=timeout
30
- 鑵ル괡д(丙) ⏣=package ⌖=internal ⊕=exported
31
-
32
- {{! — PHP — }}
33
- 鑁цき뭏(甲) =PHP ⏣=Composer ⊕=strict_types
34
- 鑈п됗ш(乙) ⌬=trait ⏣=enum ◈=named argument
35
- 鑊タ뵊e(丙) ⌬=attribute ⚡=fiber ◈=readonly
36
- 鑌ミ쩔ら(甲) ⏣=PSR ⊕=autoloading ⚙=php.ini
37
-
38
- {{! — Ruby — }}
39
- 鑐ц괛д(甲) =Ruby ⏣=gem ⚙=Bundler
40
- 鑒п쪵b(乙) ⌬=block ⌬=Proc ⌬=lambda
41
- 鑓タ놓ц(丙) ⌬=Ruby mixin ⏣=module include/extend ◈=method_missing
42
- 鑕ミ됗ш(甲) ◈=symbol ⏣=Enumerable ⊕=frozen_string_literal
43
- 鑗フ쩝e(乙) ⚡=IRB ⚡=Pry ⊜=RuboCop
44
-
45
- {{! — C — }}
46
- 鑙ц괟ら(甲) =C ⏣=standard library ⊕=C99/C11
47
- 鑛п뢴д(乙) ◈=pointer ⊛=reference ⊗=dangling pointer
48
- 鑝タ읏b(丙) ◈=struct ⏣=union ⌬=typedef
49
- 鑟ミ쭎ц(甲) ⚡=malloc ⚡=free ⊗=memory leak
50
- 鑡フ쫄ш(乙) ⚙=Makefile ⊕=compiler flag ⊗=undefined behavior
51
- 鑣ル괩e(丙) ⚙=preprocessor ⌬=macro ⊞=header file
52
-
53
- {{! — HTML — }}
54
- 鑥цき훔(甲) =HTML ⏣=semantic element ⊕=accessibility
55
- 鑧п벶ра(乙) ⎆=landmark ⊞=ARIA role ⊕=alt text
56
- 鑩タ꿸д(丙) ⎆=HTML form ⊞=input ⊟=label
57
- 鑫ミ듾b(甲) ⏣=Living Standard ⊕=W3C validation
58
-
59
- {{! — CSS — }}
60
- 鑭ц쁩ц(甲) =CSS ⏣=Grid ⏣=Flexbox
61
- 鑯п릊ш(乙) ◈=custom property ⏣=cascade layer ⊕=specificity
62
- 鑱タ쨍e(丙) ⎆=media query ⎆=container query ⊕=responsive
63
- 鑳ミ괡ら(甲) ⊕=animation ⊕=transition ⎆=transform
64
- 鑵フき뭏д(乙) ⏣=BEM ⏣=utility-first ⊕=CSS design token
65
-
66
- {{! — cross-language verbs — }}
67
- 鑷ц뢴(v) =type-check/infer
68
- 鑹п괛(v) =compile/transpile
69
- 鑻タ쪵(v) =interpret/evaluate
70
- 鑽ミ놓(v) =garbage-collect/free memory
71
- 鑿フ됗(v) =serialize/marshal
72
- 钁ル쩝(v) =deserialize/unmarshal
73
- 钃キ괟(v) =lint/format
74
- 钅ш읏(v) =refactor/restructure
@@ -1,50 +0,0 @@
1
- ## Core Attitude (MUST — Applies to Every Action)
2
-
3
- - **Always ask "why" first** — Establish purpose, constraints, and measurable completion criteria before writing any code
4
- - **Treat abnormal paths equally** — Error cases, boundary values, and operational behavior are as important as the happy path
5
- - **Evaluate from multiple perspectives** — Technology, business, UX, security, and operations — every change must be assessed from all angles
6
- - **Never guess when less than 95% certain** — If a premise is not confirmed, ask questions to eliminate ambiguity before proceeding
7
-
8
- ## Pre-work Analysis (MUST — Before Starting Any Implementation)
9
-
10
- Before writing code, complete and document the following analysis:
11
-
12
- 1. **Goal & completion criteria** — Define in measurable terms (what does "done" look like?)
13
- 2. **Existing structure, patterns & constraints** — Understand what's already there and what rules apply
14
- 3. **Impact scope & risks** — Functional, performance, UX, security, operational impact
15
- 4. **Implementation options** — At least two approaches (standard / conservative / bold), with comparison and recommended choice with reasoning
16
- 5. **Open questions & unknowns** — List uncertainties; ask before assuming
17
-
18
- If any of items 1-5 are unclear, **stop and ask the user** before proceeding.
19
-
20
- ## Development Methodology: ATDD (Acceptance Test Driven Development)
21
-
22
- ### For New Features (MUST)
23
- 1. Spec confirmed → Define acceptance criteria in **Given-When-Then** format
24
- 2. **Write acceptance tests FIRST** (Red — tests fail because feature doesn't exist yet)
25
- 3. Implement the feature (Green — make the tests pass)
26
- 4. Refactor → Maintain tests as regression suite
27
-
28
- ### For Bug Fixes
29
- 1. **Write a reproduction test FIRST** (Red — test demonstrates the bug)
30
- 2. Fix the bug (Green — reproduction test passes)
31
- 3. Verify no regressions
32
-
33
- ### For Refactoring
34
- 1. If existing tests cover the area → Refactor with confidence
35
- 2. If no tests exist → **Add characterization tests FIRST**, then refactor
36
-
37
- ### Test Priority (All Agents — Absolute Rule)
38
- - **Never give up** until API tests and E2E tests pass. Investigate root causes, fix issues, and retry
39
- - If tests cannot be run (infrastructure/environment reasons): document the reason, alternative verification method, and remaining risks
40
- - Test layer priority: **unit** (domain/usecase) → **integration** (API/DB boundaries) → **e2e** (critical flows only)
41
-
42
- ## Quality Culture
43
-
44
- - Implement **failure paths first** — validate inputs, handle errors, then write the happy path
45
- - Use **early returns** to keep nesting shallow and responsibilities clear
46
- - Apply **SOLID / KISS / YAGNI / DRY** as self-review criteria for every change
47
- - Type safety is non-negotiable: no `any`, no type suppression (`ts-ignore`, `type: ignore`)
48
- - External input is always `unknown` until validated
49
- - Logs and error messages must be specific, minimal, and never contain secrets
50
- - Avoid N+1 queries and unnecessary full-table scans; consider batching, caching, or differential fetching when needed
@@ -1,52 +0,0 @@
1
- ## Project Information (Auto-detected)
2
-
3
- - **Project name**: {{project.name}}
4
- - **Root**: `{{project.root}}`
5
- {{#if project.detected_stacks.length}}
6
- - **Detected stacks**:
7
- {{#each project.detected_stacks}}
8
- - {{this.label}} ({{this.evidence}})
9
- {{/each}}
10
- {{/if}}
11
- {{#if project.directories.length}}
12
- - **Directory structure**: {{#each project.directories}}`{{this}}`{{#unless @last}}, {{/unless}}{{/each}}
13
- {{/if}}
14
- {{#if project.key_files.length}}
15
- - **Key files**: {{#each project.key_files}}`{{this}}`{{#unless @last}}, {{/unless}}{{/each}}
16
- {{/if}}
17
- {{#if project.docker_services.length}}
18
- - **Docker services**: {{#each project.docker_services}}`{{this}}`{{#unless @last}}, {{/unless}}{{/each}}
19
- {{/if}}
20
- {{#if project.env_templates.length}}
21
- - **Environment templates**: {{#each project.env_templates}}`{{this}}`{{#unless @last}}, {{/unless}}{{/each}}
22
- {{/if}}
23
- {{#if project.scripts}}
24
- - **npm scripts**: {{#each project.scripts}}`{{@key}}`{{#unless @last}}, {{/unless}}{{/each}}
25
- {{/if}}
26
- {{#if project.detected_tools.length}}
27
-
28
- ## Detected Ecosystem Tools
29
- {{#each project.detected_tools}}
30
- - **{{this.label}}** ({{this.category}}): {{this.description}} ({{this.evidence}})
31
- {{/each}}
32
- {{/if}}
33
- {{#if tools.length}}
34
-
35
- ## Recommended Tools & Guidance
36
- {{#each tools}}
37
- ### {{this.label}} ({{this.category}})
38
- - {{this.description}}
39
- {{#if this.guidance}}- **Guidance**: {{this.guidance}}{{/if}}
40
- {{#if this.url}}- **Reference**: {{this.url}}{{/if}}
41
- {{/each}}
42
- {{/if}}
43
- {{#if project.vendor_items.length}}
44
-
45
- ## Available Vendor / OSS Tools
46
- {{#each project.vendor_items}}
47
- ### vendor/{{this.name}}
48
- - **Description**: {{this.description}}
49
- - **Runtime**: {{this.runtime}}
50
- - **Setup**: `{{this.setupHint}}`
51
- {{/each}}
52
- {{/if}}
@@ -1,40 +0,0 @@
1
- ## Operational Rules (SSOT)
2
- - Always follow operational rules (no terminal needed / branch isolation / 1 commit = 1 responsibility / PR is the GitHub MCP source of truth)
3
- {{#each stacks}}
4
- - When working with {{this.label}}, follow the {{this.name}} mindset as SSOT
5
- {{/each}}
6
-
7
- ### Absolute Rules (MUST)
8
-
9
- **MUST-1: Never require the human to use the terminal**
10
- - The developer's only actions are: "make a request in natural language" and "review on GitHub PR"
11
- - All command execution is the Agent's responsibility
12
-
13
- **MUST-2: Separate Front/Back branches when UI changes are involved**
14
- - Frontend branch: `feat/<slug>-frontend`
15
- - Backend branch: `feat/<slug>-backend`
16
- - When a task spans Front/Back: create **separate PRs** (one for each)
17
-
18
- **MUST-3: 1 commit = 1 responsibility (no mixed commits)**
19
- - Hard scope (mixing these in one commit = violation):
20
- - `frontend/`: frontend code
21
- - `backend/`: backend code
22
- - repo-root: everything else
23
- - Soft scope (can coexist in one commit):
24
- - `docs/`: documentation
25
- - `scripts/`: scripts
26
- - Example: frontend + docs = OK, frontend + backend = **NG**
27
-
28
- **MUST-4: PR creation uses GitHub MCP as the source of truth**
29
- - Actual PR creation is done by the Agent via GitHub MCP
30
-
31
- **MUST-5: Never create/edit/add CI/CD workflow files**
32
- - Quality assurance is done via local scripts only
33
-
34
- ### SSOT Priority (When Conflicts Arise)
35
-
36
- 1. **Product Spec SSOT**: Spec files and referenced documents
37
- 2. **Operational SSOT**: These operational rules (branch/commit/PR/quality gate rules)
38
- 3. **Everything else** (README, verbal, past messages, etc.)
39
-
40
- When a conflict is detected: **never guess**. Determine which SSOT to update, apply the change, then proceed.