@carter-mcalister/pi-auto-name 0.1.1 → 0.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carter-mcalister/pi-auto-name",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "English-only automatic session naming for Pi",
5
5
  "author": "Carter McAlister",
6
6
  "type": "module",
@@ -40,13 +40,13 @@
40
40
  ]
41
41
  },
42
42
  "peerDependencies": {
43
- "@mariozechner/pi-ai": "*",
44
- "@mariozechner/pi-coding-agent": "*"
43
+ "@earendil-works/pi-ai": "*",
44
+ "@earendil-works/pi-coding-agent": "*"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@biomejs/biome": "2.3.5",
48
- "@mariozechner/pi-ai": "*",
49
- "@mariozechner/pi-coding-agent": "*",
48
+ "@earendil-works/pi-ai": "*",
49
+ "@earendil-works/pi-coding-agent": "*",
50
50
  "bun-types": "latest",
51
51
  "typescript": "^5.9.3"
52
52
  },
package/src/index.ts CHANGED
@@ -2,7 +2,7 @@ import * as path from 'node:path'
2
2
  import type {
3
3
  ExtensionAPI,
4
4
  ExtensionContext,
5
- } from '@mariozechner/pi-coding-agent'
5
+ } from '@earendil-works/pi-coding-agent'
6
6
  import {
7
7
  buildNameContext,
8
8
  extractNameFromResult,
@@ -1,4 +1,4 @@
1
- import { completeSimple } from '@mariozechner/pi-ai'
1
+ import { completeSimple } from '@earendil-works/pi-ai'
2
2
 
3
3
  type SummaryModel = Parameters<typeof completeSimple>[0]
4
4
  type SummaryResult = Awaited<ReturnType<typeof completeSimple>>