@pi-unipi/workflow 0.1.1 → 0.1.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @unipi/workflow
1
+ # @pi-unipi/workflow
2
2
 
3
3
  Structured development workflow commands for Pi coding agent.
4
4
 
@@ -106,16 +106,15 @@ brainstorm → plan → work → review-work → consolidate
106
106
 
107
107
  ## Integration
108
108
 
109
- - **@unipi/core** — shared constants, events, utilities
110
- - **@unipi/memory** — memory hooks for consolidate (optional)
111
- - **@unipi/registry** — skill crafting for consolidate (optional)
112
- - **@unipi/subagents** — parallel research for gather-context, scan-issues (optional)
113
- - **@unipi/ralph** — loop integration for long-running tasks (optional)
109
+ - **@pi-unipi/core** — shared constants, events, utilities
110
+ - **@pi-unipi/memory** — memory hooks for consolidate (optional)
111
+ - **@pi-unipi/subagents** — parallel research for gather-context, scan-issues (optional)
112
+ - **@pi-unipi/ralph** — loop integration for long-running tasks (optional)
114
113
 
115
114
  ## Installation
116
115
 
117
116
  ```bash
118
- npm install @unipi/workflow
117
+ npm install @pi-unipi/workflow
119
118
  ```
120
119
 
121
120
  Add to pi settings:
package/commands.ts CHANGED
@@ -8,7 +8,7 @@
8
8
  import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
9
9
  import { readFileSync, readdirSync, existsSync } from "fs";
10
10
  import { join, basename } from "path";
11
- import { UNIPI_PREFIX, WORKFLOW_COMMANDS, getToolsForCommand, getSandboxLevel, type SandboxLevel } from "@unipi/core";
11
+ import { UNIPI_PREFIX, WORKFLOW_COMMANDS, getToolsForCommand, getSandboxLevel, type SandboxLevel } from "@pi-unipi/core";
12
12
 
13
13
  /** Options for command registration */
14
14
  export interface WorkflowCommandOptions {
package/index.ts CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  initUnipiDirs,
18
18
  type SandboxLevel,
19
19
  getToolsForLevel,
20
- } from "@unipi/core";
20
+ } from "@pi-unipi/core";
21
21
  import { registerWorkflowCommands } from "./commands.js";
22
22
 
23
23
  /** Package version (read from package.json at load time) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/workflow",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Structured development workflow commands for Pi coding agent",
5
5
  "type": "module",
6
6
  "license": "MIT",