@pi-unipi/ask-user 2.0.11 → 2.0.13
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/index.ts +0 -7
- package/package.json +2 -2
package/index.ts
CHANGED
|
@@ -20,13 +20,6 @@ import { registerAskUserCommands } from "./commands.js";
|
|
|
20
20
|
const VERSION = getPackageVersion(new URL(".", import.meta.url).pathname);
|
|
21
21
|
|
|
22
22
|
export default function (pi: ExtensionAPI) {
|
|
23
|
-
// Register skills directory
|
|
24
|
-
const skillsDir = new URL("./skills", import.meta.url).pathname;
|
|
25
|
-
pi.on("resources_discover", async () => {
|
|
26
|
-
return {
|
|
27
|
-
skillPaths: [skillsDir],
|
|
28
|
-
};
|
|
29
|
-
});
|
|
30
23
|
|
|
31
24
|
// Register tools and commands
|
|
32
25
|
registerAskUserTools(pi);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-unipi/ask-user",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.13",
|
|
4
4
|
"description": "Structured user input tool for Pi coding agent \u2014 single-select, multi-select, freeform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@pi-unipi/core": "
|
|
43
|
+
"@pi-unipi/core": "2.0.13"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@earendil-works/pi-coding-agent": "^0.78.0",
|