@mrclrchtr/supi-code-runtime 2.8.0 → 3.1.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-core",
3
- "version": "2.8.0",
3
+ "version": "3.1.0",
4
4
  "description": "SuPi core — shared infrastructure for SuPi extensions (XML context tags, config system)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -55,6 +55,7 @@
55
55
  "./config": "./src/config.ts",
56
56
  "./context": "./src/context.ts",
57
57
  "./debug": "./src/debug-registry.ts",
58
+ "./evidence-badge": "./src/evidence-badge.ts",
58
59
  "./footer-registry": "./src/footer-registry.ts",
59
60
  "./llm": "./src/llm.ts",
60
61
  "./model-selection": "./src/model-selection.ts",
@@ -15,6 +15,8 @@ export * from "./context.ts";
15
15
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
16
16
  export * from "./debug-registry.ts";
17
17
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
18
+ export * from "./evidence-badge.ts";
19
+ // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
18
20
  export * from "./footer-registry.ts";
19
21
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
20
22
  export * from "./llm.ts";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-code-runtime",
3
- "version": "2.8.0",
3
+ "version": "3.1.0",
4
4
  "description": "SuPi code-runtime — shared workspace context, capability contracts, and canonical types for the code-understanding stack",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -29,7 +29,7 @@
29
29
  "!__tests__"
30
30
  ],
31
31
  "dependencies": {
32
- "@mrclrchtr/supi-core": "2.8.0"
32
+ "@mrclrchtr/supi-core": "3.1.0"
33
33
  },
34
34
  "bundledDependencies": [
35
35
  "@mrclrchtr/supi-core"
package/src/api.ts CHANGED
@@ -6,6 +6,8 @@
6
6
  * It is a library-only package with no pi extension entrypoint.
7
7
  */
8
8
 
9
+ // Evidence display — re-exported from supi-core
10
+ export { type EvidenceBadgeInput, formatEvidenceBadge } from "@mrclrchtr/supi-core/evidence-badge";
9
11
  // Capability interfaces and availability states
10
12
  export type {
11
13
  CapabilityState,
@@ -13,8 +15,6 @@ export type {
13
15
  StructuralProvider,
14
16
  StructuralResult,
15
17
  } from "./capability/types.ts";
16
- // Evidence display
17
- export { type EvidenceBadgeInput, formatEvidenceBadge } from "./evidence-badge.ts";
18
18
  // Shared canonical types
19
19
  export type {
20
20
  CalleeDepth,