@davidorex/pi-project-workflows 0.2.0

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 ADDED
@@ -0,0 +1,28 @@
1
+ # @davidorex/pi-project-workflows
2
+
3
+ One-command install for both [Pi](https://github.com/badlogic/pi-mono) extensions: structured project state management and workflow orchestration.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pi install npm:@davidorex/pi-project-workflows
9
+ ```
10
+
11
+ This installs both extensions:
12
+ - **[@davidorex/pi-project](https://github.com/davidorex/pi-project-workflows/tree/main/packages/pi-project)** — schema-driven project state (typed blocks, validation, derived state)
13
+ - **[@davidorex/pi-workflows](https://github.com/davidorex/pi-project-workflows/tree/main/packages/pi-workflows)** — workflow orchestration (YAML specs, DAG execution, checkpoint/resume)
14
+
15
+ ## Getting Started
16
+
17
+ ```
18
+ /project init # scaffolds .project/ with schemas and starter blocks
19
+ /workflow init # scaffolds .workflows/ for run state
20
+ /project status # see derived project state
21
+ /workflow list # discover and run workflows
22
+ ```
23
+
24
+ ## Documentation
25
+
26
+ See the package READMEs for full API docs, source maps, and LLM guidance:
27
+ - [pi-project README](https://github.com/davidorex/pi-project-workflows/tree/main/packages/pi-project)
28
+ - [pi-workflows README](https://github.com/davidorex/pi-project-workflows/tree/main/packages/pi-workflows)
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@davidorex/pi-project-workflows",
3
+ "version": "0.2.0",
4
+ "description": "Pi extensions for structured project state and workflow orchestration — installs both @davidorex/pi-project and @davidorex/pi-workflows",
5
+ "license": "MIT",
6
+ "author": "David Ryan",
7
+ "type": "module",
8
+ "keywords": ["pi-package"],
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/davidorex/pi-project-workflows.git"
12
+ },
13
+ "homepage": "https://github.com/davidorex/pi-project-workflows",
14
+ "files": ["*.ts", "*.md"],
15
+ "pi": {
16
+ "extensions": [
17
+ "./project-extension.ts",
18
+ "./workflows-extension.ts"
19
+ ]
20
+ },
21
+ "dependencies": {
22
+ "@davidorex/pi-project": "*",
23
+ "@davidorex/pi-workflows": "*"
24
+ }
25
+ }
@@ -0,0 +1 @@
1
+ export { default } from "@davidorex/pi-project/src/index.ts";
@@ -0,0 +1 @@
1
+ export { default } from "@davidorex/pi-workflows/src/index.ts";