@ferris1225/pi-subagents 1.0.1 → 2.0.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/LICENSE +2 -0
- package/README.md +181 -92
- package/agents/cleaner.md +51 -0
- package/agents/explore.md +6 -4
- package/package.json +9 -7
- package/src/announcements.ts +8 -0
- package/src/config.ts +10 -27
- package/src/dispatch.ts +98 -77
- package/src/format.ts +26 -23
- package/src/index.ts +1 -1
- package/src/models.ts +91 -98
- package/src/monitor.ts +11 -3
- package/src/prompt.ts +13 -8
- package/src/rpc-run.ts +89 -6
- package/src/runtime.ts +0 -2
- package/src/setup.ts +437 -639
- package/src/spawn.ts +152 -107
- package/src/tools.ts +22 -6
- package/src/widget.ts +51 -14
package/src/runtime.ts
CHANGED
|
@@ -53,8 +53,6 @@ export interface SubagentThread {
|
|
|
53
53
|
/** Actual child cwd (the equivalent path inside an isolated worktree). */
|
|
54
54
|
executionCwd: string;
|
|
55
55
|
vision: boolean;
|
|
56
|
-
/** Exact primary→fallback refs inherited by a session fork. */
|
|
57
|
-
modelPool: string[];
|
|
58
56
|
thinkingLevel?: ThinkingLevel;
|
|
59
57
|
isolation: IsolationMode;
|
|
60
58
|
worktree?: WorktreeIsolation;
|