pi-skillful 0.2.2 → 0.2.3
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 +18 -0
- package/README.md +4 -0
- package/banner.png +0 -0
- package/extensions/{pi-skillful/index.ts → index.ts} +2 -2
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,24 @@ This project follows the spirit of [Keep a Changelog](https://keepachangelog.com
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.3] - 2026-05-07
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- 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.
|
|
14
|
+
|
|
15
|
+
## [0.2.2] - 2026-05-07
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Migrated peer dependencies from `@mariozechner` to `@earendil-works` scope (`@earendil-works/pi-coding-agent`, `@earendil-works/pi-tui` v0.74.0).
|
|
20
|
+
|
|
21
|
+
## [0.2.1] - 2026-05-07
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Pruned stale hidden skills from config on session start to avoid referencing removed skills.
|
|
26
|
+
|
|
9
27
|
## [0.2.0] - 2026-05-07
|
|
10
28
|
|
|
11
29
|
### Added
|
package/README.md
CHANGED
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 "
|
|
3
|
-
import skillVisibility from "
|
|
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.
|
|
3
|
+
"version": "0.2.3",
|
|
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
|
|
24
|
+
"./extensions"
|
|
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",
|