knit-mcp 0.16.1 → 0.22.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.
- package/README.md +180 -141
- package/dist/cache-3QREKWAW.js +21 -0
- package/dist/chunk-2GDNMY7N.js +57 -0
- package/dist/{chunk-27TA2ZQZ.js → chunk-5EUQ2DCN.js} +12 -0
- package/dist/{chunk-2FAS6CV4.js → chunk-5R5YKDNT.js} +895 -13
- package/dist/{chunk-BBQSWT4H.js → chunk-6BQPXFRL.js} +40 -0
- package/dist/{chunk-VB2TIR6L.js → chunk-DIU7RE5X.js} +2 -2
- package/dist/{chunk-OINYMLOV.js → chunk-DXV5NAQ3.js} +10 -4
- package/dist/{chunk-ZESAIRIL.js → chunk-ESTWQMZZ.js} +61 -6
- package/dist/{tools-7VJRV64S.js → chunk-NT7S4F72.js} +591 -158
- package/dist/chunk-T55DZTYS.js +70 -0
- package/dist/{chunk-Q3GNWHEW.js → chunk-WPXK5IHO.js} +60 -9
- package/dist/{chunk-YRLAWCYW.js → chunk-X4PHSVRB.js} +399 -1
- package/dist/chunk-YINPCUVZ.js +198 -0
- package/dist/cli.js +42 -15
- package/dist/doctor-HKC7JQST.js +26 -0
- package/dist/{export-4BO6HCXP.js → export-QKUVOV3O.js} +3 -2
- package/dist/host-SZN2NCFM.js +18 -0
- package/dist/{install-agents-2JYKFLU6.js → install-agents-3ZTV6EQW.js} +8 -11
- package/dist/{instructions-4SLOUME2.js → instructions-N5VV4ESJ.js} +3 -1
- package/dist/{integration-scanner-LBD2PIZ3.js → integration-scanner-5O6XSGGP.js} +2 -2
- package/dist/prompts-3MSBEU5V.js +49 -0
- package/dist/{refresh-4X4HMDMT.js → refresh-4FWFEZP3.js} +4 -6
- package/dist/{setup-2YN36GWS.js → setup-GFU5HIA5.js} +144 -19
- package/dist/{status-RPHO7QQO.js → status-J2Q4ACID.js} +4 -4
- package/dist/tools-AVMVTHON.js +30 -0
- package/dist/{ui-GN4JT4XR.js → ui-W2SAVL73.js} +166 -82
- package/package.json +1 -1
- package/webapp/dist/assets/index-DxyZTqwU.js +40 -0
- package/webapp/dist/index.html +1 -1
- package/dist/cache-7S5DFFQ6.js +0 -21
- package/dist/chunk-FX3SVNHX.js +0 -364
- package/dist/chunk-JE4BZQUD.js +0 -333
- package/dist/chunk-OZCVBNHF.js +0 -120
- package/dist/chunk-QM4U75VE.js +0 -475
- package/dist/doctor-2ESSKFZE.js +0 -14
- package/webapp/dist/assets/index-BvEqg_UZ.js +0 -40
|
@@ -81,6 +81,15 @@ function sessionsJsonlPath(rootPath) {
|
|
|
81
81
|
function protocolConfigPath(rootPath) {
|
|
82
82
|
return join2(projectDataDir(rootPath), "protocol-config.json");
|
|
83
83
|
}
|
|
84
|
+
function preferencesPath(rootPath) {
|
|
85
|
+
return join2(projectDataDir(rootPath), "preferences.json");
|
|
86
|
+
}
|
|
87
|
+
function projectMetaPath(rootPath) {
|
|
88
|
+
return join2(projectDataDir(rootPath), "meta.json");
|
|
89
|
+
}
|
|
90
|
+
function exportsDir(projectId2) {
|
|
91
|
+
return join2(knitRoot(), "exports", projectId2);
|
|
92
|
+
}
|
|
84
93
|
function classificationMarkerPath(rootPath) {
|
|
85
94
|
return join2(projectDataDir(rootPath), ".classified-current");
|
|
86
95
|
}
|
|
@@ -158,6 +167,9 @@ export {
|
|
|
158
167
|
projectAgentFile,
|
|
159
168
|
sessionsJsonlPath,
|
|
160
169
|
protocolConfigPath,
|
|
170
|
+
preferencesPath,
|
|
171
|
+
projectMetaPath,
|
|
172
|
+
exportsDir,
|
|
161
173
|
classificationMarkerPath,
|
|
162
174
|
sessionMarkerPath,
|
|
163
175
|
searchMarkerPath,
|