@davidorex/pi-project-workflows 0.2.0 → 0.3.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 +5 -2
- package/monitors-extension.ts +1 -0
- package/package.json +30 -23
- package/project-extension.ts +1 -1
- package/workflows-extension.ts +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @davidorex/pi-project-workflows
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Convenience meta-package that re-exports all three [Pi](https://github.com/badlogic/pi-mono) extensions — structured project state, workflow orchestration, and behavior monitoring — in a single install.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -8,9 +8,10 @@ One-command install for both [Pi](https://github.com/badlogic/pi-mono) extension
|
|
|
8
8
|
pi install npm:@davidorex/pi-project-workflows
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
This installs
|
|
11
|
+
This installs all three extensions:
|
|
12
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
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
|
+
- **[@davidorex/pi-behavior-monitors](https://github.com/davidorex/pi-project-workflows/tree/main/packages/pi-behavior-monitors)** — behavior monitors (autonomous watchdogs, pattern classification, steering corrections)
|
|
14
15
|
|
|
15
16
|
## Getting Started
|
|
16
17
|
|
|
@@ -19,6 +20,7 @@ This installs both extensions:
|
|
|
19
20
|
/workflow init # scaffolds .workflows/ for run state
|
|
20
21
|
/project status # see derived project state
|
|
21
22
|
/workflow list # discover and run workflows
|
|
23
|
+
/monitors # list all monitors, scope, and state
|
|
22
24
|
```
|
|
23
25
|
|
|
24
26
|
## Documentation
|
|
@@ -26,3 +28,4 @@ This installs both extensions:
|
|
|
26
28
|
See the package READMEs for full API docs, source maps, and LLM guidance:
|
|
27
29
|
- [pi-project README](https://github.com/davidorex/pi-project-workflows/tree/main/packages/pi-project)
|
|
28
30
|
- [pi-workflows README](https://github.com/davidorex/pi-project-workflows/tree/main/packages/pi-workflows)
|
|
31
|
+
- [pi-behavior-monitors README](https://github.com/davidorex/pi-project-workflows/tree/main/packages/pi-behavior-monitors)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "@davidorex/pi-behavior-monitors";
|
package/package.json
CHANGED
|
@@ -1,25 +1,32 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
2
|
+
"name": "@davidorex/pi-project-workflows",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Pi extensions for structured project state, workflow orchestration, and behavior monitoring — single install for all three",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "David Ryan",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"pi-package"
|
|
10
|
+
],
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/davidorex/pi-project-workflows.git"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/davidorex/pi-project-workflows",
|
|
16
|
+
"files": [
|
|
17
|
+
"*.ts",
|
|
18
|
+
"*.md"
|
|
19
|
+
],
|
|
20
|
+
"pi": {
|
|
21
|
+
"extensions": [
|
|
22
|
+
"./project-extension.ts",
|
|
23
|
+
"./workflows-extension.ts",
|
|
24
|
+
"./monitors-extension.ts"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@davidorex/pi-project": "^0.3.0",
|
|
29
|
+
"@davidorex/pi-workflows": "^0.3.0",
|
|
30
|
+
"@davidorex/pi-behavior-monitors": "^0.3.0"
|
|
31
|
+
}
|
|
25
32
|
}
|
package/project-extension.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "@davidorex/pi-project
|
|
1
|
+
export { default } from "@davidorex/pi-project";
|
package/workflows-extension.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "@davidorex/pi-workflows
|
|
1
|
+
export { default } from "@davidorex/pi-workflows";
|