@devflow-tools/database 0.17.7 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +2 -2
  3. package/dist/data/LocalDataProvider.d.ts +63 -0
  4. package/dist/data/LocalDataProvider.js +332 -0
  5. package/dist/data/default-enforcer-rules.d.ts +3 -0
  6. package/dist/data/default-enforcer-rules.js +170 -0
  7. package/dist/data/devflow-schema.d.ts +2 -0
  8. package/dist/data/devflow-schema.js +80 -0
  9. package/dist/database.d.ts +45 -7
  10. package/dist/database.js +583 -125
  11. package/dist/index.d.ts +8 -4
  12. package/dist/index.js +11 -5
  13. package/dist/retrieval-ledger.d.ts +16 -1
  14. package/dist/retrieval-ledger.js +6 -0
  15. package/dist/retrieval-runtime.d.ts +39 -0
  16. package/dist/retrieval-runtime.js +2 -0
  17. package/dist/task-aggregate.d.ts +49 -0
  18. package/dist/task-aggregate.js +2 -0
  19. package/dist/task-semantic-control.d.ts +8 -1
  20. package/dist/task-semantic-control.js +2 -4
  21. package/package.json +15 -3
  22. package/CHANGELOG.md +0 -836
  23. package/__tests__/database.failure-category.test.ts +0 -44
  24. package/__tests__/database.host-actions.test.ts +0 -405
  25. package/__tests__/database.learning-candidates.test.ts +0 -93
  26. package/__tests__/database.memory-turn-receipts.test.ts +0 -98
  27. package/__tests__/database.retrieval-ledger.test.ts +0 -68
  28. package/__tests__/database.retrieval-sessions.test.ts +0 -79
  29. package/__tests__/database.semantic-resolution.test.ts +0 -87
  30. package/__tests__/database.skill-executions.test.ts +0 -456
  31. package/__tests__/database.task-runtime.test.ts +0 -73
  32. package/__tests__/database.test.ts +0 -177
  33. package/__tests__/database.work-queue.test.ts +0 -274
  34. package/__tests__/database.workflow-workers.test.ts +0 -60
  35. package/__tests__/node-sqlite.test.ts +0 -68
  36. package/src/database.ts +0 -5853
  37. package/src/host-actions.ts +0 -211
  38. package/src/index.ts +0 -153
  39. package/src/learning-candidates.ts +0 -181
  40. package/src/node-sqlite.ts +0 -60
  41. package/src/obligation-ledger.ts +0 -57
  42. package/src/retrieval-ledger.ts +0 -35
  43. package/src/retrieval-sessions.ts +0 -196
  44. package/src/semantic-resolution.ts +0 -181
  45. package/src/task-runtime.ts +0 -169
  46. package/src/task-semantic-control.ts +0 -270
  47. package/src/types.ts +0 -17
  48. package/src/work-queue.ts +0 -123
  49. package/src/workflow-workers.ts +0 -198
  50. package/tsconfig.json +0 -19
  51. package/tsconfig.tsbuildinfo +0 -1
  52. package/vitest.config.ts +0 -41
package/CHANGELOG.md DELETED
@@ -1,836 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [0.17.7](https://github.com/shilongfeicool/dev-flow/compare/v0.17.6...v0.17.7) (2026-08-04)
7
-
8
- **Note:** Version bump only for package @devflow-tools/database
9
-
10
-
11
-
12
-
13
-
14
- ## [0.17.6](https://github.com/shilongfeicool/dev-flow/compare/v0.17.5...v0.17.6) (2026-08-04)
15
-
16
- **Note:** Version bump only for package @devflow-tools/database
17
-
18
-
19
-
20
-
21
-
22
- ## [0.17.4](https://github.com/shilongfeicool/dev-flow/compare/v0.17.3...v0.17.4) (2026-08-04)
23
-
24
-
25
- ### Features
26
-
27
- * **semantic:** persist resolution revisions ([cffa6ca](https://github.com/shilongfeicool/dev-flow/commit/cffa6ca24fb08b54bdd8e516167895e660c6eacc))
28
-
29
-
30
-
31
-
32
-
33
- ## [0.17.3](https://github.com/shilongfeicool/dev-flow/compare/v0.17.2...v0.17.3) (2026-08-03)
34
-
35
-
36
- ### Bug Fixes
37
-
38
- * **runtime:** enforce evidence-driven task truth ([6a8f84a](https://github.com/shilongfeicool/dev-flow/commit/6a8f84abf62666dfb7b8643fa88a5e9489940fce))
39
-
40
-
41
- ### Features
42
-
43
- * **evidence:** attribute consumed and verified retrieval ([65e5828](https://github.com/shilongfeicool/dev-flow/commit/65e5828de6d8455a2712ff78ea411aa2bf8be829))
44
- * **runtime:** persist and reduce task events ([f1966c5](https://github.com/shilongfeicool/dev-flow/commit/f1966c5eaa6c023b88c4c52b3109657b7ad8cca1))
45
- * **runtime:** shadow online task reduction ([c15088c](https://github.com/shilongfeicool/dev-flow/commit/c15088c9fc9434bba86bcbceeb107da36f2d9606))
46
- * **semantic:** harden durable memory and knowledge work ([69eab16](https://github.com/shilongfeicool/dev-flow/commit/69eab16012ad7b3cb6a7a38ddcb1c7c1fc30054a))
47
-
48
-
49
-
50
-
51
-
52
- ## [0.17.2](https://github.com/shilongfeicool/dev-flow/compare/v0.17.1...v0.17.2) (2026-08-01)
53
-
54
-
55
- ### Bug Fixes
56
-
57
- * **reliability:** close semantic lifecycle gaps ([08bae87](https://github.com/shilongfeicool/dev-flow/commit/08bae8742c5907dffdd476679e70c86cc373a7e8))
58
-
59
-
60
- ### Features
61
-
62
- * **reliability:** strengthen semantic retrieval closure ([b979ab3](https://github.com/shilongfeicool/dev-flow/commit/b979ab3ec790e3d7119db512902db90a9567667d))
63
-
64
-
65
-
66
-
67
-
68
- ## [0.17.1](https://github.com/shilongfeicool/dev-flow/compare/v0.16.28...v0.17.1) (2026-07-31)
69
-
70
-
71
- ### Features
72
-
73
- * **context:** preserve immutable task intent ([249023d](https://github.com/shilongfeicool/dev-flow/commit/249023d091970bdb6a2744ac467cdf594c353d00))
74
- * **control:** add task semantic identity contracts ([480d213](https://github.com/shilongfeicool/dev-flow/commit/480d2138e8408f25b888228d5e20050a938c50ec))
75
- * **hooks:** close turns with canonical receipts ([69a577a](https://github.com/shilongfeicool/dev-flow/commit/69a577ada60abaf6c729f9722715bfe6f310bb2f))
76
- * **retrieval:** enforce actions and track verified outcomes ([5e2756a](https://github.com/shilongfeicool/dev-flow/commit/5e2756ababaa246cd78ea7bc6877f59e5972e5db))
77
-
78
-
79
-
80
-
81
-
82
- # [0.17.0](https://github.com/shilongfeicool/dev-flow/compare/v0.16.28...v0.17.0) (2026-07-30)
83
-
84
-
85
- ### Features
86
-
87
- * **retrieval:** enforce actions and track verified outcomes ([5e2756a](https://github.com/shilongfeicool/dev-flow/commit/5e2756ababaa246cd78ea7bc6877f59e5972e5db))
88
-
89
-
90
-
91
-
92
-
93
- ## [0.16.34](https://github.com/shilongfeicool/dev-flow/compare/v0.16.28...v0.16.34) (2026-07-30)
94
-
95
-
96
- ### Features
97
-
98
- * **retrieval:** enforce actions and track verified outcomes ([5e2756a](https://github.com/shilongfeicool/dev-flow/commit/5e2756ababaa246cd78ea7bc6877f59e5972e5db))
99
-
100
-
101
-
102
-
103
-
104
- ## [0.16.33](https://github.com/shilongfeicool/dev-flow/compare/v0.16.28...v0.16.33) (2026-07-29)
105
-
106
-
107
- ### Features
108
-
109
- * **retrieval:** enforce actions and track verified outcomes ([5e2756a](https://github.com/shilongfeicool/dev-flow/commit/5e2756ababaa246cd78ea7bc6877f59e5972e5db))
110
-
111
-
112
-
113
-
114
-
115
- ## [0.16.32](https://github.com/shilongfeicool/dev-flow/compare/v0.16.28...v0.16.32) (2026-07-29)
116
-
117
-
118
- ### Features
119
-
120
- * **retrieval:** enforce actions and track verified outcomes ([5e2756a](https://github.com/shilongfeicool/dev-flow/commit/5e2756ababaa246cd78ea7bc6877f59e5972e5db))
121
-
122
-
123
-
124
-
125
-
126
- ## [0.16.31](https://github.com/shilongfeicool/dev-flow/compare/v0.16.28...v0.16.31) (2026-07-29)
127
-
128
-
129
- ### Features
130
-
131
- * **retrieval:** enforce actions and track verified outcomes ([5e2756a](https://github.com/shilongfeicool/dev-flow/commit/5e2756ababaa246cd78ea7bc6877f59e5972e5db))
132
-
133
-
134
-
135
-
136
-
137
- ## [0.16.30](https://github.com/shilongfeicool/dev-flow/compare/v0.16.28...v0.16.30) (2026-07-29)
138
-
139
-
140
- ### Features
141
-
142
- * **retrieval:** enforce actions and track verified outcomes ([5e2756a](https://github.com/shilongfeicool/dev-flow/commit/5e2756ababaa246cd78ea7bc6877f59e5972e5db))
143
-
144
-
145
-
146
-
147
-
148
- ## [0.16.29](https://github.com/shilongfeicool/dev-flow/compare/v0.16.28...v0.16.29) (2026-07-29)
149
-
150
-
151
- ### Features
152
-
153
- * **retrieval:** enforce actions and track verified outcomes ([5e2756a](https://github.com/shilongfeicool/dev-flow/commit/5e2756ababaa246cd78ea7bc6877f59e5972e5db))
154
-
155
-
156
-
157
-
158
-
159
- ## [0.16.28](https://github.com/shilongfeicool/dev-flow/compare/v0.16.27...v0.16.28) (2026-07-29)
160
-
161
- **Note:** Version bump only for package @devflow-tools/database
162
-
163
-
164
-
165
-
166
-
167
- ## [0.16.27](https://github.com/shilongfeicool/dev-flow/compare/v0.16.26...v0.16.27) (2026-07-29)
168
-
169
- **Note:** Version bump only for package @devflow-tools/database
170
-
171
-
172
-
173
-
174
-
175
- ## [0.16.26](https://github.com/shilongfeicool/dev-flow/compare/v0.16.25...v0.16.26) (2026-07-28)
176
-
177
- **Note:** Version bump only for package @devflow-tools/database
178
-
179
-
180
-
181
-
182
-
183
- ## [0.16.25](https://github.com/shilongfeicool/dev-flow/compare/v0.16.24...v0.16.25) (2026-07-28)
184
-
185
- **Note:** Version bump only for package @devflow-tools/database
186
-
187
-
188
-
189
-
190
-
191
- ## [0.16.24](https://github.com/shilongfeicool/dev-flow/compare/v0.16.23...v0.16.24) (2026-07-28)
192
-
193
-
194
- ### Bug Fixes
195
-
196
- * **reliability:** close retrieval and worker quality gaps ([298c3fd](https://github.com/shilongfeicool/dev-flow/commit/298c3fde758fd06acafefd1c842d329fdf437c61))
197
-
198
-
199
-
200
-
201
-
202
- ## [0.16.23](https://github.com/shilongfeicool/dev-flow/compare/v0.16.22...v0.16.23) (2026-07-28)
203
-
204
-
205
- ### Features
206
-
207
- * **database:** persist workflow worker lifecycle ([6f57fc7](https://github.com/shilongfeicool/dev-flow/commit/6f57fc7d7f13915b4f9b7faaa5e37c1a04182cad))
208
- * **workflow:** execute durable worker lifecycle ([799cc9d](https://github.com/shilongfeicool/dev-flow/commit/799cc9d341b6d4251717e20665654809ed84e29d))
209
-
210
-
211
-
212
-
213
-
214
- ## [0.16.22](https://github.com/shilongfeicool/dev-flow/compare/v0.16.21...v0.16.22) (2026-07-28)
215
-
216
-
217
- ### Features
218
-
219
- * **learning:** add governed overlays and evaluation ([795747d](https://github.com/shilongfeicool/dev-flow/commit/795747db10b3f13dfe5b442e8332673084774d5e))
220
-
221
-
222
-
223
-
224
-
225
- ## [0.16.21](https://github.com/shilongfeicool/dev-flow/compare/v0.16.20...v0.16.21) (2026-07-28)
226
-
227
-
228
- ### Performance Improvements
229
-
230
- * **runtime:** scope tools and context payloads ([7417eac](https://github.com/shilongfeicool/dev-flow/commit/7417eacd26f4d28097c8dfe7ab073efbe7a1404e))
231
-
232
-
233
-
234
-
235
-
236
- ## [0.16.20](https://github.com/shilongfeicool/dev-flow/compare/v0.16.19...v0.16.20) (2026-07-28)
237
-
238
-
239
- ### Features
240
-
241
- * **retrieval:** close outcome-aware retrieval quality ([e4048a1](https://github.com/shilongfeicool/dev-flow/commit/e4048a1d921a85bd078de031b334f24cb8f4f393))
242
-
243
-
244
-
245
-
246
-
247
- ## [0.16.19](https://github.com/shilongfeicool/dev-flow/compare/v0.16.18...v0.16.19) (2026-07-28)
248
-
249
-
250
- ### Bug Fixes
251
-
252
- * **database:** harden host action evidence ([b74dc11](https://github.com/shilongfeicool/dev-flow/commit/b74dc110e0b96583dd741d2772c286e414928e45))
253
-
254
-
255
- ### Features
256
-
257
- * **database:** persist workflow host actions ([6e42606](https://github.com/shilongfeicool/dev-flow/commit/6e42606ff028a591878ade9378c5277257a35961))
258
-
259
-
260
-
261
-
262
-
263
- ## [0.16.18](https://github.com/shilongfeicool/dev-flow/compare/v0.16.17...v0.16.18) (2026-07-27)
264
-
265
- **Note:** Version bump only for package @devflow-tools/database
266
-
267
-
268
-
269
-
270
-
271
- ## [0.16.17](https://github.com/shilongfeicool/dev-flow/compare/v0.16.16...v0.16.17) (2026-07-27)
272
-
273
- **Note:** Version bump only for package @devflow-tools/database
274
-
275
-
276
-
277
-
278
-
279
- ## [0.16.16](https://github.com/shilongfeicool/dev-flow/compare/v0.16.15...v0.16.16) (2026-07-27)
280
-
281
- **Note:** Version bump only for package @devflow-tools/database
282
-
283
-
284
-
285
-
286
-
287
- ## [0.16.15](https://github.com/shilongfeicool/dev-flow/compare/v0.16.14...v0.16.15) (2026-07-27)
288
-
289
- **Note:** Version bump only for package @devflow-tools/database
290
-
291
-
292
-
293
-
294
-
295
- ## [0.16.14](https://github.com/shilongfeicool/dev-flow/compare/v0.16.13...v0.16.14) (2026-07-27)
296
-
297
- **Note:** Version bump only for package @devflow-tools/database
298
-
299
-
300
-
301
-
302
-
303
- ## [0.16.13](https://github.com/shilongfeicool/dev-flow/compare/v0.16.12...v0.16.13) (2026-07-26)
304
-
305
-
306
- ### Features
307
-
308
- * add retrieval quality control plane ([743bd12](https://github.com/shilongfeicool/dev-flow/commit/743bd12daa18ceec611dc82674b20b015d110f0c))
309
-
310
-
311
-
312
-
313
-
314
- ## [0.16.12](https://github.com/shilongfeicool/dev-flow/compare/v0.16.11...v0.16.12) (2026-07-26)
315
-
316
-
317
- ### Bug Fixes
318
-
319
- * **database:** support Node 24 sqlite result types ([40efed3](https://github.com/shilongfeicool/dev-flow/commit/40efed3d8c629990f5e29324b3aba673c16a091b))
320
- * **memory:** make embedding model resilient ([e24fd08](https://github.com/shilongfeicool/dev-flow/commit/e24fd086b09d0327e5a69c118f02501caffcf280))
321
- * **runtime:** close final reliability gaps ([86edd2b](https://github.com/shilongfeicool/dev-flow/commit/86edd2b49acf3559c9e66643ca913fc3a9728731))
322
- * **runtime:** harden session reconciliation retries ([fc38e56](https://github.com/shilongfeicool/dev-flow/commit/fc38e561450540adecf7883666453f22fa4a9271))
323
- * **runtime:** preserve reconciliation retry state ([2cec7fe](https://github.com/shilongfeicool/dev-flow/commit/2cec7fe5156a7ab48fbf19c7a427cbca71e7de09))
324
- * **runtime:** reconcile session lifecycle telemetry ([87b2f7c](https://github.com/shilongfeicool/dev-flow/commit/87b2f7c0c04a572ab396d0da1cc13eada7779691))
325
-
326
-
327
-
328
-
329
-
330
- ## [0.16.10](https://github.com/shilongfeicool/dev-flow/compare/v0.16.9...v0.16.10) (2026-07-24)
331
-
332
-
333
- ### Bug Fixes
334
-
335
- * **telemetry:** persist compliance failure facts ([fcb5a8b](https://github.com/shilongfeicool/dev-flow/commit/fcb5a8b4db37fc545927262ae841669395491b06))
336
-
337
-
338
- ### Features
339
-
340
- * **memory:** add canonical turn and explicit receipts ([eb3e178](https://github.com/shilongfeicool/dev-flow/commit/eb3e1786e17f5dbc2c4e12e4fa788af7095d335e))
341
-
342
-
343
-
344
-
345
-
346
- ## [0.16.9](https://github.com/shilongfeicool/dev-flow/compare/v0.16.8...v0.16.9) (2026-07-23)
347
-
348
- **Note:** Version bump only for package @devflow-tools/database
349
-
350
-
351
-
352
-
353
-
354
- ## [0.16.8](https://github.com/shilongfeicool/dev-flow/compare/v0.16.7...v0.16.8) (2026-07-23)
355
-
356
- **Note:** Version bump only for package @devflow-tools/database
357
-
358
-
359
-
360
-
361
-
362
- ## [0.16.7](https://github.com/shilongfeicool/dev-flow/compare/v0.16.6...v0.16.7) (2026-07-23)
363
-
364
- **Note:** Version bump only for package @devflow-tools/database
365
-
366
-
367
-
368
-
369
-
370
- ## [0.16.6](https://github.com/shilongfeicool/dev-flow/compare/v0.16.2...v0.16.6) (2026-07-23)
371
-
372
-
373
- ### Bug Fixes
374
-
375
- * close context memory and hook lifecycle gaps ([7acb85e](https://github.com/shilongfeicool/dev-flow/commit/7acb85e68a5b0ad61aeb144b6af0935cc1092a03))
376
- * close production context and memory quality gaps ([10cf2f4](https://github.com/shilongfeicool/dev-flow/commit/10cf2f4eb40be0d86d9122ddae030ef302d51abb))
377
- * **telemetry:** measure required MCP obligations ([f7e976c](https://github.com/shilongfeicool/dev-flow/commit/f7e976c28bf1629cf4c05c2ba6a49f569bf882d7))
378
-
379
-
380
-
381
-
382
-
383
- ## [0.16.5](https://github.com/shilongfeicool/dev-flow/compare/v0.16.2...v0.16.5) (2026-07-23)
384
-
385
-
386
- ### Bug Fixes
387
-
388
- * close context memory and hook lifecycle gaps ([7acb85e](https://github.com/shilongfeicool/dev-flow/commit/7acb85e68a5b0ad61aeb144b6af0935cc1092a03))
389
- * **telemetry:** measure required MCP obligations ([f7e976c](https://github.com/shilongfeicool/dev-flow/commit/f7e976c28bf1629cf4c05c2ba6a49f569bf882d7))
390
-
391
-
392
-
393
-
394
-
395
- ## [0.16.4](https://github.com/shilongfeicool/dev-flow/compare/v0.16.2...v0.16.4) (2026-07-22)
396
-
397
-
398
- ### Bug Fixes
399
-
400
- * **telemetry:** measure required MCP obligations ([f7e976c](https://github.com/shilongfeicool/dev-flow/commit/f7e976c28bf1629cf4c05c2ba6a49f569bf882d7))
401
-
402
-
403
-
404
-
405
-
406
- ## [0.16.3](https://github.com/shilongfeicool/dev-flow/compare/v0.16.2...v0.16.3) (2026-07-22)
407
-
408
-
409
- ### Bug Fixes
410
-
411
- * **telemetry:** measure required MCP obligations ([f7e976c](https://github.com/shilongfeicool/dev-flow/commit/f7e976c28bf1629cf4c05c2ba6a49f569bf882d7))
412
-
413
-
414
-
415
-
416
-
417
- ## [0.16.2](https://github.com/shilongfeicool/dev-flow/compare/v0.16.1...v0.16.2) (2026-07-22)
418
-
419
-
420
- ### Bug Fixes
421
-
422
- * harden Claude plugin lifecycle ([992e74f](https://github.com/shilongfeicool/dev-flow/commit/992e74ff0a37cdb5132736eba3926be7639ac806))
423
-
424
-
425
-
426
-
427
-
428
- # [0.16.0](https://github.com/shilongfeicool/dev-flow/compare/v0.15.0...v0.16.0) (2026-07-22)
429
-
430
-
431
- ### Bug Fixes
432
-
433
- * **batch2:** close final telemetry and migration races ([7340608](https://github.com/shilongfeicool/dev-flow/commit/7340608419e6cb476ed44662728f1dfe8466f4c9))
434
-
435
-
436
- ### Features
437
-
438
- * **batch4:** audit mcp surface health ([1b60d74](https://github.com/shilongfeicool/dev-flow/commit/1b60d74c8da23964743a82097244f585532871cb))
439
- * **batch4:** consolidate hook lifecycle state ([803b221](https://github.com/shilongfeicool/dev-flow/commit/803b2219d5d73f3ce322f572ba625bb321f3b126))
440
- * **batch4:** establish benchmark baseline pipeline ([8741192](https://github.com/shilongfeicool/dev-flow/commit/8741192f96280962160619fcdb0c47bf94315862))
441
- * **batch4:** persist enforcer governance ([2ecf668](https://github.com/shilongfeicool/dev-flow/commit/2ecf668fb0493a1a649c4d16cc17f021d6f70031))
442
- * **batch4:** wire workflow failure attribution ([682d12b](https://github.com/shilongfeicool/dev-flow/commit/682d12ba715d4003af33ad38610b5655f1b49d8a))
443
- * **telemetry:** make global sqlite the primary writer ([751eb5b](https://github.com/shilongfeicool/dev-flow/commit/751eb5b48889220991af5016b5fe3e4d176f4770))
444
-
445
-
446
-
447
-
448
-
449
- # [0.15.0](https://github.com/shilongfeicool/dev-flow/compare/v0.14.4...v0.15.0) (2026-07-16)
450
-
451
- **Note:** Version bump only for package @devflow-tools/database
452
-
453
-
454
-
455
-
456
-
457
- # [0.14.0](https://github.com/shilongfeicool/dev-flow/compare/v0.13.3...v0.14.0) (2026-07-15)
458
-
459
- **Note:** Version bump only for package @devflow-tools/database
460
-
461
-
462
-
463
-
464
-
465
- ## [0.13.3](https://github.com/shilongfeicool/dev-flow/compare/v0.13.2...v0.13.3) (2026-07-13)
466
-
467
- **Note:** Version bump only for package @devflow-tools/database
468
-
469
-
470
-
471
-
472
-
473
- ## [0.13.1](https://github.com/shilongfeicool/dev-flow/compare/v0.13.0...v0.13.1) (2026-07-13)
474
-
475
-
476
- ### Features
477
-
478
- * **database:** add 3 SQLite views for logging system queries ([ae05b09](https://github.com/shilongfeicool/dev-flow/commit/ae05b092646a49e8f12e887aaf70167a12010f67))
479
-
480
-
481
-
482
-
483
-
484
- # [0.13.0](https://github.com/shilongfeicool/dev-flow/compare/v0.12.6...v0.13.0) (2026-07-13)
485
-
486
- **Note:** Version bump only for package @devflow-tools/database
487
-
488
-
489
-
490
-
491
-
492
- ## [0.12.5](https://github.com/shilongfeicool/dev-flow/compare/v0.12.4...v0.12.5) (2026-07-11)
493
-
494
-
495
- ### Bug Fixes
496
-
497
- * remove uncomputable benchmark metrics and fix session status detection ([470e2ba](https://github.com/shilongfeicool/dev-flow/commit/470e2ba5562a78ddef8d638f178a466ffe2e5c65))
498
-
499
-
500
-
501
-
502
-
503
- # [0.12.0](https://github.com/shilongfeicool/dev-flow/compare/v0.11.0...v0.12.0) (2026-07-11)
504
-
505
- **Note:** Version bump only for package @devflow-tools/database
506
-
507
-
508
-
509
-
510
-
511
- # [0.11.0](https://github.com/shilongfeicool/dev-flow/compare/v0.10.0...v0.11.0) (2026-07-11)
512
-
513
- **Note:** Version bump only for package @devflow-tools/database
514
-
515
-
516
-
517
-
518
-
519
- # [0.10.0](https://github.com/shilongfeicool/dev-flow/compare/v0.9.0...v0.10.0) (2026-07-11)
520
-
521
-
522
- ### Bug Fixes
523
-
524
- * **data-accuracy:** 13 architectural fixes for index sync, dedup, graph API, context layering, telemetry ([bcb34e4](https://github.com/shilongfeicool/dev-flow/commit/bcb34e4d945b99c385deceda92572a9cdd9d19d4))
525
- * **database:** add WAL mode and busy timeout to prevent SQLite lock errors ([3bd6f74](https://github.com/shilongfeicool/dev-flow/commit/3bd6f745d7a34bb898ce772695cbe0badb30933a))
526
- * **mcp:** fix plugin workflow registration and database schema init ([88b2bff](https://github.com/shilongfeicool/dev-flow/commit/88b2bffcec332106d699ee6ff03c1fb715f1978f))
527
-
528
-
529
-
530
-
531
-
532
- # [0.9.0](https://github.com/shilongfeicool/dev-flow/compare/v0.8.11...v0.9.0) (2026-07-10)
533
-
534
-
535
- ### Bug Fixes
536
-
537
- * auto-checker interface mismatch, memory cleanup, type safety, and L3 extraction ([bf3b6db](https://github.com/shilongfeicool/dev-flow/commit/bf3b6dbbabae9246b919461b40ad7e35352378b7))
538
- * **mcp:** route devflow_report_event to correct telemetry endpoint ([e7a4b2f](https://github.com/shilongfeicool/dev-flow/commit/e7a4b2f9a1515c199675768fb4a549fe5a00054c))
539
- * **telemetry:** resolve FK constraint blocking tool-call events from reaching DB ([cbfb9c3](https://github.com/shilongfeicool/dev-flow/commit/cbfb9c31d345e83fc81732053ae67a3c3c193bb7))
540
-
541
-
542
- ### Features
543
-
544
- * add query logger + accuracy_queries table + annotation API ([a2ccc59](https://github.com/shilongfeicool/dev-flow/commit/a2ccc592b82fbc81bb25dd5c88212d7e10bde896))
545
- * add tool metrics pipeline — tool_metrics table, collection in post-tool-use, aggregation API ([d3452aa](https://github.com/shilongfeicool/dev-flow/commit/d3452aa195b8ec6414846432047c43bf64117c30))
546
-
547
-
548
-
549
-
550
-
551
- ## [0.8.11](https://github.com/shilongfeicool/dev-flow/compare/v0.8.10...v0.8.11) (2026-07-10)
552
-
553
-
554
- ### Bug Fixes
555
-
556
- * **database:** add kind and workflow_run_id columns, add cleanupStaleRecords method ([b93ca4e](https://github.com/shilongfeicool/dev-flow/commit/b93ca4ede19aff7ea249c1cbca05e4b6c507d628))
557
- * **database:** drop FK constraint, closeSession dual-path query, idempotent listSkillExecutions, session_id index ([5d9091a](https://github.com/shilongfeicool/dev-flow/commit/5d9091a9f0586c0dee247e1d8b778e4b3fa07653))
558
-
559
-
560
- ### Features
561
-
562
- * **database:** add sessions table, add session_id to skill_executions and tool_call_events, remove tokens_used ([1decff8](https://github.com/shilongfeicool/dev-flow/commit/1decff8ff68f3581228f4f3dc31414e0acdcac66))
563
-
564
-
565
-
566
-
567
-
568
- ## [0.8.10](https://github.com/shilongfeicool/dev-flow/compare/v0.8.6...v0.8.10) (2026-07-10)
569
-
570
-
571
- ### Features
572
-
573
- * 发布 v0.8.9 版本并新增内存事件跟踪功能 ([5a40207](https://github.com/shilongfeicool/dev-flow/commit/5a402076dee1f13433161ff015c70b8550167d08))
574
- * **database:** add updateToolCallEvent for PostToolUse output backfill ([12ba25d](https://github.com/shilongfeicool/dev-flow/commit/12ba25dd47823f92078363f8d3341a497687ae90))
575
- * **telemetry,knowledge,memory:** 完善工具调用遥测、知识同步与内存提取能力 ([1fd315b](https://github.com/shilongfeicool/dev-flow/commit/1fd315ba2837c572116fdc63822331a4ab0a470b))
576
- * **telemetry:** add output endpoint + defensive real counting ([304f7d7](https://github.com/shilongfeicool/dev-flow/commit/304f7d75687df478e7d0596a9e9a749cc7b4e9a1))
577
-
578
-
579
-
580
-
581
-
582
- ## [0.8.8](https://github.com/shilongfeicool/dev-flow/compare/v0.8.6...v0.8.8) (2026-07-09)
583
-
584
- **Note:** Version bump only for package @devflow-tools/database
585
-
586
-
587
-
588
-
589
-
590
- ## [0.8.7](https://github.com/shilongfeicool/dev-flow/compare/v0.8.6...v0.8.7) (2026-07-09)
591
-
592
- **Note:** Version bump only for package @devflow-tools/database
593
-
594
-
595
-
596
-
597
-
598
- ## [0.8.6](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.8.6) (2026-07-09)
599
-
600
-
601
- ### Bug Fixes
602
-
603
- * **database:** parameterize LIMIT clause in listSkillExecutions ([d85a440](https://github.com/shilongfeicool/dev-flow/commit/d85a440e727434bd8df2ab0cb0d408183f006731))
604
- * replace lerna publish from-package with per-package npm publish ([e27463e](https://github.com/shilongfeicool/dev-flow/commit/e27463e379ee5860341b3c4ae121de3f2da3d010))
605
- * **server:** persist activeProjectRoot to SQLite + add POST /projects/switch ([7cbe96e](https://github.com/shilongfeicool/dev-flow/commit/7cbe96e0f92d60b54261d61df1fb0ad18eacc4a1))
606
- * update PreToolUse hook output to modern hookSpecificOutput format ([08e4704](https://github.com/shilongfeicool/dev-flow/commit/08e47047445ba2b8112669608264af9971627138))
607
-
608
-
609
- ### Features
610
-
611
- * 实现新一代本地向量内存存储系统并修复多项配套问题 ([39eea1d](https://github.com/shilongfeicool/dev-flow/commit/39eea1d2532f44d83a929c5623c216ffd25bed97))
612
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
613
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
614
- * **database:** add getMcpCompliance query for MCP enforcement metrics ([0f61aef](https://github.com/shilongfeicool/dev-flow/commit/0f61aef1ca06b186df136388b898b323aaf3f993))
615
- * **database:** add skill_executions and tool_call_events tables ([5906f0f](https://github.com/shilongfeicool/dev-flow/commit/5906f0f6c28b1f0539f643f0b04b55c7bdf29a8d))
616
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
617
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
618
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
619
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
620
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
621
-
622
-
623
-
624
-
625
-
626
- ## [0.8.2](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.8.2) (2026-07-08)
627
-
628
-
629
- ### Bug Fixes
630
-
631
- * **database:** parameterize LIMIT clause in listSkillExecutions ([d85a440](https://github.com/shilongfeicool/dev-flow/commit/d85a440e727434bd8df2ab0cb0d408183f006731))
632
- * **server:** persist activeProjectRoot to SQLite + add POST /projects/switch ([7cbe96e](https://github.com/shilongfeicool/dev-flow/commit/7cbe96e0f92d60b54261d61df1fb0ad18eacc4a1))
633
- * update PreToolUse hook output to modern hookSpecificOutput format ([08e4704](https://github.com/shilongfeicool/dev-flow/commit/08e47047445ba2b8112669608264af9971627138))
634
-
635
-
636
- ### Features
637
-
638
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
639
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
640
- * **database:** add getMcpCompliance query for MCP enforcement metrics ([0f61aef](https://github.com/shilongfeicool/dev-flow/commit/0f61aef1ca06b186df136388b898b323aaf3f993))
641
- * **database:** add skill_executions and tool_call_events tables ([5906f0f](https://github.com/shilongfeicool/dev-flow/commit/5906f0f6c28b1f0539f643f0b04b55c7bdf29a8d))
642
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
643
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
644
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
645
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
646
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
647
-
648
-
649
-
650
-
651
-
652
- ## [0.8.1](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.8.1) (2026-07-07)
653
-
654
-
655
- ### Bug Fixes
656
-
657
- * **database:** parameterize LIMIT clause in listSkillExecutions ([d85a440](https://github.com/shilongfeicool/dev-flow/commit/d85a440e727434bd8df2ab0cb0d408183f006731))
658
- * **server:** persist activeProjectRoot to SQLite + add POST /projects/switch ([7cbe96e](https://github.com/shilongfeicool/dev-flow/commit/7cbe96e0f92d60b54261d61df1fb0ad18eacc4a1))
659
-
660
-
661
- ### Features
662
-
663
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
664
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
665
- * **database:** add getMcpCompliance query for MCP enforcement metrics ([0f61aef](https://github.com/shilongfeicool/dev-flow/commit/0f61aef1ca06b186df136388b898b323aaf3f993))
666
- * **database:** add skill_executions and tool_call_events tables ([5906f0f](https://github.com/shilongfeicool/dev-flow/commit/5906f0f6c28b1f0539f643f0b04b55c7bdf29a8d))
667
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
668
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
669
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
670
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
671
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
672
-
673
-
674
-
675
-
676
-
677
- # [0.8.0](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.8.0) (2026-07-07)
678
-
679
-
680
- ### Bug Fixes
681
-
682
- * **database:** parameterize LIMIT clause in listSkillExecutions ([d85a440](https://github.com/shilongfeicool/dev-flow/commit/d85a440e727434bd8df2ab0cb0d408183f006731))
683
- * **server:** persist activeProjectRoot to SQLite + add POST /projects/switch ([7cbe96e](https://github.com/shilongfeicool/dev-flow/commit/7cbe96e0f92d60b54261d61df1fb0ad18eacc4a1))
684
-
685
-
686
- ### Features
687
-
688
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
689
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
690
- * **database:** add getMcpCompliance query for MCP enforcement metrics ([0f61aef](https://github.com/shilongfeicool/dev-flow/commit/0f61aef1ca06b186df136388b898b323aaf3f993))
691
- * **database:** add skill_executions and tool_call_events tables ([5906f0f](https://github.com/shilongfeicool/dev-flow/commit/5906f0f6c28b1f0539f643f0b04b55c7bdf29a8d))
692
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
693
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
694
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
695
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
696
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
697
-
698
-
699
-
700
-
701
-
702
- ## [0.7.6](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.7.6) (2026-07-07)
703
-
704
-
705
- ### Bug Fixes
706
-
707
- * **database:** parameterize LIMIT clause in listSkillExecutions ([d85a440](https://github.com/shilongfeicool/dev-flow/commit/d85a440e727434bd8df2ab0cb0d408183f006731))
708
- * **server:** persist activeProjectRoot to SQLite + add POST /projects/switch ([7cbe96e](https://github.com/shilongfeicool/dev-flow/commit/7cbe96e0f92d60b54261d61df1fb0ad18eacc4a1))
709
-
710
-
711
- ### Features
712
-
713
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
714
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
715
- * **database:** add getMcpCompliance query for MCP enforcement metrics ([0f61aef](https://github.com/shilongfeicool/dev-flow/commit/0f61aef1ca06b186df136388b898b323aaf3f993))
716
- * **database:** add skill_executions and tool_call_events tables ([5906f0f](https://github.com/shilongfeicool/dev-flow/commit/5906f0f6c28b1f0539f643f0b04b55c7bdf29a8d))
717
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
718
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
719
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
720
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
721
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
722
-
723
-
724
-
725
-
726
-
727
- ## [0.7.5](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.7.5) (2026-07-07)
728
-
729
-
730
- ### Bug Fixes
731
-
732
- * **database:** parameterize LIMIT clause in listSkillExecutions ([d85a440](https://github.com/shilongfeicool/dev-flow/commit/d85a440e727434bd8df2ab0cb0d408183f006731))
733
- * **server:** persist activeProjectRoot to SQLite + add POST /projects/switch ([7cbe96e](https://github.com/shilongfeicool/dev-flow/commit/7cbe96e0f92d60b54261d61df1fb0ad18eacc4a1))
734
-
735
-
736
- ### Features
737
-
738
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
739
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
740
- * **database:** add getMcpCompliance query for MCP enforcement metrics ([0f61aef](https://github.com/shilongfeicool/dev-flow/commit/0f61aef1ca06b186df136388b898b323aaf3f993))
741
- * **database:** add skill_executions and tool_call_events tables ([5906f0f](https://github.com/shilongfeicool/dev-flow/commit/5906f0f6c28b1f0539f643f0b04b55c7bdf29a8d))
742
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
743
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
744
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
745
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
746
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
747
-
748
-
749
-
750
-
751
-
752
- ## [0.7.4](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.7.4) (2026-07-07)
753
-
754
-
755
- ### Bug Fixes
756
-
757
- * **server:** persist activeProjectRoot to SQLite + add POST /projects/switch ([7cbe96e](https://github.com/shilongfeicool/dev-flow/commit/7cbe96e0f92d60b54261d61df1fb0ad18eacc4a1))
758
-
759
-
760
- ### Features
761
-
762
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
763
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
764
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
765
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
766
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
767
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
768
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
769
-
770
-
771
-
772
-
773
-
774
- ## [0.7.3](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.7.3) (2026-07-06)
775
-
776
-
777
- ### Features
778
-
779
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
780
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
781
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
782
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
783
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
784
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
785
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
786
-
787
-
788
-
789
-
790
-
791
- ## [0.7.2](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.7.2) (2026-07-06)
792
-
793
-
794
- ### Features
795
-
796
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
797
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
798
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
799
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
800
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
801
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
802
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
803
-
804
-
805
-
806
-
807
-
808
- ## [0.7.1](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.7.1) (2026-07-06)
809
-
810
-
811
- ### Features
812
-
813
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
814
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
815
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
816
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
817
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
818
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
819
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
820
-
821
-
822
-
823
-
824
-
825
- # [0.7.0](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.7.0) (2026-07-06)
826
-
827
-
828
- ### Features
829
-
830
- * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
831
- * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
832
- * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
833
- * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
834
- * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
835
- * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
836
- * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))