pi-skillful 0.3.7 → 0.3.8
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 +7 -0
- package/index.ts +1 -0
- package/package.json +10 -6
- package/src/index.ts +1 -0
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.3.8] - 2026-06-06
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Aligned package structure with monorepo guidelines (added root `index.ts` re-export, `src/index.ts`, fixed extension entry point).
|
|
14
|
+
- Update `author` field to full name for monorepo consistency.
|
|
15
|
+
|
|
9
16
|
## [0.3.7] - 2026-05-20
|
|
10
17
|
|
|
11
18
|
### Changed
|
package/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./extensions/index.js";
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-skillful",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"description": "Pi package with skill invocation and visibility improvements.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./src/index.ts"
|
|
8
|
+
},
|
|
6
9
|
"license": "MIT",
|
|
7
|
-
"author": "
|
|
10
|
+
"author": "Jose Mocito",
|
|
8
11
|
"repository": {
|
|
9
12
|
"type": "git",
|
|
10
13
|
"url": "git+https://github.com/jvm/pi-mono.git",
|
|
@@ -22,10 +25,11 @@
|
|
|
22
25
|
],
|
|
23
26
|
"pi": {
|
|
24
27
|
"extensions": [
|
|
25
|
-
"./
|
|
28
|
+
"./index.ts"
|
|
26
29
|
]
|
|
27
30
|
},
|
|
28
31
|
"files": [
|
|
32
|
+
"index.ts",
|
|
29
33
|
"extensions",
|
|
30
34
|
"src",
|
|
31
35
|
"banner.png",
|
|
@@ -41,9 +45,9 @@
|
|
|
41
45
|
"@earendil-works/pi-tui": "*"
|
|
42
46
|
},
|
|
43
47
|
"devDependencies": {
|
|
44
|
-
"@earendil-works/pi-coding-agent": "^0.
|
|
45
|
-
"@earendil-works/pi-tui": "^0.
|
|
46
|
-
"@types/node": "^25.6.
|
|
48
|
+
"@earendil-works/pi-coding-agent": "^0.75.4",
|
|
49
|
+
"@earendil-works/pi-tui": "^0.75.4",
|
|
50
|
+
"@types/node": "^25.6.2",
|
|
47
51
|
"typescript": "^6.0.3"
|
|
48
52
|
},
|
|
49
53
|
"scripts": {
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { reportInstallTelemetry } from "./install-telemetry.js";
|