pi-skillful 0.2.1 → 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
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
|
|
@@ -0,0 +1,8 @@
|
|
|
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";
|
|
4
|
+
|
|
5
|
+
export default function piSkillful(pi: ExtensionAPI) {
|
|
6
|
+
inlineSkillInvocation(pi);
|
|
7
|
+
skillVisibility(pi);
|
|
8
|
+
}
|
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",
|
|
@@ -35,12 +36,12 @@
|
|
|
35
36
|
"CODE_OF_CONDUCT.md"
|
|
36
37
|
],
|
|
37
38
|
"peerDependencies": {
|
|
38
|
-
"@
|
|
39
|
-
"@
|
|
39
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
40
|
+
"@earendil-works/pi-tui": "*"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
43
|
+
"@earendil-works/pi-coding-agent": "^0.74.0",
|
|
44
|
+
"@earendil-works/pi-tui": "^0.74.0",
|
|
44
45
|
"@types/node": "^25.6.0",
|
|
45
46
|
"typescript": "^6.0.3"
|
|
46
47
|
},
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ExtensionAPI } from "@
|
|
1
|
+
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
2
2
|
import { readSkillBlock, sourceInfoToSkill, type SkillCommandInfo } from "../skills.js";
|
|
3
3
|
|
|
4
4
|
const SKILL_INVOCATION_PATTERN = /(^|[^\w/-])\/skill:([a-z0-9](?:[a-z0-9-]{0,62}[a-z0-9])?)(?=$|[^a-z0-9-])/g;
|
|
@@ -6,8 +6,8 @@ import {
|
|
|
6
6
|
type ExtensionAPI,
|
|
7
7
|
type Skill,
|
|
8
8
|
type Theme,
|
|
9
|
-
} from "@
|
|
10
|
-
import { type Component, Key, matchesKey, type SettingItem, SettingsList, truncateToWidth, type TUI } from "@
|
|
9
|
+
} from "@earendil-works/pi-coding-agent";
|
|
10
|
+
import { type Component, Key, matchesKey, type SettingItem, SettingsList, truncateToWidth, type TUI } from "@earendil-works/pi-tui";
|
|
11
11
|
import {
|
|
12
12
|
normalizeSkillName,
|
|
13
13
|
normalizeSkillNames,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
|
|
2
|
-
import inlineSkillInvocation from "../../src/extensions/inline-skill-invocation.js";
|
|
3
|
-
import skillVisibility from "../../src/extensions/skill-visibility.js";
|
|
4
|
-
|
|
5
|
-
export default function piSkillful(pi: ExtensionAPI) {
|
|
6
|
-
inlineSkillInvocation(pi);
|
|
7
|
-
skillVisibility(pi);
|
|
8
|
-
}
|