xtctx 0.3.2 → 0.11.3
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.
- package/CHANGELOG.md +317 -122
- package/LICENSE +21 -21
- package/README.md +154 -121
- package/dist/src/cli/disconnect.d.ts +8 -0
- package/dist/src/cli/disconnect.d.ts.map +1 -0
- package/dist/src/cli/disconnect.js +42 -0
- package/dist/src/cli/disconnect.js.map +1 -0
- package/dist/src/cli/hook.d.ts +7 -0
- package/dist/src/cli/hook.d.ts.map +1 -0
- package/dist/src/cli/hook.js +32 -0
- package/dist/src/cli/hook.js.map +1 -0
- package/dist/src/cli/index.d.ts.map +1 -1
- package/dist/src/cli/index.js +86 -33
- package/dist/src/cli/index.js.map +1 -1
- package/dist/src/cli/setup.d.ts +8 -0
- package/dist/src/cli/setup.d.ts.map +1 -0
- package/dist/src/cli/setup.js +76 -0
- package/dist/src/cli/setup.js.map +1 -0
- package/dist/src/cli/status.d.ts +7 -0
- package/dist/src/cli/status.d.ts.map +1 -0
- package/dist/src/cli/status.js +133 -0
- package/dist/src/cli/status.js.map +1 -0
- package/dist/src/config/disconnect.d.ts +34 -0
- package/dist/src/config/disconnect.d.ts.map +1 -0
- package/dist/src/config/disconnect.js +386 -0
- package/dist/src/config/disconnect.js.map +1 -0
- package/dist/src/config/managed-block.d.ts +29 -0
- package/dist/src/config/managed-block.d.ts.map +1 -0
- package/dist/src/config/managed-block.js +67 -0
- package/dist/src/config/managed-block.js.map +1 -0
- package/dist/src/config/mcp-config.d.ts +93 -0
- package/dist/src/config/mcp-config.d.ts.map +1 -0
- package/dist/src/config/mcp-config.js +556 -0
- package/dist/src/config/mcp-config.js.map +1 -0
- package/dist/src/config/setup.d.ts +39 -0
- package/dist/src/config/setup.d.ts.map +1 -0
- package/dist/src/config/setup.js +379 -0
- package/dist/src/config/setup.js.map +1 -0
- package/dist/src/config/skills.d.ts +73 -0
- package/dist/src/config/skills.d.ts.map +1 -0
- package/dist/src/config/skills.js +427 -0
- package/dist/src/config/skills.js.map +1 -0
- package/dist/src/handoff/embeddings.d.ts +26 -0
- package/dist/src/handoff/embeddings.d.ts.map +1 -0
- package/dist/src/handoff/embeddings.js +132 -0
- package/dist/src/handoff/embeddings.js.map +1 -0
- package/dist/src/handoff/sqlite-index.d.ts +52 -0
- package/dist/src/handoff/sqlite-index.d.ts.map +1 -0
- package/dist/src/handoff/sqlite-index.js +905 -0
- package/dist/src/handoff/sqlite-index.js.map +1 -0
- package/dist/src/handoff/types.d.ts +63 -0
- package/dist/src/handoff/types.d.ts.map +1 -0
- package/dist/src/handoff/types.js +2 -0
- package/dist/src/handoff/types.js.map +1 -0
- package/dist/src/handoff/vector.d.ts +4 -0
- package/dist/src/handoff/vector.d.ts.map +1 -0
- package/dist/src/handoff/vector.js +31 -0
- package/dist/src/handoff/vector.js.map +1 -0
- package/dist/src/mcp/server.d.ts +3 -20
- package/dist/src/mcp/server.d.ts.map +1 -1
- package/dist/src/mcp/server.js +90 -205
- package/dist/src/mcp/server.js.map +1 -1
- package/dist/src/mcp/tools/continuity.d.ts +21 -0
- package/dist/src/mcp/tools/continuity.d.ts.map +1 -0
- package/dist/src/mcp/tools/continuity.js +55 -0
- package/dist/src/mcp/tools/continuity.js.map +1 -0
- package/dist/src/mcp/tools/manifest.d.ts +40 -0
- package/dist/src/mcp/tools/manifest.d.ts.map +1 -0
- package/dist/src/mcp/tools/manifest.js +105 -0
- package/dist/src/mcp/tools/manifest.js.map +1 -0
- package/dist/src/mcp/tools/sessions.d.ts +18 -31
- package/dist/src/mcp/tools/sessions.d.ts.map +1 -1
- package/dist/src/mcp/tools/sessions.js +109 -16
- package/dist/src/mcp/tools/sessions.js.map +1 -1
- package/dist/src/runtime/services.d.ts +11 -38
- package/dist/src/runtime/services.d.ts.map +1 -1
- package/dist/src/runtime/services.js +61 -200
- package/dist/src/runtime/services.js.map +1 -1
- package/dist/src/scrapers/antigravity.d.ts +52 -0
- package/dist/src/scrapers/antigravity.d.ts.map +1 -0
- package/dist/src/scrapers/antigravity.js +869 -0
- package/dist/src/scrapers/antigravity.js.map +1 -0
- package/dist/src/scrapers/base.d.ts +53 -1
- package/dist/src/scrapers/base.d.ts.map +1 -1
- package/dist/src/scrapers/base.js +93 -4
- package/dist/src/scrapers/base.js.map +1 -1
- package/dist/src/scrapers/claude-code.d.ts +37 -6
- package/dist/src/scrapers/claude-code.d.ts.map +1 -1
- package/dist/src/scrapers/claude-code.js +214 -40
- package/dist/src/scrapers/claude-code.js.map +1 -1
- package/dist/src/scrapers/codex.d.ts +36 -6
- package/dist/src/scrapers/codex.d.ts.map +1 -1
- package/dist/src/scrapers/codex.js +283 -60
- package/dist/src/scrapers/codex.js.map +1 -1
- package/dist/src/scrapers/copilot-cli.d.ts +34 -0
- package/dist/src/scrapers/copilot-cli.d.ts.map +1 -0
- package/dist/src/scrapers/copilot-cli.js +342 -0
- package/dist/src/scrapers/copilot-cli.js.map +1 -0
- package/dist/src/scrapers/copilot.d.ts +41 -8
- package/dist/src/scrapers/copilot.d.ts.map +1 -1
- package/dist/src/scrapers/copilot.js +256 -118
- package/dist/src/scrapers/copilot.js.map +1 -1
- package/dist/src/scrapers/cursor.d.ts +24 -9
- package/dist/src/scrapers/cursor.d.ts.map +1 -1
- package/dist/src/scrapers/cursor.js +259 -152
- package/dist/src/scrapers/cursor.js.map +1 -1
- package/dist/src/scrapers/index.d.ts +23 -0
- package/dist/src/scrapers/index.d.ts.map +1 -0
- package/dist/src/scrapers/index.js +22 -0
- package/dist/src/scrapers/index.js.map +1 -0
- package/dist/src/scrapers/opencode.d.ts +37 -0
- package/dist/src/scrapers/opencode.d.ts.map +1 -0
- package/dist/src/scrapers/opencode.js +277 -0
- package/dist/src/scrapers/opencode.js.map +1 -0
- package/dist/src/scrapers/registry.d.ts +1 -0
- package/dist/src/scrapers/registry.d.ts.map +1 -1
- package/dist/src/scrapers/registry.js +3 -0
- package/dist/src/scrapers/registry.js.map +1 -1
- package/dist/src/tools/sources.d.ts +28 -0
- package/dist/src/tools/sources.d.ts.map +1 -0
- package/dist/src/tools/sources.js +149 -0
- package/dist/src/tools/sources.js.map +1 -0
- package/dist/src/types/config.d.ts +24 -37
- package/dist/src/types/config.d.ts.map +1 -1
- package/dist/src/types/index.d.ts +0 -2
- package/dist/src/types/index.d.ts.map +1 -1
- package/dist/src/types/index.js +0 -2
- package/dist/src/types/index.js.map +1 -1
- package/dist/src/types/scraper.d.ts +34 -5
- package/dist/src/types/scraper.d.ts.map +1 -1
- package/dist/src/utils/atomic-file.d.ts +8 -0
- package/dist/src/utils/atomic-file.d.ts.map +1 -0
- package/dist/src/utils/atomic-file.js +15 -0
- package/dist/src/utils/atomic-file.js.map +1 -0
- package/dist/src/utils/errors.d.ts +7 -0
- package/dist/src/utils/errors.d.ts.map +1 -0
- package/dist/src/utils/errors.js +16 -0
- package/dist/src/utils/errors.js.map +1 -0
- package/dist/src/utils/package-info.d.ts +11 -0
- package/dist/src/utils/package-info.d.ts.map +1 -0
- package/dist/src/utils/package-info.js +30 -0
- package/dist/src/utils/package-info.js.map +1 -0
- package/dist/src/utils/project-scope.d.ts +19 -0
- package/dist/src/utils/project-scope.d.ts.map +1 -0
- package/dist/src/utils/project-scope.js +61 -0
- package/dist/src/utils/project-scope.js.map +1 -0
- package/package.json +70 -66
- package/dist/src/api/routes/config.d.ts +0 -4
- package/dist/src/api/routes/config.d.ts.map +0 -1
- package/dist/src/api/routes/config.js +0 -61
- package/dist/src/api/routes/config.js.map +0 -1
- package/dist/src/api/routes/knowledge.d.ts +0 -4
- package/dist/src/api/routes/knowledge.d.ts.map +0 -1
- package/dist/src/api/routes/knowledge.js +0 -40
- package/dist/src/api/routes/knowledge.js.map +0 -1
- package/dist/src/api/routes/search.d.ts +0 -7
- package/dist/src/api/routes/search.d.ts.map +0 -1
- package/dist/src/api/routes/search.js +0 -108
- package/dist/src/api/routes/search.js.map +0 -1
- package/dist/src/api/routes/sources.d.ts +0 -12
- package/dist/src/api/routes/sources.d.ts.map +0 -1
- package/dist/src/api/routes/sources.js +0 -70
- package/dist/src/api/routes/sources.js.map +0 -1
- package/dist/src/api/server.d.ts +0 -26
- package/dist/src/api/server.d.ts.map +0 -1
- package/dist/src/api/server.js +0 -312
- package/dist/src/api/server.js.map +0 -1
- package/dist/src/cli/ingest.d.ts +0 -6
- package/dist/src/cli/ingest.d.ts.map +0 -1
- package/dist/src/cli/ingest.js +0 -11
- package/dist/src/cli/ingest.js.map +0 -1
- package/dist/src/cli/init.d.ts +0 -6
- package/dist/src/cli/init.d.ts.map +0 -1
- package/dist/src/cli/init.js +0 -105
- package/dist/src/cli/init.js.map +0 -1
- package/dist/src/cli/serve.d.ts +0 -7
- package/dist/src/cli/serve.d.ts.map +0 -1
- package/dist/src/cli/serve.js +0 -100
- package/dist/src/cli/serve.js.map +0 -1
- package/dist/src/cli/sync.d.ts +0 -5
- package/dist/src/cli/sync.d.ts.map +0 -1
- package/dist/src/cli/sync.js +0 -13
- package/dist/src/cli/sync.js.map +0 -1
- package/dist/src/compaction/pipeline.d.ts +0 -19
- package/dist/src/compaction/pipeline.d.ts.map +0 -1
- package/dist/src/compaction/pipeline.js +0 -37
- package/dist/src/compaction/pipeline.js.map +0 -1
- package/dist/src/compaction/providers/cli.d.ts +0 -13
- package/dist/src/compaction/providers/cli.d.ts.map +0 -1
- package/dist/src/compaction/providers/cli.js +0 -60
- package/dist/src/compaction/providers/cli.js.map +0 -1
- package/dist/src/compaction/rule-based.d.ts +0 -8
- package/dist/src/compaction/rule-based.d.ts.map +0 -1
- package/dist/src/compaction/rule-based.js +0 -120
- package/dist/src/compaction/rule-based.js.map +0 -1
- package/dist/src/config/loader.d.ts +0 -12
- package/dist/src/config/loader.d.ts.map +0 -1
- package/dist/src/config/loader.js +0 -76
- package/dist/src/config/loader.js.map +0 -1
- package/dist/src/config/mappings/claude-code.d.ts +0 -3
- package/dist/src/config/mappings/claude-code.d.ts.map +0 -1
- package/dist/src/config/mappings/claude-code.js +0 -31
- package/dist/src/config/mappings/claude-code.js.map +0 -1
- package/dist/src/config/mappings/codex.d.ts +0 -3
- package/dist/src/config/mappings/codex.d.ts.map +0 -1
- package/dist/src/config/mappings/codex.js +0 -31
- package/dist/src/config/mappings/codex.js.map +0 -1
- package/dist/src/config/mappings/copilot.d.ts +0 -3
- package/dist/src/config/mappings/copilot.d.ts.map +0 -1
- package/dist/src/config/mappings/copilot.js +0 -33
- package/dist/src/config/mappings/copilot.js.map +0 -1
- package/dist/src/config/mappings/cursor.d.ts +0 -3
- package/dist/src/config/mappings/cursor.d.ts.map +0 -1
- package/dist/src/config/mappings/cursor.js +0 -29
- package/dist/src/config/mappings/cursor.js.map +0 -1
- package/dist/src/config/sync.d.ts +0 -13
- package/dist/src/config/sync.d.ts.map +0 -1
- package/dist/src/config/sync.js +0 -96
- package/dist/src/config/sync.js.map +0 -1
- package/dist/src/ingestion/coordinator.d.ts +0 -37
- package/dist/src/ingestion/coordinator.d.ts.map +0 -1
- package/dist/src/ingestion/coordinator.js +0 -127
- package/dist/src/ingestion/coordinator.js.map +0 -1
- package/dist/src/ingestion/daemon.d.ts +0 -17
- package/dist/src/ingestion/daemon.d.ts.map +0 -1
- package/dist/src/ingestion/daemon.js +0 -35
- package/dist/src/ingestion/daemon.js.map +0 -1
- package/dist/src/ingestion/watcher.d.ts +0 -19
- package/dist/src/ingestion/watcher.d.ts.map +0 -1
- package/dist/src/ingestion/watcher.js +0 -70
- package/dist/src/ingestion/watcher.js.map +0 -1
- package/dist/src/knowledge/autotag.d.ts +0 -3
- package/dist/src/knowledge/autotag.d.ts.map +0 -1
- package/dist/src/knowledge/autotag.js +0 -24
- package/dist/src/knowledge/autotag.js.map +0 -1
- package/dist/src/knowledge/dedup.d.ts +0 -7
- package/dist/src/knowledge/dedup.d.ts.map +0 -1
- package/dist/src/knowledge/dedup.js +0 -15
- package/dist/src/knowledge/dedup.js.map +0 -1
- package/dist/src/knowledge/repository.d.ts +0 -12
- package/dist/src/knowledge/repository.d.ts.map +0 -1
- package/dist/src/knowledge/repository.js +0 -74
- package/dist/src/knowledge/repository.js.map +0 -1
- package/dist/src/mcp/tools/config.d.ts +0 -36
- package/dist/src/mcp/tools/config.d.ts.map +0 -1
- package/dist/src/mcp/tools/config.js +0 -54
- package/dist/src/mcp/tools/config.js.map +0 -1
- package/dist/src/mcp/tools/knowledge.d.ts +0 -17
- package/dist/src/mcp/tools/knowledge.d.ts.map +0 -1
- package/dist/src/mcp/tools/knowledge.js +0 -46
- package/dist/src/mcp/tools/knowledge.js.map +0 -1
- package/dist/src/mcp/tools/search.d.ts +0 -22
- package/dist/src/mcp/tools/search.d.ts.map +0 -1
- package/dist/src/mcp/tools/search.js +0 -30
- package/dist/src/mcp/tools/search.js.map +0 -1
- package/dist/src/mcp/tools/write.d.ts +0 -38
- package/dist/src/mcp/tools/write.d.ts.map +0 -1
- package/dist/src/mcp/tools/write.js +0 -97
- package/dist/src/mcp/tools/write.js.map +0 -1
- package/dist/src/runtime/ingestion.d.ts +0 -17
- package/dist/src/runtime/ingestion.d.ts.map +0 -1
- package/dist/src/runtime/ingestion.js +0 -106
- package/dist/src/runtime/ingestion.js.map +0 -1
- package/dist/src/scrapers/gemini.d.ts +0 -17
- package/dist/src/scrapers/gemini.d.ts.map +0 -1
- package/dist/src/scrapers/gemini.js +0 -245
- package/dist/src/scrapers/gemini.js.map +0 -1
- package/dist/src/store/embeddings.d.ts +0 -9
- package/dist/src/store/embeddings.d.ts.map +0 -1
- package/dist/src/store/embeddings.js +0 -28
- package/dist/src/store/embeddings.js.map +0 -1
- package/dist/src/store/lance.d.ts +0 -25
- package/dist/src/store/lance.d.ts.map +0 -1
- package/dist/src/store/lance.js +0 -74
- package/dist/src/store/lance.js.map +0 -1
- package/dist/src/store/search.d.ts +0 -18
- package/dist/src/store/search.d.ts.map +0 -1
- package/dist/src/store/search.js +0 -55
- package/dist/src/store/search.js.map +0 -1
- package/dist/src/types/compaction.d.ts +0 -29
- package/dist/src/types/compaction.d.ts.map +0 -1
- package/dist/src/types/compaction.js +0 -2
- package/dist/src/types/compaction.js.map +0 -1
- package/dist/src/types/context.d.ts +0 -33
- package/dist/src/types/context.d.ts.map +0 -1
- package/dist/src/types/context.js +0 -18
- package/dist/src/types/context.js.map +0 -1
- package/dist/src/utils/retry.d.ts +0 -11
- package/dist/src/utils/retry.d.ts.map +0 -1
- package/dist/src/utils/retry.js +0 -46
- package/dist/src/utils/retry.js.map +0 -1
- package/dist/src/utils/shutdown.d.ts +0 -25
- package/dist/src/utils/shutdown.d.ts.map +0 -1
- package/dist/src/utils/shutdown.js +0 -56
- package/dist/src/utils/shutdown.js.map +0 -1
- package/dist/web/apple-touch-icon.png +0 -0
- package/dist/web/assets/index-Nuadr5ox.css +0 -1
- package/dist/web/assets/index-aA0u8eXA.js +0 -3504
- package/dist/web/assets/primeicons-C6QP2o4f.woff2 +0 -0
- package/dist/web/assets/primeicons-DMOk5skT.eot +0 -0
- package/dist/web/assets/primeicons-Dr5RGzOO.svg +0 -345
- package/dist/web/assets/primeicons-MpK4pl85.ttf +0 -0
- package/dist/web/assets/primeicons-WjwUDZjB.woff +0 -0
- package/dist/web/favicon.ico +0 -0
- package/dist/web/favicon.svg +0 -21
- package/dist/web/index.html +0 -21
- package/dist/web/site.webmanifest +0 -19
- package/dist/web/vite.svg +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,122 +1,317 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project are documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on Keep a Changelog, and this project follows Semantic Versioning.
|
|
6
|
-
This file is maintained automatically by Release Please.
|
|
7
|
-
|
|
8
|
-
## [0.3
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
###
|
|
12
|
-
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
* add
|
|
56
|
-
*
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
*
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
*
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
###
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project are documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on Keep a Changelog, and this project follows Semantic Versioning.
|
|
6
|
+
This file is maintained automatically by Release Please.
|
|
7
|
+
|
|
8
|
+
## [0.11.3](https://github.com/fstubner/xtctx/compare/xtctx-v0.11.2...xtctx-v0.11.3) (2026-08-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **ci:** enable auto-merge with the PAT so the release chain continues ([a057317](https://github.com/fstubner/xtctx/commit/a057317a9ecb4a7f6435989b13b328fdc9c35480))
|
|
14
|
+
* **demo:** keep embedding verification in-process, not through the spawned server ([4cc2365](https://github.com/fstubner/xtctx/commit/4cc236510e351aa5b12a7ccbe62f521f2ebecd14))
|
|
15
|
+
* **demo:** use the real path encoder instead of a drifted copy ([b261f60](https://github.com/fstubner/xtctx/commit/b261f609ca82559408a096b860c7fe8b5719c1d5))
|
|
16
|
+
* **runtime:** resolve the project root through symlinks ([8d48637](https://github.com/fstubner/xtctx/commit/8d486376a2509c2070482b6da5bf722bfb8cf132))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Tests
|
|
20
|
+
|
|
21
|
+
* canonicalise temp roots and raise the suite timeout for CI runners ([eb9def3](https://github.com/fstubner/xtctx/commit/eb9def3446d90016441d5096efb5b346299074fe))
|
|
22
|
+
|
|
23
|
+
## [0.11.2](https://github.com/fstubner/xtctx/compare/xtctx-v0.11.1...xtctx-v0.11.2) (2026-08-19)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* **antigravity:** attribute conversations by path, never by project name ([9ba1ac7](https://github.com/fstubner/xtctx/commit/9ba1ac782c7c25caaaee4466c4f1bf65edee4ab6))
|
|
29
|
+
* **antigravity:** match the listening PID exactly and complete the barrel exports ([b9c3ad5](https://github.com/fstubner/xtctx/commit/b9c3ad5daea2cf370b1d425f02e851a2ec392a34))
|
|
30
|
+
* **ci:** check RELEASE_PLEASE_TOKEN in run, not in a step-level if ([ec736b7](https://github.com/fstubner/xtctx/commit/ec736b7cbd6f958c7910a0f9c3dcd69bae784541))
|
|
31
|
+
* **ci:** repair the release-please token guard ([52f6a73](https://github.com/fstubner/xtctx/commit/52f6a739f5211901fd6b398f155d68e3a61a7838))
|
|
32
|
+
* **cli:** fail open in the session hook and release the index handle ([b536cf1](https://github.com/fstubner/xtctx/commit/b536cf1fcb0cad74403ba6f55a3a38135a57467f))
|
|
33
|
+
* **config:** preserve line endings on disconnect and stop leaving litter ([6f800d2](https://github.com/fstubner/xtctx/commit/6f800d2dce99aa2413fb9ec8939979cc789c32b9))
|
|
34
|
+
* **config:** report disconnect accurately and remove the stubs it leaves ([9dfab9b](https://github.com/fstubner/xtctx/commit/9dfab9b4fbdb92fc2c628e7b555c75320f70ebfc))
|
|
35
|
+
* **config:** write other tools' config files safely ([6f48086](https://github.com/fstubner/xtctx/commit/6f480866fb79020cb1034709202b7d76f4779b13))
|
|
36
|
+
* **deps:** bump transitive postcss out of the path-traversal advisories ([51e3d58](https://github.com/fstubner/xtctx/commit/51e3d580bf6f9bc0fe76a60fe1c2019ff9feab3e))
|
|
37
|
+
* **handoff:** make the index crash-safe, correct, and cheap to refresh ([269fefb](https://github.com/fstubner/xtctx/commit/269fefbaa3a8b1cb491175fc2b2c69cea292c1f3))
|
|
38
|
+
* **handoff:** repair the embedding pipeline and stop it failing silently ([6ee6255](https://github.com/fstubner/xtctx/commit/6ee62551d55f2fd91af8a23282a52c380e3060f1))
|
|
39
|
+
* **handoff:** require real evidence for a semantic match ([7c4bf8b](https://github.com/fstubner/xtctx/commit/7c4bf8b8fd8379a3e75fd7b484437b89a70571d9))
|
|
40
|
+
* **handoff:** reset cursors whenever the index is empty, and stop indexing scaffolding ([0a1aa76](https://github.com/fstubner/xtctx/commit/0a1aa768dabb077f6ab898cf8627b8974de88d6e))
|
|
41
|
+
* **landing:** upgrade Astro to 7 and pin the published version ([73a20e9](https://github.com/fstubner/xtctx/commit/73a20e973f70ca8398a0ac967e0f32525a405c5a))
|
|
42
|
+
* **mcp:** fence untrusted transcript content and validate tool arguments ([a662805](https://github.com/fstubner/xtctx/commit/a662805bf65a521aac992233ea35aafbda202007))
|
|
43
|
+
* **mcp:** keep session previews from forging response structure ([799d7ff](https://github.com/fstubner/xtctx/commit/799d7ff1ba5c4417550350cbb810de9fe77f5c3c))
|
|
44
|
+
* **mcp:** redact paths in reported errors and always end status with a next step ([626e2bf](https://github.com/fstubner/xtctx/commit/626e2bf8f6837414b8ebd817bfa8513583d10367))
|
|
45
|
+
* **opencode:** report a corrupt store instead of an empty one ([83d8872](https://github.com/fstubner/xtctx/commit/83d88721857e1b47c3724b73b950df0e438ddb87))
|
|
46
|
+
* remediate the full-product audit findings ([5198690](https://github.com/fstubner/xtctx/commit/5198690a425399b94d6cd234e3b8ffa87e79c38c))
|
|
47
|
+
* **scrapers:** attribute Claude Code sessions by cwd, not by encoded name ([9b5a6ad](https://github.com/fstubner/xtctx/commit/9b5a6ada818464f28532677fb94e0e2a8f0fa400))
|
|
48
|
+
* **scrapers:** contain read errors and stabilise chunk identity ([31f5ecb](https://github.com/fstubner/xtctx/commit/31f5ecb9c0d7ff8bb4dec766c286ec315210690d))
|
|
49
|
+
* **scrapers:** parse current Copilot CLI events and scope sessions to the project ([6a387f8](https://github.com/fstubner/xtctx/commit/6a387f80679bec1ca5e472b98953bcdec82deaa5))
|
|
50
|
+
* stop reporting false drift and close the prefix-sibling leak ([6dc4e68](https://github.com/fstubner/xtctx/commit/6dc4e68a9c2bdea098df7dda1d165de2ac950943))
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Documentation
|
|
54
|
+
|
|
55
|
+
* add the product, architecture, and design contracts ([147d2af](https://github.com/fstubner/xtctx/commit/147d2aff4e8d5e9afbbe3936c33fa0886fe24548))
|
|
56
|
+
* correct the session-hook failure wording ([d31ac2f](https://github.com/fstubner/xtctx/commit/d31ac2f68ddb253e6debbdc745b05d43e15a5ef4))
|
|
57
|
+
|
|
58
|
+
## [0.11.1](https://github.com/fstubner/xtctx/compare/xtctx-v0.11.0...xtctx-v0.11.1) (2026-08-05)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Bug Fixes
|
|
62
|
+
|
|
63
|
+
* expect handoff_manifest in public demo smoke ([29de7b9](https://github.com/fstubner/xtctx/commit/29de7b9721a92354f3892762febb55042fbe2499))
|
|
64
|
+
* expect handoff_manifest in public demo smoke ([3041cc3](https://github.com/fstubner/xtctx/commit/3041cc39853c2935e838962c5a0b264c799fac53))
|
|
65
|
+
|
|
66
|
+
## [0.11.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.10.0...xtctx-v0.11.0) (2026-08-05)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Features
|
|
70
|
+
|
|
71
|
+
* ship local handoff pivot (Antigravity-only Google support) ([#69](https://github.com/fstubner/xtctx/issues/69)) ([971d745](https://github.com/fstubner/xtctx/commit/971d7451ffbcf0628949822d238939f966b9da41))
|
|
72
|
+
|
|
73
|
+
## [0.10.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.9.1...xtctx-v0.10.0) (2026-05-07)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Features
|
|
77
|
+
|
|
78
|
+
* **cli:** add `xtctx onboard` interactive first-run wizard ([#68](https://github.com/fstubner/xtctx/issues/68)) ([0ecae34](https://github.com/fstubner/xtctx/commit/0ecae343803df86dd98c8ecf76e6bc8d33836d9c))
|
|
79
|
+
|
|
80
|
+
## [0.9.1](https://github.com/fstubner/xtctx/compare/xtctx-v0.9.0...xtctx-v0.9.1) (2026-05-02)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Bug Fixes
|
|
84
|
+
|
|
85
|
+
* **canary:** drop shebang from drift-canary.mjs so the orchestrator test can import it ([45f14a4](https://github.com/fstubner/xtctx/commit/45f14a458f923fd43c95d1fa34aa1bf30e8c0d52))
|
|
86
|
+
* **canary:** drop shebang from drift-canary.mjs so the orchestrator test passes ([42eb566](https://github.com/fstubner/xtctx/commit/42eb566a5cf2e6672cc233b8680a2acd1b0d897b))
|
|
87
|
+
|
|
88
|
+
## [0.9.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.8.0...xtctx-v0.9.0) (2026-05-02)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### Features
|
|
92
|
+
|
|
93
|
+
* **scrapers:** add opencode and Copilot CLI scrapers ([99c464e](https://github.com/fstubner/xtctx/commit/99c464e818e6387c3ea95a29b9dbee0bda96689b))
|
|
94
|
+
* **scrapers:** add opencode and GitHub Copilot CLI scrapers ([7b93bcc](https://github.com/fstubner/xtctx/commit/7b93bccaf9b6290ae3735bf151cf41a819a38bc3))
|
|
95
|
+
|
|
96
|
+
## [0.8.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.7.1...xtctx-v0.8.0) (2026-05-02)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Features
|
|
100
|
+
|
|
101
|
+
* **mcp:** pluggable format adapters + native MCP rendering for all 7 tools ([c16abdf](https://github.com/fstubner/xtctx/commit/c16abdf0124a6a5d10c0bafcd760f0d6ec00bd86))
|
|
102
|
+
* **mcp:** pluggable format adapters + native MCP rendering for all 7 tools ([7e08c07](https://github.com/fstubner/xtctx/commit/7e08c07894d5b7d40b9623f8faf3de6890a6fb87))
|
|
103
|
+
|
|
104
|
+
## [0.7.1](https://github.com/fstubner/xtctx/compare/xtctx-v0.7.0...xtctx-v0.7.1) (2026-04-27)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
### Miscellaneous
|
|
108
|
+
|
|
109
|
+
* **web:** drop runtime SPA in favor of CLI-only introspection ([b07b379](https://github.com/fstubner/xtctx/commit/b07b379b0a05fda2310f95ac6c95f9018d570c6a))
|
|
110
|
+
* **web:** drop runtime SPA in favor of CLI-only introspection ([a06f17b](https://github.com/fstubner/xtctx/commit/a06f17bbf335a98038940308f46655535b98471a))
|
|
111
|
+
|
|
112
|
+
## [0.7.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.6.0...xtctx-v0.7.0) (2026-04-26)
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
### Features
|
|
116
|
+
|
|
117
|
+
* **landing:** replace Vite+Vue landing with Astro 5 site adopted from netscli ([a6eb335](https://github.com/fstubner/xtctx/commit/a6eb335c3bb2e10166447a41692f699f5625943b))
|
|
118
|
+
* **landing:** replace Vite+Vue landing with Astro 5 site adopted from netscli ([6a75bd0](https://github.com/fstubner/xtctx/commit/6a75bd022d50077a289fbf358335452117565151))
|
|
119
|
+
|
|
120
|
+
## [0.6.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.5.0...xtctx-v0.6.0) (2026-04-21)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Features
|
|
124
|
+
|
|
125
|
+
* **compact:** index compacted sessions into hybrid search (M2) ([63fdc44](https://github.com/fstubner/xtctx/commit/63fdc445935e81a9b26ec5662aff44d35efbb0c9))
|
|
126
|
+
* **compact:** index compacted sessions into hybrid search (M2) ([7cfe4cf](https://github.com/fstubner/xtctx/commit/7cfe4cf826a7f0356b313380d9911ff01b0623d8))
|
|
127
|
+
|
|
128
|
+
## [0.5.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.4.6...xtctx-v0.5.0) (2026-04-21)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
### Features
|
|
132
|
+
|
|
133
|
+
* **canary:** nightly drift check against real Claude Code / Codex / Gemini CLIs ([9edbdcb](https://github.com/fstubner/xtctx/commit/9edbdcba2f6f1545a87c82d7930d462b5cf81daa))
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
### Bug Fixes
|
|
137
|
+
|
|
138
|
+
* **scrapers:** platform-gate Cursor default path (same P1 class as Copilot) ([4d62948](https://github.com/fstubner/xtctx/commit/4d6294832f432a406a1b51f02c5fb5a1a492e576))
|
|
139
|
+
|
|
140
|
+
## [0.4.6](https://github.com/fstubner/xtctx/compare/xtctx-v0.4.5...xtctx-v0.4.6) (2026-04-21)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
### Miscellaneous
|
|
144
|
+
|
|
145
|
+
* **deps:** resolve all 33 Dependabot vulnerabilities (1 critical, 11 high, 21 moderate) ([a510727](https://github.com/fstubner/xtctx/commit/a510727d8cdc1566e319553c107bbbdd0dd47a1e))
|
|
146
|
+
* **deps:** resolve all 33 Dependabot vulnerabilities (1 critical, 11 high, 21 moderate) ([c306644](https://github.com/fstubner/xtctx/commit/c30664478227808d567a042c5fc35a1d831865c9))
|
|
147
|
+
|
|
148
|
+
## [0.4.5](https://github.com/fstubner/xtctx/compare/xtctx-v0.4.4...xtctx-v0.4.5) (2026-04-21)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Bug Fixes
|
|
152
|
+
|
|
153
|
+
* **scrapers:** close drift gaps + 3 Copilot bugs — graceful-degradation whitelists, Linux path, incremental scrape, chunk-ID collision ([50c9bfd](https://github.com/fstubner/xtctx/commit/50c9bfdafb718c42907ee7a8e1ac253c0f8a3676))
|
|
154
|
+
* **scrapers:** close drift gaps with graceful-degradation whitelists + fix three Copilot bugs ([c352b8f](https://github.com/fstubner/xtctx/commit/c352b8f9fc034601bcbee9b7e90db2bf99a2ea31))
|
|
155
|
+
|
|
156
|
+
## [0.4.4](https://github.com/fstubner/xtctx/compare/xtctx-v0.4.3...xtctx-v0.4.4) (2026-04-21)
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
### Bug Fixes
|
|
160
|
+
|
|
161
|
+
* **config:** gracefully degrade on legacy shared.yaml instead of throwing ([650c4b8](https://github.com/fstubner/xtctx/commit/650c4b831ee641276cbf4726888fed8d30d93ba9))
|
|
162
|
+
* **config:** gracefully degrade on legacy shared.yaml instead of throwing ([eded78a](https://github.com/fstubner/xtctx/commit/eded78aeb7980c9ca2ea21dd18751f231ac9d6ab))
|
|
163
|
+
|
|
164
|
+
## [0.4.3](https://github.com/fstubner/xtctx/compare/xtctx-v0.4.2...xtctx-v0.4.3) (2026-04-21)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Miscellaneous
|
|
168
|
+
|
|
169
|
+
* testing rigor — ranking eval, drift mutations, golden snapshots, bench stub ([689e497](https://github.com/fstubner/xtctx/commit/689e497e80cecd2d9e5b418a873b33521f4dfee6))
|
|
170
|
+
* testing rigor — ranking eval, drift mutations, golden snapshots, bench stub ([1f4e23c](https://github.com/fstubner/xtctx/commit/1f4e23c78cd5094052111d8da0ff1b126c8d85d4))
|
|
171
|
+
|
|
172
|
+
## [0.4.2](https://github.com/fstubner/xtctx/compare/xtctx-v0.4.1...xtctx-v0.4.2) (2026-04-21)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Miscellaneous
|
|
176
|
+
|
|
177
|
+
* sweeping cleanup — cross-tool smoke suite, package-info fix, dead-code removal ([be471bb](https://github.com/fstubner/xtctx/commit/be471bbafb6412241ea82f5c3053eace9007f876))
|
|
178
|
+
* sweeping cleanup — cross-tool smoke suite, package-info fix, dead-code removal ([4889d9d](https://github.com/fstubner/xtctx/commit/4889d9d0581ec24c97d2cfdc2534248a09efa638))
|
|
179
|
+
|
|
180
|
+
## [0.4.1](https://github.com/fstubner/xtctx/compare/xtctx-v0.4.0...xtctx-v0.4.1) (2026-04-15)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
### Bug Fixes
|
|
184
|
+
|
|
185
|
+
* MCP dedupe, ingest reliability, scratch gitignore ([#32](https://github.com/fstubner/xtctx/issues/32)) ([0b168ea](https://github.com/fstubner/xtctx/commit/0b168eadb6a756c69e406c707cfee94839c1125b))
|
|
186
|
+
|
|
187
|
+
## [0.4.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.3.3...xtctx-v0.4.0) (2026-04-14)
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Features
|
|
191
|
+
|
|
192
|
+
* full skill/MCP/hook handoff across all five coding tools ([#26](https://github.com/fstubner/xtctx/issues/26)) ([1026fec](https://github.com/fstubner/xtctx/commit/1026fec1c81e546ebacfe3e17c70ee32cb4977bf))
|
|
193
|
+
|
|
194
|
+
## [0.3.3](https://github.com/fstubner/xtctx/compare/xtctx-v0.3.2...xtctx-v0.3.3) (2026-02-26)
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
### Documentation
|
|
198
|
+
|
|
199
|
+
* clarify api token and github pages behavior ([c23f317](https://github.com/fstubner/xtctx/commit/c23f317deb666039b1b365a0150e61cc4dd6f5b6))
|
|
200
|
+
* clarify optional API token behavior ([d95575e](https://github.com/fstubner/xtctx/commit/d95575e6d707f5ce30d22ec0dff0a3657b4ff319))
|
|
201
|
+
* keep readme focused on api token behavior ([79b78f9](https://github.com/fstubner/xtctx/commit/79b78f9d2c8e65b8924cb10bdb6b3c4a959ca1ec))
|
|
202
|
+
|
|
203
|
+
## [0.3.2](https://github.com/fstubner/xtctx/compare/xtctx-v0.3.1...xtctx-v0.3.2) (2026-02-26)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Documentation
|
|
207
|
+
|
|
208
|
+
* add root AGENTS guide for repository automation ([1439030](https://github.com/fstubner/xtctx/commit/1439030dfc458cf88f9a7e3abf7f925d678aa1ab))
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
### Miscellaneous
|
|
212
|
+
|
|
213
|
+
* deploy landing site to github pages ([6ddecd1](https://github.com/fstubner/xtctx/commit/6ddecd1828e6f3e2ba60200ba8a4dc659e629e73))
|
|
214
|
+
* deploy landing site to GitHub Pages ([4fbbfdc](https://github.com/fstubner/xtctx/commit/4fbbfdc1ffadd615e444ab865afa8196ee2f6466))
|
|
215
|
+
|
|
216
|
+
## [0.3.1](https://github.com/fstubner/xtctx/compare/xtctx-v0.3.0...xtctx-v0.3.1) (2026-02-26)
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
### Miscellaneous
|
|
220
|
+
|
|
221
|
+
* auto-enable merge for release-please prs ([8028118](https://github.com/fstubner/xtctx/commit/80281187525971817d238d8c6c93e67309e01d69))
|
|
222
|
+
* auto-enable merge for release-please PRs ([7c8535f](https://github.com/fstubner/xtctx/commit/7c8535ff7858111fa570bc528c457e29e99c5098))
|
|
223
|
+
|
|
224
|
+
## [0.3.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.2.0...xtctx-v0.3.0) (2026-02-26)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
### Features
|
|
228
|
+
|
|
229
|
+
* make API security config file first and refresh README ([bac9c3b](https://github.com/fstubner/xtctx/commit/bac9c3bfa44e0b0c4a080f2fcf42550c1e21ef29))
|
|
230
|
+
* make API security config file first and refresh README ([8625dba](https://github.com/fstubner/xtctx/commit/8625dba6383cd416ae6d45790bfe67e5eac0eaad))
|
|
231
|
+
|
|
232
|
+
## [0.2.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.1.0...xtctx-v0.2.0) (2026-02-25)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
### Features
|
|
236
|
+
|
|
237
|
+
* add api security hardening and owasp checklist ([5660c52](https://github.com/fstubner/xtctx/commit/5660c52591cfcacd1611cfa914e31435d2747c80))
|
|
238
|
+
* add API server and Phase 9 Vue web UI ([775543e](https://github.com/fstubner/xtctx/commit/775543e93720c24786abbeb3089e0393eeffa904))
|
|
239
|
+
* add auto-tagging for file references and domain classification ([fc27a52](https://github.com/fstubner/xtctx/commit/fc27a52de6edad9cd1b29dd3ee6685d9eb3db4b5))
|
|
240
|
+
* add Claude Code conversation scraper ([ba01b58](https://github.com/fstubner/xtctx/commit/ba01b583bfe440e6c274024961dd3472908a923c))
|
|
241
|
+
* add CLI compaction provider ([e5f38f8](https://github.com/fstubner/xtctx/commit/e5f38f87a51d5352bf46e741694fa7a70933d8dd))
|
|
242
|
+
* add CLI entrypoints and MCP serve command ([866052c](https://github.com/fstubner/xtctx/commit/866052c79c5e2d85aa7f391dcb260e83cd765e5b))
|
|
243
|
+
* add core type definitions ([c8dba56](https://github.com/fstubner/xtctx/commit/c8dba5614b83c7521638da67d7c0e664fb4434d1))
|
|
244
|
+
* add deduplication with similarity-based supercession ([7023c92](https://github.com/fstubner/xtctx/commit/7023c920fa8b294e5cc9500a456748ecc5cc06bf))
|
|
245
|
+
* add hybrid search with reciprocal rank fusion ([830dbe7](https://github.com/fstubner/xtctx/commit/830dbe78ea30dd3c5679e1b9c998150861d57a93))
|
|
246
|
+
* add ingestion coordinator, watcher, and daemon ([92a4553](https://github.com/fstubner/xtctx/commit/92a455311683f28b1a4cbdfbef6a8662cbb04faa))
|
|
247
|
+
* add knowledge repository with YAML file persistence ([52c2e5c](https://github.com/fstubner/xtctx/commit/52c2e5cbf8100364a17036daad9e24dd090a38b6))
|
|
248
|
+
* add LanceDB vector store wrapper ([4f10d46](https://github.com/fstubner/xtctx/commit/4f10d463c48dc916fe5ad8ca1eb2bea73c736927))
|
|
249
|
+
* add local embedding service using MiniLM ([dc66f51](https://github.com/fstubner/xtctx/commit/dc66f51b48200b5fb6a42c42be246edd311b7464))
|
|
250
|
+
* add MCP server scaffold with all tool definitions ([fa3554f](https://github.com/fstubner/xtctx/commit/fa3554fa5f424448eb3cab339e6a6c23707cb21e))
|
|
251
|
+
* add phase 12 landing page ([791f535](https://github.com/fstubner/xtctx/commit/791f53561146f5858ea7de458b084e9d14d6ce5b))
|
|
252
|
+
* add phase 13 multi-tool scrapers ([f81c2fb](https://github.com/fstubner/xtctx/commit/f81c2fb2406a98e554ae2246cbd96ffdd4571a78))
|
|
253
|
+
* add rule-based compaction pipeline ([7e5d58d](https://github.com/fstubner/xtctx/commit/7e5d58d4fd86cb5eb777021a5e6943b86c07cee8))
|
|
254
|
+
* add scraper registry and state management ([9859e2d](https://github.com/fstubner/xtctx/commit/9859e2d49c1678c85e0d824cd87a372aeaae9f63))
|
|
255
|
+
* automate releases and bundle web ui in npm package ([3d6ecac](https://github.com/fstubner/xtctx/commit/3d6ecac4db0e88d594e6d5c4e17d9c245d74999b))
|
|
256
|
+
* implement MCP tool handlers ([71c6ab5](https://github.com/fstubner/xtctx/commit/71c6ab5f97dde0d0dc63759d4b7014adc0ef78f3))
|
|
257
|
+
* implement phase 10 config sync ([dc2661a](https://github.com/fstubner/xtctx/commit/dc2661a58af83f4fafaa008bf8f0b796631341da))
|
|
258
|
+
* implement phase 14 hardening and release tooling ([4590f38](https://github.com/fstubner/xtctx/commit/4590f38d26d6ad80fb4737cf721796df68fae307))
|
|
259
|
+
* wire ingestion runtime into serve and ingest commands ([89dd876](https://github.com/fstubner/xtctx/commit/89dd876cd8de12617220e7a2e1167dd4bce8c1b5))
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
### Bug Fixes
|
|
263
|
+
|
|
264
|
+
* allow release-please prs to trigger ci ([fc00a77](https://github.com/fstubner/xtctx/commit/fc00a77145dbecee8f1a4f80fa3f60b635647738))
|
|
265
|
+
* allow release-please PRs to trigger ci ([c398b12](https://github.com/fstubner/xtctx/commit/c398b12b9273baf13136c16ee7cadca6129a0d10))
|
|
266
|
+
* normalize npm package metadata ([c6cf81f](https://github.com/fstubner/xtctx/commit/c6cf81f45c737d59629b48e850a9c13b6b97566e))
|
|
267
|
+
* normalize npm package metadata ([5553c78](https://github.com/fstubner/xtctx/commit/5553c78f9cf65d4f90d72604b2608d9d5eef40b7))
|
|
268
|
+
* run ci for release-please branches ([97e5111](https://github.com/fstubner/xtctx/commit/97e5111ee098faaaa8dc4f31338183c3b5fb610a))
|
|
269
|
+
* run ci for release-please branches ([90bf917](https://github.com/fstubner/xtctx/commit/90bf9179d05fb103e52036c55648cde422317752))
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
### Documentation
|
|
273
|
+
|
|
274
|
+
* add open source governance and release docs ([a9e18f5](https://github.com/fstubner/xtctx/commit/a9e18f51c1c87c2a6d6da241a37d7bf28e058ea3))
|
|
275
|
+
* add phase 14 integration hardening follow-up ([56e7a6e](https://github.com/fstubner/xtctx/commit/56e7a6ee45c0e32fc48940cb319929224a657fb2))
|
|
276
|
+
* add xtctx usage skill guide ([e247258](https://github.com/fstubner/xtctx/commit/e247258de8284297af869a22fb44f1f897001d5b))
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### Miscellaneous
|
|
280
|
+
|
|
281
|
+
* ignore codex local workspace directory ([33af3cb](https://github.com/fstubner/xtctx/commit/33af3cbb99f88a9666c0858922d7984fc18b2408))
|
|
282
|
+
* ignore runtime state directory ([3a8911d](https://github.com/fstubner/xtctx/commit/3a8911dca76787ef8f6724642a85474de566815e))
|
|
283
|
+
|
|
284
|
+
## [0.1.0] - 2026-02-25
|
|
285
|
+
|
|
286
|
+
### Added
|
|
287
|
+
|
|
288
|
+
- Core TypeScript project scaffold, tests, and CLI entrypoint.
|
|
289
|
+
- MCP server scaffold and tool handlers:
|
|
290
|
+
- `xtctx_search`
|
|
291
|
+
- `xtctx_recent_sessions`
|
|
292
|
+
- `xtctx_session_detail`
|
|
293
|
+
- `xtctx_project_knowledge`
|
|
294
|
+
- `xtctx_save_*`
|
|
295
|
+
- `xtctx_*_config` handlers
|
|
296
|
+
- Knowledge repository with autotagging and dedup/supersession behaviors.
|
|
297
|
+
- LanceDB-backed vector store + embedding service + hybrid search.
|
|
298
|
+
- Ingestion coordinator, watcher, daemon, and CLI ingestion commands.
|
|
299
|
+
- Rule-based compaction pipeline and external CLI compaction provider.
|
|
300
|
+
- API server and Vue web UI (dashboard/search/knowledge/sources/config pages).
|
|
301
|
+
- Config sync engine generating tool-native managed sections:
|
|
302
|
+
- `.cursorrules`
|
|
303
|
+
- `CLAUDE.md`
|
|
304
|
+
- `AGENTS.md`
|
|
305
|
+
- `.github/copilot-instructions.md`
|
|
306
|
+
- Additional scraper implementations:
|
|
307
|
+
- Claude Code
|
|
308
|
+
- Cursor (SQLite)
|
|
309
|
+
- Codex CLI (JSONL)
|
|
310
|
+
- GitHub Copilot (JSON)
|
|
311
|
+
- Gemini CLI (JSON)
|
|
312
|
+
- Integration hardening:
|
|
313
|
+
- Integration tests for MCP/API/web parity paths
|
|
314
|
+
- Retry and coordinated shutdown utilities
|
|
315
|
+
- CI workflow (Node 20/22)
|
|
316
|
+
- Release verification scripts and packaging allowlist
|
|
317
|
+
- Operator/runbook docs in `README.md`
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Felix Stubner
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Felix Stubner
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|