@henryqw/pi-subagent 3.0.2 → 3.1.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/CONTEXT.md +8 -4
- package/README.md +54 -62
- package/dist/ephemeral.d.ts +50 -0
- package/dist/ephemeral.js +651 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +11 -3
- package/docs/adr/001-composable-ephemeral-execution.md +19 -0
- package/docs/orchestration.md +342 -0
- package/examples/roles/implementer.md +14 -0
- package/examples/roles/reviewer.md +11 -0
- package/examples/roles/scout.md +17 -0
- package/examples/roles/synthesizer.md +18 -0
- package/extensions/result-transport.ts +213 -0
- package/extensions/role-tools.ts +1 -1
- package/extensions/subagent.ts +366 -573
- package/extensions/workflow.ts +202 -0
- package/package.json +4 -2
package/extensions/role-tools.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
2
2
|
|
|
3
3
|
export const ROLE_TOOL_POLICY_FLAG = "pi-subagent-role-tools";
|
|
4
|
-
const CHILD_EXCLUDED_TOOLS = new Set(["delegate_task", "ask_question", "
|
|
4
|
+
const CHILD_EXCLUDED_TOOLS = new Set(["delegate_task", "ask_question", "auto_dag_execute", "auto_dag_acknowledge"]);
|
|
5
5
|
|
|
6
6
|
function configuredTools(value: unknown): string[] | undefined {
|
|
7
7
|
if (value === undefined) return;
|