@pi-unipi/workflow 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.
Files changed (2) hide show
  1. package/index.ts +0 -7
  2. package/package.json +2 -2
package/index.ts CHANGED
@@ -39,13 +39,6 @@ let currentSandboxLevel: SandboxLevel | null = null;
39
39
  let currentSandboxTools: string[] | null = null;
40
40
 
41
41
  export default function (pi: ExtensionAPI) {
42
- // Register skills directory with pi's resource loader
43
- const skillsDir = new URL("./skills", import.meta.url).pathname;
44
- pi.on("resources_discover", async (_event, _ctx) => {
45
- return {
46
- skillPaths: [skillsDir],
47
- };
48
- });
49
42
 
50
43
  // Register all workflow commands
51
44
  registerWorkflowCommands(pi, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/workflow",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
4
4
  "description": "Structured development workflow commands for Pi coding agent",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -26,7 +26,7 @@
26
26
  "access": "public"
27
27
  },
28
28
  "dependencies": {
29
- "@pi-unipi/core": "^2.0.10"
29
+ "@pi-unipi/core": "2.0.13"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "@earendil-works/pi-ai": "^0.78.0",