@mrclrchtr/supi-prompt-suggestions 1.16.1 → 2.0.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 CHANGED
@@ -6,8 +6,6 @@
6
6
 
7
7
  Advisory ghost-text prompt suggestions for the [pi coding agent](https://github.com/earendil-works/pi).
8
8
 
9
- **Experimental.** Disabled by default — no surprise background model calls.
10
-
11
9
  ## Install
12
10
 
13
11
  ```bash
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-core",
3
- "version": "1.16.1",
3
+ "version": "2.0.0",
4
4
  "description": "SuPi core — shared infrastructure for SuPi extensions (XML context tags, config system)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -48,10 +48,6 @@
48
48
  "optional": true
49
49
  }
50
50
  },
51
- "devDependencies": {
52
- "@types/node": "25.9.4",
53
- "vitest": "4.1.9"
54
- },
55
51
  "main": "src/api.ts",
56
52
  "exports": {
57
53
  "./abort-utils": "./src/abort-utils.ts",
package/package.json CHANGED
@@ -1,8 +1,30 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-prompt-suggestions",
3
- "version": "1.16.1",
3
+ "version": "2.0.0",
4
4
  "description": "Advisory ghost-text prompt suggestions for the pi coding agent",
5
5
  "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/mrclrchtr/supi.git",
9
+ "directory": "packages/supi-prompt-suggestions"
10
+ },
11
+ "homepage": "https://github.com/mrclrchtr/supi/tree/main/packages/supi-prompt-suggestions#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/mrclrchtr/supi/issues"
14
+ },
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "keywords": [
19
+ "pi-package",
20
+ "pi",
21
+ "pi-coding-agent",
22
+ "pi-extension",
23
+ "prompt-suggestions",
24
+ "prompt",
25
+ "suggestions",
26
+ "ghost-text"
27
+ ],
6
28
  "type": "module",
7
29
  "files": [
8
30
  "src/**/*.ts",
@@ -27,13 +49,9 @@
27
49
  "@earendil-works/pi-ai": "*",
28
50
  "@earendil-works/pi-coding-agent": "*",
29
51
  "@earendil-works/pi-tui": "*",
30
- "@mrclrchtr/supi-core": "workspace:*"
52
+ "@mrclrchtr/supi-core": "2.0.0"
31
53
  },
32
54
  "bundledDependencies": [
33
55
  "@mrclrchtr/supi-core"
34
- ],
35
- "devDependencies": {
36
- "@types/node": "25.9.4",
37
- "vitest": "4.1.9"
38
- }
56
+ ]
39
57
  }