@productbrain/mcp 0.0.1-beta.47 → 0.0.1-beta.49
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/dist/{chunk-FYFF4QKF.js → chunk-ED3KCWZE.js} +455 -72
- package/dist/chunk-ED3KCWZE.js.map +1 -0
- package/dist/{chunk-FMEZXUP5.js → chunk-IGQLZI32.js} +2232 -1941
- package/dist/chunk-IGQLZI32.js.map +1 -0
- package/dist/http.js +2 -2
- package/dist/index.js +2 -2
- package/dist/{smart-capture-XLBFE252.js → smart-capture-2IM2565I.js} +8 -2
- package/dist/views/src/entry-cards/index.html +227 -0
- package/dist/views/src/graph-constellation/index.html +254 -0
- package/package.json +3 -2
- package/dist/chunk-FMEZXUP5.js.map +0 -1
- package/dist/chunk-FYFF4QKF.js.map +0 -1
- /package/dist/{smart-capture-XLBFE252.js.map → smart-capture-2IM2565I.js.map} +0 -0
package/dist/http.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
SERVER_VERSION,
|
|
3
3
|
createProductBrainServer
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-IGQLZI32.js";
|
|
5
5
|
import {
|
|
6
6
|
bootstrapHttp,
|
|
7
7
|
initFeatureFlags,
|
|
8
8
|
runWithAuth
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-ED3KCWZE.js";
|
|
10
10
|
import {
|
|
11
11
|
getPostHogClient,
|
|
12
12
|
initAnalytics,
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
SERVER_VERSION,
|
|
4
4
|
createProductBrainServer
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-IGQLZI32.js";
|
|
6
6
|
import {
|
|
7
7
|
bootstrap,
|
|
8
8
|
getAgentSessionId,
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
orphanAgentSession,
|
|
12
12
|
recoverSessionState,
|
|
13
13
|
startAgentSession
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-ED3KCWZE.js";
|
|
15
15
|
import {
|
|
16
16
|
getPostHogClient,
|
|
17
17
|
initAnalytics,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
CLASSIFIABLE_COLLECTIONS,
|
|
2
3
|
CLASSIFIER_AUTO_ROUTE_THRESHOLD,
|
|
3
4
|
STARTER_COLLECTIONS,
|
|
4
5
|
batchCaptureOutputSchema,
|
|
@@ -7,16 +8,19 @@ import {
|
|
|
7
8
|
captureOutputSchema,
|
|
8
9
|
captureSchema,
|
|
9
10
|
checkEntryQuality,
|
|
11
|
+
classifyCollection,
|
|
10
12
|
classifyStarterCollection,
|
|
11
13
|
formatQualityReport,
|
|
12
14
|
formatRubricCoaching,
|
|
13
15
|
formatRubricVerdictSection,
|
|
16
|
+
inferStrategyCategory,
|
|
14
17
|
isClassificationAmbiguous,
|
|
15
18
|
registerSmartCaptureTools,
|
|
16
19
|
runContradictionCheck
|
|
17
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-ED3KCWZE.js";
|
|
18
21
|
import "./chunk-MRIO53BY.js";
|
|
19
22
|
export {
|
|
23
|
+
CLASSIFIABLE_COLLECTIONS,
|
|
20
24
|
CLASSIFIER_AUTO_ROUTE_THRESHOLD,
|
|
21
25
|
STARTER_COLLECTIONS,
|
|
22
26
|
batchCaptureOutputSchema,
|
|
@@ -25,12 +29,14 @@ export {
|
|
|
25
29
|
captureOutputSchema,
|
|
26
30
|
captureSchema,
|
|
27
31
|
checkEntryQuality,
|
|
32
|
+
classifyCollection,
|
|
28
33
|
classifyStarterCollection,
|
|
29
34
|
formatQualityReport,
|
|
30
35
|
formatRubricCoaching,
|
|
31
36
|
formatRubricVerdictSection,
|
|
37
|
+
inferStrategyCategory,
|
|
32
38
|
isClassificationAmbiguous,
|
|
33
39
|
registerSmartCaptureTools,
|
|
34
40
|
runContradictionCheck
|
|
35
41
|
};
|
|
36
|
-
//# sourceMappingURL=smart-capture-
|
|
42
|
+
//# sourceMappingURL=smart-capture-2IM2565I.js.map
|