@davidorex/pi-project-workflows 0.12.0 → 0.13.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davidorex/pi-project-workflows",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "Pi extensions for structured project state, workflow orchestration, and behavior monitoring — single install for all three",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "David Ryan",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
]
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@davidorex/pi-project": "^0.
|
|
33
|
-
"@davidorex/pi-workflows": "^0.
|
|
34
|
-
"@davidorex/pi-behavior-monitors": "^0.
|
|
32
|
+
"@davidorex/pi-project": "^0.13.0",
|
|
33
|
+
"@davidorex/pi-workflows": "^0.13.0",
|
|
34
|
+
"@davidorex/pi-behavior-monitors": "^0.13.0"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -98,6 +98,7 @@ See references/bundled-resources.md for full inventory.
|
|
|
98
98
|
| `project_vision` | `{project_vision}` / `{{ project_vision }}` | .project/project.json vision, core_value, name | — |
|
|
99
99
|
| `project_conventions` | `{project_conventions}` / `{{ project_conventions }}` | .project/conformance-reference.json principle names | — |
|
|
100
100
|
| `git_status` | `{git_status}` / `{{ git_status }}` | Output of git status --porcelain | 5s timeout |
|
|
101
|
+
| `conversation_history` | `{conversation_history}` / `{{ conversation_history }}` | Prior turn summaries (user request + actions + assistant response) | 1-3 turns adaptive, 2000 char max |
|
|
101
102
|
|
|
102
103
|
Any string is accepted in `classify.context`. Unknown collector names produce empty string.
|
|
103
104
|
|
|
@@ -117,7 +118,7 @@ Built-in placeholders (always available, not in `classify.context`):
|
|
|
117
118
|
|
|
118
119
|
**Events:** `message_end`, `turn_end`, `agent_end`, `command`, `tool_call`
|
|
119
120
|
|
|
120
|
-
**Verdict Types:** `clean`, `flag`, `new`
|
|
121
|
+
**Verdict Types:** `clean`, `flag`, `new`, `error`
|
|
121
122
|
|
|
122
123
|
**Scope Targets:** `main`, `subagent`, `all`, `workflow`
|
|
123
124
|
|