pi-extensible-workflows 0.3.0 → 0.3.2

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,6 +18,8 @@ For source installs and local development, see the [installation guide](https://
18
18
 
19
19
  ## Capabilities
20
20
 
21
+ The main Pi agent acts as the orchestrator: it writes workflow scripts on the fly for each task. Pi extensions can add reusable functions and variables to those scripts, or register complete workflows that can be invoked by name.
22
+
21
23
  A workflow can fan out across specialized agents, combine their results, and resume without rerunning completed work.
22
24
 
23
25
  ```js
@@ -36,9 +38,7 @@ const summary = await agent(
36
38
  return summary;
37
39
  ```
38
40
 
39
- `security-specialist` is an example project role. Runs execute in the background by default, and completed work is reused when a run resumes.
40
-
41
- The complete contracts and examples live in the documentation:
41
+ Learn more about roles, workflow contracts, and extension APIs in the documentation:
42
42
 
43
43
  - [Workflow tool and invocation API](https://vekexasia.github.io/pi-extensible-workflows/developers.html#tool-api)
44
44
  - [Workflow DSL and worktrees](https://vekexasia.github.io/pi-extensible-workflows/developers.html#dsl)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-extensible-workflows",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Deterministic multi-agent workflow orchestration for Pi",
5
5
  "homepage": "https://vekexasia.github.io/pi-extensible-workflows/",
6
6
  "repository": { "type": "git", "url": "git+https://github.com/vekexasia/pi-extensible-workflows.git" },