@pi-unipi/workflow 2.0.5 → 2.0.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.
Files changed (3) hide show
  1. package/commands.ts +1 -1
  2. package/index.ts +1 -1
  3. package/package.json +6 -5
package/commands.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * slash commands that load and invoke the appropriate skill.
6
6
  */
7
7
 
8
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
8
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
9
9
  import { readFileSync, readdirSync, existsSync, statSync } from "fs";
10
10
  import { join, basename } from "path";
11
11
  import { UNIPI_PREFIX, WORKFLOW_COMMANDS, getToolsForCommand, getSandboxLevel, type SandboxLevel } from "@pi-unipi/core";
package/index.ts CHANGED
@@ -7,7 +7,7 @@
7
7
  * Applies sandbox (tool filtering) per command.
8
8
  */
9
9
 
10
- import type { ExtensionAPI, ExtensionContext } from "@mariozechner/pi-coding-agent";
10
+ import type { ExtensionAPI, ExtensionContext } from "@earendil-works/pi-coding-agent";
11
11
  import {
12
12
  UNIPI_EVENTS,
13
13
  MODULES,
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@pi-unipi/workflow",
3
- "version": "2.0.5",
3
+ "version": "2.0.8",
4
4
  "description": "Structured development workflow commands for Pi coding agent",
5
5
  "type": "module",
6
+ "main": "index.ts",
6
7
  "license": "MIT",
7
8
  "author": "Neuron Mr White",
8
9
  "repository": {
@@ -36,9 +37,9 @@
36
37
  "@pi-unipi/core": "^2.0.0"
37
38
  },
38
39
  "peerDependencies": {
39
- "@mariozechner/pi-ai": "*",
40
- "@mariozechner/pi-coding-agent": "*",
41
- "@mariozechner/pi-tui": "*",
42
- "@sinclair/typebox": "*"
40
+ "@earendil-works/pi-ai": "^0.75.5",
41
+ "@earendil-works/pi-coding-agent": "^0.75.5",
42
+ "@earendil-works/pi-tui": "^0.75.5",
43
+ "typebox": "^1.1.38"
43
44
  }
44
45
  }