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