pi-skillful 0.2.2 → 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,31 @@ 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
+
16
+ ## [0.2.3] - 2026-05-07
17
+
18
+ ### Fixed
19
+
20
+ - Flattened extension entry point from `extensions/pi-skillful/index.ts` to `extensions/index.ts` so Pi displays the extension as `pi-skillful` instead of `pi-skillful:pi-skillful` in the startup banner.
21
+
22
+ ## [0.2.2] - 2026-05-07
23
+
24
+ ### Changed
25
+
26
+ - Migrated peer dependencies from `@mariozechner` to `@earendil-works` scope (`@earendil-works/pi-coding-agent`, `@earendil-works/pi-tui` v0.74.0).
27
+
28
+ ## [0.2.1] - 2026-05-07
29
+
30
+ ### Fixed
31
+
32
+ - Pruned stale hidden skills from config on session start to avoid referencing removed skills.
33
+
9
34
  ## [0.2.0] - 2026-05-07
10
35
 
11
36
  ### Added
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
@@ -1,3 +1,7 @@
1
+ <p>
2
+ <img src="https://raw.githubusercontent.com/jvm/pi-skillful/main/banner.png" alt="pi-skillful" width="1100">
3
+ </p>
4
+
1
5
  # pi-skillful
2
6
 
3
7
  `pi-skillful` is a [Pi](https://github.com/badlogic/pi-mono) package that improves skill workflows.
@@ -108,14 +112,14 @@ This package is source-distributed. Pi loads the TypeScript extensions directly
108
112
  Requirements:
109
113
 
110
114
  - Node.js >= 20.6.0
111
- - Bun for local development commands
115
+ - npm for local development commands
112
116
 
113
117
  Common commands:
114
118
 
115
119
  ```bash
116
- bun install
117
- bun run check
118
- bun run pack:dry-run
120
+ npm install
121
+ npm run check
122
+ npm run pack:dry-run
119
123
  ```
120
124
 
121
125
  ## Contributing
package/banner.png ADDED
Binary file
@@ -1,6 +1,6 @@
1
1
  import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
2
- import inlineSkillInvocation from "../../src/extensions/inline-skill-invocation.js";
3
- import skillVisibility from "../../src/extensions/skill-visibility.js";
2
+ import inlineSkillInvocation from "../src/extensions/inline-skill-invocation.js";
3
+ import skillVisibility from "../src/extensions/skill-visibility.js";
4
4
 
5
5
  export default function piSkillful(pi: ExtensionAPI) {
6
6
  inlineSkillInvocation(pi);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-skillful",
3
- "version": "0.2.2",
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,12 +21,13 @@
21
21
  ],
22
22
  "pi": {
23
23
  "extensions": [
24
- "./extensions/pi-skillful"
24
+ "./extensions/index.ts"
25
25
  ]
26
26
  },
27
27
  "files": [
28
28
  "extensions",
29
29
  "src",
30
+ "banner.png",
30
31
  "README.md",
31
32
  "LICENSE",
32
33
  "CHANGELOG.md",
@@ -46,6 +47,7 @@
46
47
  },
47
48
  "scripts": {
48
49
  "check": "tsc --noEmit",
50
+ "typecheck": "tsc --noEmit",
49
51
  "pack:dry-run": "npm pack --dry-run"
50
52
  },
51
53
  "publishConfig": {