@mrclrchtr/supi-insights 2.0.1 → 2.0.2

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.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "SuPi core — shared infrastructure for SuPi extensions (XML context tags, config system)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -1,4 +1,4 @@
1
- import { complete } from "@earendil-works/pi-ai";
1
+ import { complete } from "@earendil-works/pi-ai/compat";
2
2
  import type { ExtensionContext } from "@earendil-works/pi-coding-agent";
3
3
  import type { TSchema } from "typebox";
4
4
  import { Value } from "typebox/value";
@@ -7,7 +7,7 @@
7
7
  * @module
8
8
  */
9
9
 
10
- import type { Model } from "@earendil-works/pi-ai";
10
+ import type { Model } from "@earendil-works/pi-ai/compat";
11
11
  import { type ExtensionContext, SettingsManager } from "@earendil-works/pi-coding-agent";
12
12
 
13
13
  // ── Types ──────────────────────────────────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-insights",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "SuPi Insights extension — generate usage reports analyzing your PI sessions",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -35,7 +35,7 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "diff": "^9.0.0",
38
- "@mrclrchtr/supi-core": "2.0.1"
38
+ "@mrclrchtr/supi-core": "2.0.2"
39
39
  },
40
40
  "bundledDependencies": [
41
41
  "@mrclrchtr/supi-core"
package/src/extractor.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // LLM facet extraction — analyze session transcripts and extract structured facets.
2
2
 
3
- import { complete } from "@earendil-works/pi-ai";
3
+ import { complete } from "@earendil-works/pi-ai/compat";
4
4
  import type { ExtensionContext } from "@earendil-works/pi-coding-agent";
5
5
  import { callWithJsonResponse } from "@mrclrchtr/supi-core/llm";
6
6
  import { Type } from "typebox";