pi-skillful 0.2.3 → 0.2.4

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/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ This project follows the spirit of [Keep a Changelog](https://keepachangelog.com
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.4] - 2026-05-09
10
+
11
+ ### Changed
12
+
13
+ - Switched local development, CI, and publishing workflows from Bun to npm for consistency with Pi package conventions.
14
+ - Made the Pi extension entry path explicit as `./extensions/index.ts`.
15
+
9
16
  ## [0.2.3] - 2026-05-07
10
17
 
11
18
  ### Fixed
package/CONTRIBUTING.md CHANGED
@@ -5,8 +5,8 @@ Thanks for your interest in contributing to `pi-skillful`.
5
5
  ## Development setup
6
6
 
7
7
  ```bash
8
- bun install
9
- bun run check
8
+ npm install
9
+ npm run check
10
10
  ```
11
11
 
12
12
  The package is source-distributed: Pi loads the TypeScript extension files directly. There is no build step for runtime use.
@@ -34,8 +34,8 @@ pi -e /path/to/pi-skillful/extensions/pi-skillful
34
34
 
35
35
  Before opening a pull request:
36
36
 
37
- - Run `bun run check`.
38
- - Run `bun run pack:dry-run` and confirm the package contents are intentional.
37
+ - Run `npm run check`.
38
+ - Run `npm run pack:dry-run` and confirm the package contents are intentional.
39
39
  - Update `README.md` if user-facing behavior changes.
40
40
  - Update `CHANGELOG.md` for notable changes.
41
41
  - Keep examples and paths generic; do not commit machine-specific paths or credentials.
package/README.md CHANGED
@@ -112,14 +112,14 @@ This package is source-distributed. Pi loads the TypeScript extensions directly
112
112
  Requirements:
113
113
 
114
114
  - Node.js >= 20.6.0
115
- - Bun for local development commands
115
+ - npm for local development commands
116
116
 
117
117
  Common commands:
118
118
 
119
119
  ```bash
120
- bun install
121
- bun run check
122
- bun run pack:dry-run
120
+ npm install
121
+ npm run check
122
+ npm run pack:dry-run
123
123
  ```
124
124
 
125
125
  ## Contributing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-skillful",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Pi package with skill invocation and visibility improvements.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -21,7 +21,7 @@
21
21
  ],
22
22
  "pi": {
23
23
  "extensions": [
24
- "./extensions"
24
+ "./extensions/index.ts"
25
25
  ]
26
26
  },
27
27
  "files": [
@@ -47,6 +47,7 @@
47
47
  },
48
48
  "scripts": {
49
49
  "check": "tsc --noEmit",
50
+ "typecheck": "tsc --noEmit",
50
51
  "pack:dry-run": "npm pack --dry-run"
51
52
  },
52
53
  "publishConfig": {