@pi-unipi/workflow 0.1.2 → 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 +6 -7
- package/commands.ts +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
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/
|
|
112
|
-
- **@unipi/
|
|
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