sqlew 4.0.5 → 4.1.1

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 (217) hide show
  1. package/CHANGELOG.md +1817 -1782
  2. package/README.md +409 -468
  3. package/assets/claude-md-snippets/plan-mode-integration.md +17 -6
  4. package/assets/config.example.toml +282 -284
  5. package/assets/sample-agents/README.md +36 -40
  6. package/assets/sample-agents/sqlew-architect.md +321 -322
  7. package/assets/sample-agents/sqlew-researcher.md +292 -293
  8. package/assets/sample-agents/sqlew-scrum-master.md +286 -287
  9. package/assets/sample-commands/README.md +56 -57
  10. package/assets/sample-skills/sqlew-plan-guidance/SKILL.md +33 -26
  11. package/dist/cli/hooks/check-completion.d.ts +19 -0
  12. package/dist/cli/hooks/check-completion.d.ts.map +1 -0
  13. package/dist/cli/hooks/check-completion.js +104 -0
  14. package/dist/cli/hooks/check-completion.js.map +1 -0
  15. package/dist/cli/hooks/init-hooks.d.ts +35 -0
  16. package/dist/cli/hooks/init-hooks.d.ts.map +1 -0
  17. package/dist/cli/hooks/init-hooks.js +425 -0
  18. package/dist/cli/hooks/init-hooks.js.map +1 -0
  19. package/dist/cli/hooks/mark-done.d.ts +25 -0
  20. package/dist/cli/hooks/mark-done.d.ts.map +1 -0
  21. package/dist/cli/hooks/mark-done.js +128 -0
  22. package/dist/cli/hooks/mark-done.js.map +1 -0
  23. package/dist/cli/hooks/plan-id-utils.d.ts +83 -0
  24. package/dist/cli/hooks/plan-id-utils.d.ts.map +1 -0
  25. package/dist/cli/hooks/plan-id-utils.js +183 -0
  26. package/dist/cli/hooks/plan-id-utils.js.map +1 -0
  27. package/dist/cli/hooks/save.d.ts +23 -0
  28. package/dist/cli/hooks/save.d.ts.map +1 -0
  29. package/dist/cli/hooks/save.js +90 -0
  30. package/dist/cli/hooks/save.js.map +1 -0
  31. package/dist/cli/hooks/stdin-parser.d.ts +139 -0
  32. package/dist/cli/hooks/stdin-parser.d.ts.map +1 -0
  33. package/dist/cli/hooks/stdin-parser.js +127 -0
  34. package/dist/cli/hooks/stdin-parser.js.map +1 -0
  35. package/dist/cli/hooks/suggest.d.ts +19 -0
  36. package/dist/cli/hooks/suggest.d.ts.map +1 -0
  37. package/dist/cli/hooks/suggest.js +157 -0
  38. package/dist/cli/hooks/suggest.js.map +1 -0
  39. package/dist/cli/hooks/track-plan.d.ts +36 -0
  40. package/dist/cli/hooks/track-plan.d.ts.map +1 -0
  41. package/dist/cli/hooks/track-plan.js +152 -0
  42. package/dist/cli/hooks/track-plan.js.map +1 -0
  43. package/dist/cli.d.ts.map +1 -1
  44. package/dist/cli.js +56 -16
  45. package/dist/cli.js.map +1 -1
  46. package/dist/config/global-config.d.ts +187 -0
  47. package/dist/config/global-config.d.ts.map +1 -0
  48. package/dist/config/global-config.js +206 -0
  49. package/dist/config/global-config.js.map +1 -0
  50. package/dist/config/loader.d.ts +42 -0
  51. package/dist/config/loader.d.ts.map +1 -1
  52. package/dist/config/loader.js +96 -0
  53. package/dist/config/loader.js.map +1 -1
  54. package/dist/constants.d.ts +4 -0
  55. package/dist/constants.d.ts.map +1 -1
  56. package/dist/constants.js +10 -0
  57. package/dist/constants.js.map +1 -1
  58. package/dist/database/migrations/v4/20251126000000_v4_bootstrap.js +59 -59
  59. package/dist/database/migrations/v4/20251126000000_v4_bootstrap.js.map +1 -1
  60. package/dist/database/migrations/v4/20251126000001_v4_migrate_data.js +33 -33
  61. package/dist/database/migrations/v4/20251126000001_v4_migrate_data.js.map +1 -1
  62. package/dist/database/migrations/v4/20251127000000_add_rejected_status.js +7 -7
  63. package/dist/database/migrations/v4/20251127000000_add_rejected_status.js.map +1 -1
  64. package/dist/database/migrations/v4/20251127000001_update_task_move_help.js +11 -11
  65. package/dist/database/migrations/v4/20251127000001_update_task_move_help.js.map +1 -1
  66. package/dist/database/migrations/v4/20251127000002_v4_seed_help_system.js +10 -10
  67. package/dist/database/migrations/v4/20251127000002_v4_seed_help_system.js.map +1 -1
  68. package/dist/database/migrations/v4/20251127000003_add_task_notes_column.js +7 -7
  69. package/dist/database/migrations/v4/20251127000003_add_task_notes_column.js.map +1 -1
  70. package/dist/database/migrations/v4/20251128000000_drop_all_views.js +8 -8
  71. package/dist/database/migrations/v4/20251128000000_drop_all_views.js.map +1 -1
  72. package/dist/database/operations/queries.d.ts.map +1 -1
  73. package/dist/database/operations/queries.js +11 -2
  74. package/dist/database/operations/queries.js.map +1 -1
  75. package/dist/index.js +4 -1
  76. package/dist/index.js.map +1 -1
  77. package/dist/init-agents.js +0 -1
  78. package/dist/init-agents.js.map +1 -1
  79. package/dist/init-skills.d.ts +4 -3
  80. package/dist/init-skills.d.ts.map +1 -1
  81. package/dist/init-skills.js +10 -3
  82. package/dist/init-skills.js.map +1 -1
  83. package/dist/server/setup.d.ts +8 -0
  84. package/dist/server/setup.d.ts.map +1 -1
  85. package/dist/server/setup.js +141 -21
  86. package/dist/server/setup.js.map +1 -1
  87. package/dist/sync-agents.d.ts.map +1 -1
  88. package/dist/sync-agents.js +48 -3
  89. package/dist/sync-agents.js.map +1 -1
  90. package/dist/sync-commands.d.ts.map +1 -1
  91. package/dist/sync-commands.js +43 -3
  92. package/dist/sync-commands.js.map +1 -1
  93. package/dist/tools/constraints/actions/get.d.ts.map +1 -1
  94. package/dist/tools/constraints/actions/get.js +5 -8
  95. package/dist/tools/constraints/actions/get.js.map +1 -1
  96. package/dist/tools/constraints/help/help.d.ts.map +1 -1
  97. package/dist/tools/constraints/help/help.js +1 -6
  98. package/dist/tools/constraints/help/help.js.map +1 -1
  99. package/dist/tools/context/actions/get.d.ts.map +1 -1
  100. package/dist/tools/context/actions/get.js.map +1 -1
  101. package/dist/tools/context/actions/search-layer.d.ts.map +1 -1
  102. package/dist/tools/context/actions/search-layer.js +5 -3
  103. package/dist/tools/context/actions/search-layer.js.map +1 -1
  104. package/dist/tools/context/actions/set-from-policy.d.ts +2 -1
  105. package/dist/tools/context/actions/set-from-policy.d.ts.map +1 -1
  106. package/dist/tools/context/actions/set-from-policy.js.map +1 -1
  107. package/dist/tools/context/help/help.d.ts.map +1 -1
  108. package/dist/tools/context/help/help.js +1 -7
  109. package/dist/tools/context/help/help.js.map +1 -1
  110. package/dist/tools/context/internal/queries.d.ts.map +1 -1
  111. package/dist/tools/context/internal/queries.js +5 -2
  112. package/dist/tools/context/internal/queries.js.map +1 -1
  113. package/dist/tools/context/types.d.ts +1 -1
  114. package/dist/tools/context/types.d.ts.map +1 -1
  115. package/dist/tools/files/actions/get.d.ts.map +1 -1
  116. package/dist/tools/files/actions/get.js +4 -6
  117. package/dist/tools/files/actions/get.js.map +1 -1
  118. package/dist/tools/files/help/help.d.ts.map +1 -1
  119. package/dist/tools/files/help/help.js +1 -6
  120. package/dist/tools/files/help/help.js.map +1 -1
  121. package/dist/tools/suggest/help/constraint-help.d.ts.map +1 -1
  122. package/dist/tools/suggest/help/constraint-help.js +0 -2
  123. package/dist/tools/suggest/help/constraint-help.js.map +1 -1
  124. package/dist/tools/suggest/internal/constraint-queries.d.ts.map +1 -1
  125. package/dist/tools/suggest/internal/constraint-queries.js +12 -5
  126. package/dist/tools/suggest/internal/constraint-queries.js.map +1 -1
  127. package/dist/tools/suggest/internal/queries.js +2 -2
  128. package/dist/tools/suggest/internal/queries.js.map +1 -1
  129. package/dist/tools/tasks/help/help.d.ts.map +1 -1
  130. package/dist/tools/tasks/help/help.js +0 -6
  131. package/dist/tools/tasks/help/help.js.map +1 -1
  132. package/dist/tools/tasks/help/use-case.d.ts.map +1 -1
  133. package/dist/tools/tasks/help/use-case.js +0 -1
  134. package/dist/tools/tasks/help/use-case.js.map +1 -1
  135. package/dist/tools/tasks/watcher/status.d.ts.map +1 -1
  136. package/dist/tools/tasks/watcher/status.js +5 -1
  137. package/dist/tools/tasks/watcher/status.js.map +1 -1
  138. package/dist/types/decision/params.d.ts +7 -6
  139. package/dist/types/decision/params.d.ts.map +1 -1
  140. package/dist/types/decision/templates.d.ts +3 -2
  141. package/dist/types/decision/templates.d.ts.map +1 -1
  142. package/dist/types/view-entities.d.ts +2 -1
  143. package/dist/types/view-entities.d.ts.map +1 -1
  144. package/dist/types.d.ts +19 -11
  145. package/dist/types.d.ts.map +1 -1
  146. package/dist/types.js +4 -1
  147. package/dist/types.js.map +1 -1
  148. package/dist/utils/enum-converter.d.ts +72 -0
  149. package/dist/utils/enum-converter.d.ts.map +1 -0
  150. package/dist/utils/enum-converter.js +76 -0
  151. package/dist/utils/enum-converter.js.map +1 -0
  152. package/dist/utils/hook-queue.d.ts +81 -0
  153. package/dist/utils/hook-queue.d.ts.map +1 -0
  154. package/dist/utils/hook-queue.js +156 -0
  155. package/dist/utils/hook-queue.js.map +1 -0
  156. package/dist/utils/project-root.d.ts +9 -2
  157. package/dist/utils/project-root.d.ts.map +1 -1
  158. package/dist/utils/project-root.js +16 -2
  159. package/dist/utils/project-root.js.map +1 -1
  160. package/dist/utils/tag-parser.d.ts.map +1 -1
  161. package/dist/utils/tag-parser.js +6 -0
  162. package/dist/utils/tag-parser.js.map +1 -1
  163. package/dist/utils/universal-knex.js +3 -3
  164. package/dist/utils/universal-knex.js.map +1 -1
  165. package/dist/utils/validators.d.ts +1 -1
  166. package/dist/utils/validators.d.ts.map +1 -1
  167. package/dist/utils/validators.js +1 -1
  168. package/dist/utils/validators.js.map +1 -1
  169. package/dist/utils/vcs-adapter.d.ts +44 -0
  170. package/dist/utils/vcs-adapter.d.ts.map +1 -1
  171. package/dist/utils/vcs-adapter.js +88 -0
  172. package/dist/utils/vcs-adapter.js.map +1 -1
  173. package/dist/utils/view-queries.d.ts.map +1 -1
  174. package/dist/utils/view-queries.js +9 -19
  175. package/dist/utils/view-queries.js.map +1 -1
  176. package/dist/watcher/base-watcher.d.ts +69 -0
  177. package/dist/watcher/base-watcher.d.ts.map +1 -0
  178. package/dist/watcher/base-watcher.js +130 -0
  179. package/dist/watcher/base-watcher.js.map +1 -0
  180. package/dist/watcher/index.d.ts +3 -0
  181. package/dist/watcher/index.d.ts.map +1 -1
  182. package/dist/watcher/index.js +2 -0
  183. package/dist/watcher/index.js.map +1 -1
  184. package/dist/watcher/queue-watcher.d.ts +64 -0
  185. package/dist/watcher/queue-watcher.d.ts.map +1 -0
  186. package/dist/watcher/queue-watcher.js +187 -0
  187. package/dist/watcher/queue-watcher.js.map +1 -0
  188. package/docs/ADR_CONCEPTS.md +140 -0
  189. package/docs/CONFIGURATION.md +922 -925
  190. package/docs/CROSS_DATABASE.md +153 -0
  191. package/docs/DATABASE_AUTH.md +70 -356
  192. package/docs/HOOKS_GUIDE.md +159 -0
  193. package/docs/SLASH_COMMANDS.md +329 -337
  194. package/docs/TASK_SYSTEM_DEPRECATED.md +88 -0
  195. package/docs/changelogs/CHANGELOG_ARCHIVE_v3.4_and_older.md +293 -296
  196. package/docs/cli/DATA_EXPORT_IMPORT.md +699 -700
  197. package/docs/cli/README.md +276 -277
  198. package/package.json +123 -124
  199. package/docs/ACCEPTANCE_CRITERIA.md +0 -625
  200. package/docs/AI_AGENT_GUIDE.md +0 -299
  201. package/docs/ARCHITECTURE.md +0 -167
  202. package/docs/AUTO_FILE_TRACKING.md +0 -841
  203. package/docs/BATCH_VALIDATION.md +0 -617
  204. package/docs/BEST_PRACTICES.md +0 -168
  205. package/docs/CONSTRAINT_INTELLIGENCE.md +0 -339
  206. package/docs/DECISION_CONTEXT.md +0 -697
  207. package/docs/DECISION_INTELLIGENCE.md +0 -605
  208. package/docs/GIT_AWARE_AUTO_COMPLETE.md +0 -646
  209. package/docs/MIGRATION_GUIDE_V3.9.0.md +0 -371
  210. package/docs/SHARED_CONCEPTS.md +0 -225
  211. package/docs/SPECIALIZED_AGENTS.md +0 -126
  212. package/docs/TASK_ACTIONS.md +0 -1177
  213. package/docs/TASK_OVERVIEW.md +0 -452
  214. package/docs/TASK_PRUNING.md +0 -594
  215. package/docs/TOOL_REFERENCE.md +0 -1077
  216. package/docs/TOOL_SELECTION.md +0 -83
  217. package/docs/WORKFLOWS.md +0 -941
package/package.json CHANGED
@@ -1,124 +1,123 @@
1
- {
2
- "name": "sqlew",
3
- "description": "MCP server that gives AI agents a shared SQL-backed context repository for decisions, constraints, and tasks",
4
- "version": "4.0.5",
5
- "main": "dist/index.js",
6
- "type": "module",
7
- "bin": {
8
- "sqlew": "dist/index.js",
9
- "sqlew-init-commands": "dist/init-commands.js"
10
- },
11
- "files": [
12
- "dist/",
13
- "scripts/",
14
- "assets/",
15
- "docs/",
16
- "README.md",
17
- "LICENSE",
18
- "NOTICE",
19
- "CHANGELOG.md",
20
- "MIGRATION_v2.md",
21
- "ARCHITECTURE.md"
22
- ],
23
- "scripts": {
24
- "build": "tsc",
25
- "start": "node dist/index.js",
26
- "cli": "node dist/cli.js",
27
- "inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
28
- "dev": "tsc --watch",
29
- "clean": "rimraf dist",
30
- "rebuild": "npm run clean && npm run build",
31
- "test": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" \"src/tests/feature/decision/**/*.test.ts\" \"src/tests/feature/task/**/*.test.ts\" \"src/tests/feature/help/**/*.test.ts\" \"src/tests/database/connection/**/*.test.ts\" \"src/tests/database/multi-project/**/*.test.ts\" \"src/tests/database/sql-dump/**/*.test.ts\" \"src/tests/integration/**/*.test.ts\" | node scripts/filter-test-output.js",
32
- "test:verbose": "node --test --experimental-test-coverage --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" \"src/tests/feature/decision/**/*.test.ts\" \"src/tests/feature/task/**/*.test.ts\" \"src/tests/feature/help/**/*.test.ts\" \"src/tests/database/connection/**/*.test.ts\" \"src/tests/database/multi-project/**/*.test.ts\" \"src/tests/database/sql-dump/**/*.test.ts\" \"src/tests/integration/**/*.test.ts\"",
33
- "test:ci": "npm run build && npm test",
34
- "test:vcs": "node --test --test-force-exit --import tsx \"src/tests/feature/vcs/**/*.test.ts\" | node scripts/filter-test-output.js",
35
- "test:vcs:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/vcs/**/*.test.ts\"",
36
- "test:all": "node --test --test-force-exit --import tsx \"src/tests/**/*.test.ts\" | node scripts/filter-test-output.js",
37
- "test:all:verbose": "node --test --experimental-test-coverage --test-force-exit --import tsx \"src/tests/**/*.test.ts\"",
38
- "test:unit": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" | node scripts/filter-test-output.js",
39
- "test:unit:verbose": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\"",
40
- "test:feature": "node --test --test-force-exit --import tsx \"src/tests/feature/**/*.test.ts\" | node scripts/filter-test-output.js",
41
- "test:feature:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/**/*.test.ts\"",
42
- "test:database": "node --test --test-force-exit --import tsx \"src/tests/database/connection/**/*.test.ts\" \"src/tests/database/multi-project/**/*.test.ts\" \"src/tests/database/sql-dump/**/*.test.ts\" | node scripts/filter-test-output.js",
43
- "test:database:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/connection/**/*.test.ts\" \"src/tests/database/multi-project/**/*.test.ts\" \"src/tests/database/sql-dump/**/*.test.ts\"",
44
- "test:integration": "node --test --test-force-exit --import tsx \"src/tests/integration/**/*.test.ts\" | node scripts/filter-test-output.js",
45
- "test:integration:verbose": "node --test --test-force-exit --import tsx \"src/tests/integration/**/*.test.ts\"",
46
- "test:decision": "node --test --test-force-exit --import tsx \"src/tests/feature/decision/**/*.test.ts\" | node scripts/filter-test-output.js",
47
- "test:decision:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/decision/**/*.test.ts\"",
48
- "test:task": "node --test --test-force-exit --import tsx \"src/tests/feature/task/**/*.test.ts\" | node scripts/filter-test-output.js",
49
- "test:task:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/task/**/*.test.ts\"",
50
- "test:migrations": "echo 'v4 migration tests not yet implemented - use test:native for RDBMS migration tests'",
51
- "test:migrations:verbose": "echo 'v4 migration tests not yet implemented - use test:native:verbose for RDBMS migration tests'",
52
- "test:sql-dump": "node --test --test-force-exit --import tsx \"src/tests/database/sql-dump/**/*.test.ts\" | node scripts/filter-test-output.js",
53
- "test:sql-dump:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/sql-dump/**/*.test.ts\"",
54
- "test:all-features": "npm run build && node dist/tests/integration/all-features.standalone.js",
55
- "test:docker": "npm run build && node --test --test-force-exit dist/tests/docker/**/*.test.js",
56
- "test:native": "npm run build && node --test --test-concurrency=1 --test-force-exit dist/tests/docker/native/**/*.test.js | node scripts/filter-test-output.js",
57
- "test:native:verbose": "npm run build && node --test --test-concurrency=1 --test-force-exit dist/tests/docker/native/**/*.test.js",
58
- "test:migration-upgrade-paths": "echo 'v3 migration tests moved to v3 subdirectory - use test:native for v4 RDBMS tests'",
59
- "test:migration-idempotency": "echo 'v3 migration tests moved to v3 subdirectory - use test:native for v4 RDBMS tests'",
60
- "test:migrations:all": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
61
- "test:migrations:ci": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
62
- "prepare": "husky",
63
- "prepublishOnly": "npm run rebuild",
64
- "knex": "npx tsx node_modules/knex/bin/cli.js --knexfile src/knexfile.ts",
65
- "migrate:make": "npm run knex migrate:make",
66
- "migrate:latest": "npm run knex migrate:latest",
67
- "migrate:rollback": "npm run knex migrate:rollback",
68
- "migrate:rollback:all": "npm run knex migrate:rollback --all",
69
- "migrate:status": "npm run knex migrate:status",
70
- "seed:make": "npm run knex seed:make",
71
- "seed:run": "npm run knex seed:run",
72
- "db:dump": "node dist/cli.js db:dump",
73
- "db:export": "node dist/cli.js db:export",
74
- "db:import": "node dist/cli.js db:import"
75
- },
76
- "engines": {
77
- "node": ">=20.0.0"
78
- },
79
- "repository": {
80
- "type": "git",
81
- "url": "git+https://github.com/sin5ddd/mcp-sqlew.git"
82
- },
83
- "bugs": {
84
- "url": "https://github.com/sin5ddd/mcp-sqlew/issues"
85
- },
86
- "homepage": "https://github.com/sin5ddd/mcp-sqlew#readme",
87
- "keywords": [
88
- "adr",
89
- "architecture-decision-record",
90
- "mcp",
91
- "mcp-server",
92
- "model-context-protocol",
93
- "ai-agents",
94
- "claude-code",
95
- "architectural-decisions",
96
- "decision-management",
97
- "sqlite",
98
- "postgresql",
99
- "mysql",
100
- "token-efficiency"
101
- ],
102
- "author": "sin5ddd",
103
- "license": "Apache-2.0",
104
- "dependencies": {
105
- "@modelcontextprotocol/sdk": "^1.21.1",
106
- "better-sqlite3": "^12.4.1",
107
- "chokidar": "^4.0.3",
108
- "ignore": "^7.0.5",
109
- "knex": "^3.1.0",
110
- "knex-schema-inspector": "^3.1.0",
111
- "mysql2": "^3.15.3",
112
- "pg": "^8.16.3",
113
- "smol-toml": "^1.4.2"
114
- },
115
- "devDependencies": {
116
- "@types/better-sqlite3": "^7.6.0",
117
- "@types/knex": "^0.15.2",
118
- "@types/node": "^20.0.0",
119
- "husky": "^9.1.7",
120
- "rimraf": "^6.1.0",
121
- "tsx": "^4.20.6",
122
- "typescript": "^5.0.0"
123
- }
124
- }
1
+ {
2
+ "name": "sqlew",
3
+ "description": "Automated ADR (Architecture Decision Records) for Claude Code - MCP server with SQL-backed decision repository",
4
+ "version": "4.1.1",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "sqlew": "dist/index.js",
9
+ "sqlew-init-commands": "dist/init-commands.js"
10
+ },
11
+ "files": [
12
+ "dist/",
13
+ "scripts/",
14
+ "assets/",
15
+ "docs/",
16
+ "README.md",
17
+ "LICENSE",
18
+ "NOTICE",
19
+ "CHANGELOG.md",
20
+ "MIGRATION_v2.md"
21
+ ],
22
+ "scripts": {
23
+ "build": "tsc",
24
+ "start": "node dist/index.js",
25
+ "cli": "node dist/cli.js",
26
+ "inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
27
+ "dev": "tsc --watch",
28
+ "clean": "rimraf dist",
29
+ "rebuild": "npm run clean && npm run build",
30
+ "test": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" \"src/tests/feature/decision/**/*.test.ts\" \"src/tests/feature/task/**/*.test.ts\" \"src/tests/feature/help/**/*.test.ts\" \"src/tests/database/connection/**/*.test.ts\" \"src/tests/database/multi-project/**/*.test.ts\" \"src/tests/database/sql-dump/**/*.test.ts\" \"src/tests/integration/**/*.test.ts\" | node scripts/filter-test-output.js",
31
+ "test:verbose": "node --test --experimental-test-coverage --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" \"src/tests/feature/decision/**/*.test.ts\" \"src/tests/feature/task/**/*.test.ts\" \"src/tests/feature/help/**/*.test.ts\" \"src/tests/database/connection/**/*.test.ts\" \"src/tests/database/multi-project/**/*.test.ts\" \"src/tests/database/sql-dump/**/*.test.ts\" \"src/tests/integration/**/*.test.ts\"",
32
+ "test:ci": "npm run build && npm test",
33
+ "test:vcs": "node --test --test-force-exit --import tsx \"src/tests/feature/vcs/**/*.test.ts\" | node scripts/filter-test-output.js",
34
+ "test:vcs:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/vcs/**/*.test.ts\"",
35
+ "test:all": "node --test --test-force-exit --import tsx \"src/tests/**/*.test.ts\" | node scripts/filter-test-output.js",
36
+ "test:all:verbose": "node --test --experimental-test-coverage --test-force-exit --import tsx \"src/tests/**/*.test.ts\"",
37
+ "test:unit": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" | node scripts/filter-test-output.js",
38
+ "test:unit:verbose": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\"",
39
+ "test:feature": "node --test --test-force-exit --import tsx \"src/tests/feature/**/*.test.ts\" | node scripts/filter-test-output.js",
40
+ "test:feature:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/**/*.test.ts\"",
41
+ "test:database": "node --test --test-force-exit --import tsx \"src/tests/database/connection/**/*.test.ts\" \"src/tests/database/multi-project/**/*.test.ts\" \"src/tests/database/sql-dump/**/*.test.ts\" | node scripts/filter-test-output.js",
42
+ "test:database:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/connection/**/*.test.ts\" \"src/tests/database/multi-project/**/*.test.ts\" \"src/tests/database/sql-dump/**/*.test.ts\"",
43
+ "test:integration": "node --test --test-force-exit --import tsx \"src/tests/integration/**/*.test.ts\" | node scripts/filter-test-output.js",
44
+ "test:integration:verbose": "node --test --test-force-exit --import tsx \"src/tests/integration/**/*.test.ts\"",
45
+ "test:decision": "node --test --test-force-exit --import tsx \"src/tests/feature/decision/**/*.test.ts\" | node scripts/filter-test-output.js",
46
+ "test:decision:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/decision/**/*.test.ts\"",
47
+ "test:task": "node --test --test-force-exit --import tsx \"src/tests/feature/task/**/*.test.ts\" | node scripts/filter-test-output.js",
48
+ "test:task:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/task/**/*.test.ts\"",
49
+ "test:migrations": "echo 'v4 migration tests not yet implemented - use test:native for RDBMS migration tests'",
50
+ "test:migrations:verbose": "echo 'v4 migration tests not yet implemented - use test:native:verbose for RDBMS migration tests'",
51
+ "test:sql-dump": "node --test --test-force-exit --import tsx \"src/tests/database/sql-dump/**/*.test.ts\" | node scripts/filter-test-output.js",
52
+ "test:sql-dump:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/sql-dump/**/*.test.ts\"",
53
+ "test:all-features": "npm run build && node dist/tests/integration/all-features.standalone.js",
54
+ "test:docker": "npm run build && node --test --test-force-exit dist/tests/docker/**/*.test.js",
55
+ "test:native": "npm run build && node --test --test-concurrency=1 --test-force-exit dist/tests/docker/native/**/*.test.js | node scripts/filter-test-output.js",
56
+ "test:native:verbose": "npm run build && node --test --test-concurrency=1 --test-force-exit dist/tests/docker/native/**/*.test.js",
57
+ "test:migration-upgrade-paths": "echo 'v3 migration tests moved to v3 subdirectory - use test:native for v4 RDBMS tests'",
58
+ "test:migration-idempotency": "echo 'v3 migration tests moved to v3 subdirectory - use test:native for v4 RDBMS tests'",
59
+ "test:migrations:all": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
60
+ "test:migrations:ci": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
61
+ "prepare": "husky",
62
+ "prepublishOnly": "npm run rebuild",
63
+ "knex": "npx tsx node_modules/knex/bin/cli.js --knexfile src/knexfile.ts",
64
+ "migrate:make": "npm run knex migrate:make",
65
+ "migrate:latest": "npm run knex migrate:latest",
66
+ "migrate:rollback": "npm run knex migrate:rollback",
67
+ "migrate:rollback:all": "npm run knex migrate:rollback --all",
68
+ "migrate:status": "npm run knex migrate:status",
69
+ "seed:make": "npm run knex seed:make",
70
+ "seed:run": "npm run knex seed:run",
71
+ "db:dump": "node dist/cli.js db:dump",
72
+ "db:export": "node dist/cli.js db:export",
73
+ "db:import": "node dist/cli.js db:import"
74
+ },
75
+ "engines": {
76
+ "node": ">=20.0.0"
77
+ },
78
+ "repository": {
79
+ "type": "git",
80
+ "url": "git+https://github.com/sin5ddd/mcp-sqlew.git"
81
+ },
82
+ "bugs": {
83
+ "url": "https://github.com/sin5ddd/mcp-sqlew/issues"
84
+ },
85
+ "homepage": "https://github.com/sin5ddd/mcp-sqlew#readme",
86
+ "keywords": [
87
+ "adr",
88
+ "architecture-decision-record",
89
+ "mcp",
90
+ "mcp-server",
91
+ "model-context-protocol",
92
+ "ai-agents",
93
+ "claude-code",
94
+ "architectural-decisions",
95
+ "decision-management",
96
+ "sqlite",
97
+ "postgresql",
98
+ "mysql",
99
+ "token-efficiency"
100
+ ],
101
+ "author": "sin5ddd",
102
+ "license": "Apache-2.0",
103
+ "dependencies": {
104
+ "@modelcontextprotocol/sdk": "^1.21.1",
105
+ "better-sqlite3": "^12.4.1",
106
+ "chokidar": "^4.0.3",
107
+ "ignore": "^7.0.5",
108
+ "knex": "^3.1.0",
109
+ "knex-schema-inspector": "^3.1.0",
110
+ "mysql2": "^3.15.3",
111
+ "pg": "^8.16.3",
112
+ "smol-toml": "^1.4.2"
113
+ },
114
+ "devDependencies": {
115
+ "@types/better-sqlite3": "^7.6.0",
116
+ "@types/knex": "^0.15.2",
117
+ "@types/node": "^20.0.0",
118
+ "husky": "^9.1.7",
119
+ "rimraf": "^6.1.0",
120
+ "tsx": "^4.20.6",
121
+ "typescript": "^5.0.0"
122
+ }
123
+ }