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
@@ -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.
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.1",
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/pi-skillful"
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
- "@mariozechner/pi-coding-agent": "*",
39
- "@mariozechner/pi-tui": "*"
39
+ "@earendil-works/pi-coding-agent": "*",
40
+ "@earendil-works/pi-tui": "*"
40
41
  },
41
42
  "devDependencies": {
42
- "@mariozechner/pi-coding-agent": "^0.73.0",
43
- "@mariozechner/pi-tui": "^0.73.0",
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 "@mariozechner/pi-coding-agent";
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 "@mariozechner/pi-coding-agent";
10
- import { type Component, Key, matchesKey, type SettingItem, SettingsList, truncateToWidth, type TUI } from "@mariozechner/pi-tui";
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
- }