@maplezzk/pi-dynamic-workflows 1.1.3 → 1.2.1
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/SKILL.md +24 -0
- package/package.json +7 -3
- package/src/workflow-tool.ts +0 -1
package/SKILL.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: configure-pi-dynamic-workflows
|
|
3
|
+
description: "配置与排查 pi-dynamic-workflows 的执行后端和异步模式。Use when configuring workflow backend, async mode, or subagent integration."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 配置 pi-dynamic-workflows
|
|
7
|
+
|
|
8
|
+
## 诊断
|
|
9
|
+
|
|
10
|
+
读取实际 Pi agent 目录下的 `extensions/pi-dynamic-workflows/config.json`,并检查 `PI_WORKFLOW_BACKEND`、`PI_WORKFLOW_ASYNC`。优先级是 JSON 配置 > 环境变量 > 默认值。
|
|
11
|
+
|
|
12
|
+
## 修改
|
|
13
|
+
|
|
14
|
+
优先在 Pi 中运行 `/config:workflow`:
|
|
15
|
+
|
|
16
|
+
- `backend: "workflow"` 使用内置进程内 agent;
|
|
17
|
+
- `backend: "subagent"` 要求 `pi-interactive-subagents` 已安装并加载;
|
|
18
|
+
- `async: true` 让 workflow 后台执行并显示实时状态。
|
|
19
|
+
|
|
20
|
+
`/workflow-config` 和 `/pi-workflow-config` 仅为兼容别名。不要在没有 subagent 扩展时选择 `subagent`,也不要用环境变量覆盖后误以为 JSON 未生效。
|
|
21
|
+
|
|
22
|
+
## 验证
|
|
23
|
+
|
|
24
|
+
运行一个最小 workflow,至少包含静态 `meta.phases`、一次 `phase()` 和一次带 JSON Schema 的 `agent()`。若使用 `subagent` 后端,确认 `globalThis.__pi_subagents` 能力已注入;缺失时明确报告配置依赖错误,不静默切回内置后端。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maplezzk/pi-dynamic-workflows",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Claude-Code-style dynamic workflow orchestration for Pi. Fork of michaelliv/pi-dynamic-workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.ts",
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"locales",
|
|
14
14
|
"types",
|
|
15
15
|
"README.md",
|
|
16
|
-
"README.zh-CN.md"
|
|
16
|
+
"README.zh-CN.md",
|
|
17
|
+
"SKILL.md"
|
|
17
18
|
],
|
|
18
19
|
"scripts": {
|
|
19
20
|
"test": "tsx --test tests/*.test.ts",
|
|
@@ -25,6 +26,9 @@
|
|
|
25
26
|
"extensions": [
|
|
26
27
|
"./index.ts",
|
|
27
28
|
"../pi-extensions-i18n/index.ts"
|
|
29
|
+
],
|
|
30
|
+
"skills": [
|
|
31
|
+
"./SKILL.md"
|
|
28
32
|
]
|
|
29
33
|
},
|
|
30
34
|
"engines": {
|
|
@@ -56,7 +60,7 @@
|
|
|
56
60
|
],
|
|
57
61
|
"dependencies": {
|
|
58
62
|
"acorn": "^8.16.0",
|
|
59
|
-
"pi-extensions-i18n": "^0.
|
|
63
|
+
"pi-extensions-i18n": "^0.4.0"
|
|
60
64
|
},
|
|
61
65
|
"peerDependencies": {
|
|
62
66
|
"@earendil-works/pi-ai": ">=0.80.0 <0.81.0",
|
package/src/workflow-tool.ts
CHANGED
|
@@ -92,7 +92,6 @@ export function createWorkflowTool(options: WorkflowToolOptions = {}): ToolDefin
|
|
|
92
92
|
promptSnippet:
|
|
93
93
|
"Run a deterministic JavaScript workflow. Required script header: export const meta = { name: 'short_snake_case', description: 'non-empty description', phases: [{ title: 'Phase 1' }, ...] }. Every agent() call requires opts.schema (JSON Schema). Use phase(title) at runtime to drive progress.",
|
|
94
94
|
promptGuidelines: [
|
|
95
|
-
"Use workflow only when the user explicitly asks for a workflow, workflows, fan-out, or multi-agent orchestration.",
|
|
96
95
|
"For workflow, always pass one raw JavaScript string in the required script parameter; do not include Markdown fences or prose around the script.",
|
|
97
96
|
"For workflow, the script's first statement must be `export const meta = { name: 'short_snake_case', description: 'non-empty human description', phases: [{ title: 'Phase A' }, ...] }`. meta.name and meta.description must be non-empty strings; meta.phases must be a non-empty array of `{ title: string }` objects.",
|
|
98
97
|
"For workflow, meta.whenToUse is an optional string that describes when this workflow should be invoked; include it whenever the workflow has a non-obvious trigger condition.",
|