@esso0428/pi-subagents 0.15.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/CHANGELOG.md +638 -0
- package/CONTRIBUTING.md +68 -0
- package/LICENSE +21 -0
- package/README.md +745 -0
- package/SECURITY.md +95 -0
- package/dist/agent-manager.d.ts +144 -0
- package/dist/agent-manager.js +542 -0
- package/dist/agent-runner.d.ts +212 -0
- package/dist/agent-runner.js +850 -0
- package/dist/agent-types.d.ts +67 -0
- package/dist/agent-types.js +168 -0
- package/dist/context.d.ts +12 -0
- package/dist/context.js +56 -0
- package/dist/cross-extension-rpc.d.ts +46 -0
- package/dist/cross-extension-rpc.js +76 -0
- package/dist/custom-agents.d.ts +17 -0
- package/dist/custom-agents.js +156 -0
- package/dist/default-agents.d.ts +7 -0
- package/dist/default-agents.js +122 -0
- package/dist/enabled-models.d.ts +49 -0
- package/dist/enabled-models.js +145 -0
- package/dist/env.d.ts +6 -0
- package/dist/env.js +28 -0
- package/dist/group-join.d.ts +32 -0
- package/dist/group-join.js +116 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +2209 -0
- package/dist/invocation-config.d.ts +22 -0
- package/dist/invocation-config.js +15 -0
- package/dist/memory.d.ts +53 -0
- package/dist/memory.js +165 -0
- package/dist/model-resolver.d.ts +19 -0
- package/dist/model-resolver.js +80 -0
- package/dist/nico-overrides.d.ts +53 -0
- package/dist/nico-overrides.js +169 -0
- package/dist/output-file.d.ts +24 -0
- package/dist/output-file.js +101 -0
- package/dist/prompts.d.ts +32 -0
- package/dist/prompts.js +73 -0
- package/dist/schedule-store.d.ts +38 -0
- package/dist/schedule-store.js +155 -0
- package/dist/schedule.d.ts +109 -0
- package/dist/schedule.js +338 -0
- package/dist/settings.d.ts +141 -0
- package/dist/settings.js +162 -0
- package/dist/skill-loader.d.ts +24 -0
- package/dist/skill-loader.js +93 -0
- package/dist/status-note.d.ts +13 -0
- package/dist/status-note.js +24 -0
- package/dist/types.d.ts +197 -0
- package/dist/types.js +5 -0
- package/dist/ui/agent-widget.d.ts +160 -0
- package/dist/ui/agent-widget.js +484 -0
- package/dist/ui/conversation-viewer.d.ts +57 -0
- package/dist/ui/conversation-viewer.js +354 -0
- package/dist/ui/fleet-list.d.ts +106 -0
- package/dist/ui/fleet-list.js +345 -0
- package/dist/ui/schedule-menu.d.ts +16 -0
- package/dist/ui/schedule-menu.js +95 -0
- package/dist/ui/viewer-keys.d.ts +20 -0
- package/dist/ui/viewer-keys.js +17 -0
- package/dist/usage.d.ts +50 -0
- package/dist/usage.js +49 -0
- package/dist/worktree.d.ts +45 -0
- package/dist/worktree.js +160 -0
- package/examples/agent-tool-description.md +42 -0
- package/package.json +56 -0
- package/src/agent-manager.ts +631 -0
- package/src/agent-runner.ts +1014 -0
- package/src/agent-types.ts +202 -0
- package/src/context.ts +58 -0
- package/src/cross-extension-rpc.ts +122 -0
- package/src/custom-agents.ts +167 -0
- package/src/default-agents.ts +126 -0
- package/src/enabled-models.ts +180 -0
- package/src/env.ts +33 -0
- package/src/group-join.ts +141 -0
- package/src/index.ts +2400 -0
- package/src/invocation-config.ts +40 -0
- package/src/memory.ts +179 -0
- package/src/model-resolver.ts +100 -0
- package/src/nico-overrides.ts +235 -0
- package/src/output-file.ts +110 -0
- package/src/prompts.ts +99 -0
- package/src/schedule-store.ts +153 -0
- package/src/schedule.ts +365 -0
- package/src/settings.ts +288 -0
- package/src/skill-loader.ts +102 -0
- package/src/status-note.ts +25 -0
- package/src/types.ts +208 -0
- package/src/ui/agent-widget.ts +566 -0
- package/src/ui/conversation-viewer.ts +362 -0
- package/src/ui/fleet-list.ts +380 -0
- package/src/ui/schedule-menu.ts +104 -0
- package/src/ui/viewer-keys.ts +39 -0
- package/src/usage.ts +60 -0
- package/src/worktree.ts +191 -0
- package/vitest.config.ts +18 -0
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Reads `enabledModels` from pi's settings (global `<agentDir>/settings.json`
|
|
3
|
+
* + project-local `<cwd>/.pi/settings.json`, project wins) and resolves
|
|
4
|
+
* entries to concrete `provider/modelId` keys for scope validation.
|
|
5
|
+
*
|
|
6
|
+
* **Project overrides global**, mirroring pi's own `SettingsManager`
|
|
7
|
+
* deep-merge behavior and matching the precedence we use for our own
|
|
8
|
+
* `subagents.json` settings (see `src/settings.ts:loadSettings`). If
|
|
9
|
+
* project file has `enabledModels` set, it wholly replaces global's
|
|
10
|
+
* (array fields are replaced, not concatenated).
|
|
11
|
+
*
|
|
12
|
+
* **Limited subset of upstream's resolveModelScope.** We support exact
|
|
13
|
+
* `provider/modelId` matching only. Upstream (pi-coding-agent's
|
|
14
|
+
* `core/model-resolver.ts`) additionally supports glob patterns
|
|
15
|
+
* (`*sonnet*`, `anthropic/*`), bare model IDs without provider, and
|
|
16
|
+
* thinking-level suffixes (`provider/*:high`). Those forms are silently
|
|
17
|
+
* ignored here.
|
|
18
|
+
*
|
|
19
|
+
* In practice, pi's `/scoped-models` picker writes exact `provider/modelId`
|
|
20
|
+
* entries, so the limitation is invisible for users who configure scope
|
|
21
|
+
* through pi's UI. Hand-edited settings using globs or bare IDs will
|
|
22
|
+
* produce an empty allowed set (scope check becomes a no-op).
|
|
23
|
+
*
|
|
24
|
+
* Example:
|
|
25
|
+
* enabledModels = ["anthropic/claude-sonnet-4-6", "anthropic/claude-opus-4-6"]
|
|
26
|
+
* → resolves to { "anthropic/claude-sonnet-4-6", "anthropic/claude-opus-4-6" }
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
import { existsSync, readFileSync, statSync } from "node:fs";
|
|
30
|
+
import { join } from "node:path";
|
|
31
|
+
import { getAgentDir } from "@earendil-works/pi-coding-agent";
|
|
32
|
+
import type { ModelEntry } from "./model-resolver.js";
|
|
33
|
+
|
|
34
|
+
/** Minimal registry shape — only the methods resolveEnabledModels actually calls. */
|
|
35
|
+
export interface ModelRegistryRef {
|
|
36
|
+
getAll(): unknown[];
|
|
37
|
+
getAvailable?(): unknown[];
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/** Paths to pi's settings.json files: [project, global] (project takes precedence). */
|
|
41
|
+
function settingsPaths(cwd: string): [project: string, global: string] {
|
|
42
|
+
return [
|
|
43
|
+
join(cwd, ".pi", "settings.json"),
|
|
44
|
+
join(getAgentDir(), "settings.json"),
|
|
45
|
+
];
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/** Read `enabledModels` from a single settings.json file. Undefined when missing or absent. */
|
|
49
|
+
function readField(path: string): string[] | undefined {
|
|
50
|
+
if (!existsSync(path)) return undefined;
|
|
51
|
+
try {
|
|
52
|
+
const raw = JSON.parse(readFileSync(path, "utf-8"));
|
|
53
|
+
if (Array.isArray(raw?.enabledModels)) return raw.enabledModels as string[];
|
|
54
|
+
} catch {
|
|
55
|
+
/* corrupt file — silent */
|
|
56
|
+
}
|
|
57
|
+
return undefined;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Read enabledModels from pi's settings — project-local overrides global.
|
|
62
|
+
* Mirrors pi's SettingsManager deep-merge for the `enabledModels` field
|
|
63
|
+
* (and matches our own loadSettings precedence in src/settings.ts).
|
|
64
|
+
* Returns undefined when neither file has the field.
|
|
65
|
+
*/
|
|
66
|
+
export function readEnabledModels(cwd: string): string[] | undefined {
|
|
67
|
+
const [project, global] = settingsPaths(cwd);
|
|
68
|
+
return readField(project) ?? readField(global);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Resolve enabledModels patterns → Set<"provider/modelId"> (lowercase keys).
|
|
73
|
+
*
|
|
74
|
+
* Only exact `provider/modelId` patterns are matched (case-insensitive).
|
|
75
|
+
* Patterns without a slash, with glob characters, or with a `:thinking`
|
|
76
|
+
* suffix are silently dropped. See module-level docstring for rationale.
|
|
77
|
+
*
|
|
78
|
+
* Cache: keyed on JSON.stringify(patterns) + mtime/size of *both*
|
|
79
|
+
* project and global settings.json files. Re-resolves when either file
|
|
80
|
+
* changes or the patterns argument differs.
|
|
81
|
+
*
|
|
82
|
+
* Returns undefined when no patterns are provided or no patterns match
|
|
83
|
+
* (scope check becomes a no-op at the call site).
|
|
84
|
+
*/
|
|
85
|
+
|
|
86
|
+
// Module-level cache — invalidated when either settings.json changes or patterns differ.
|
|
87
|
+
let cachedAllowed: Set<string> | undefined;
|
|
88
|
+
let cachedHash = "";
|
|
89
|
+
let cachedPatternsKey = "";
|
|
90
|
+
|
|
91
|
+
/** mtime+size hash of one file, or "missing" if absent. */
|
|
92
|
+
function hashOf(path: string): string {
|
|
93
|
+
try {
|
|
94
|
+
const s = statSync(path);
|
|
95
|
+
return `${s.mtimeMs}-${s.size}`;
|
|
96
|
+
} catch {
|
|
97
|
+
return "missing";
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export function resolveEnabledModels(
|
|
102
|
+
patterns: string[] | undefined,
|
|
103
|
+
registry: ModelRegistryRef,
|
|
104
|
+
cwd: string = process.cwd(),
|
|
105
|
+
): Set<string> | undefined {
|
|
106
|
+
// Fast path: check cache (stat both project and global settings.json files)
|
|
107
|
+
const patternsKey = JSON.stringify(patterns);
|
|
108
|
+
const [project, global] = settingsPaths(cwd);
|
|
109
|
+
const fileHash = `${hashOf(project)};${hashOf(global)}`;
|
|
110
|
+
|
|
111
|
+
if (fileHash === cachedHash && patternsKey === cachedPatternsKey) {
|
|
112
|
+
return cachedAllowed;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// Cache miss — resolve
|
|
116
|
+
if (!patterns || patterns.length === 0) {
|
|
117
|
+
cachedHash = fileHash;
|
|
118
|
+
cachedPatternsKey = patternsKey;
|
|
119
|
+
cachedAllowed = undefined;
|
|
120
|
+
return undefined;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
const available = (registry.getAvailable?.() ?? registry.getAll()) as ModelEntry[];
|
|
124
|
+
const allowed = new Set<string>();
|
|
125
|
+
|
|
126
|
+
for (const pattern of patterns) {
|
|
127
|
+
const trimmed = pattern.trim();
|
|
128
|
+
if (!trimmed) continue; // skip empty/whitespace
|
|
129
|
+
resolveExact(trimmed, available, allowed);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
const result = allowed.size > 0 ? allowed : undefined;
|
|
133
|
+
cachedHash = fileHash;
|
|
134
|
+
cachedPatternsKey = patternsKey;
|
|
135
|
+
cachedAllowed = result;
|
|
136
|
+
return result;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* True when `model` is in the allowed set. Centralizes the key format
|
|
143
|
+
* (`provider/id` lowercase) so callers don't have to reproduce it —
|
|
144
|
+
* both set-building (resolveExact) and lookup go through `modelKey`.
|
|
145
|
+
*/
|
|
146
|
+
export function isModelInScope(
|
|
147
|
+
model: { provider: string; id: string },
|
|
148
|
+
allowed: Set<string>,
|
|
149
|
+
): boolean {
|
|
150
|
+
return allowed.has(modelKey(model));
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/** Canonical lowercase `provider/id` key for the allowed set. */
|
|
154
|
+
function modelKey(model: { provider: string; id: string }): string {
|
|
155
|
+
return `${model.provider}/${model.id}`.toLowerCase();
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* Resolve exact model pattern. Example: "google/gemma-4-31b-it".
|
|
160
|
+
*/
|
|
161
|
+
function resolveExact(
|
|
162
|
+
pattern: string,
|
|
163
|
+
available: ModelEntry[],
|
|
164
|
+
allowed: Set<string>,
|
|
165
|
+
): void {
|
|
166
|
+
// "provider/modelId" — exact (colon is part of id, not split)
|
|
167
|
+
const slashIdx = pattern.indexOf("/");
|
|
168
|
+
if (slashIdx === -1) return; // bare modelId not supported
|
|
169
|
+
|
|
170
|
+
const provider = pattern.slice(0, slashIdx).toLowerCase();
|
|
171
|
+
const modelId = pattern.slice(slashIdx + 1).toLowerCase();
|
|
172
|
+
const exact = available.find(
|
|
173
|
+
m => m.provider.toLowerCase() === provider && m.id.toLowerCase() === modelId,
|
|
174
|
+
);
|
|
175
|
+
if (exact) {
|
|
176
|
+
allowed.add(modelKey(exact));
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
|
package/src/env.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* env.ts — Detect environment info (git, platform) for subagent system prompts.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
6
|
+
import type { EnvInfo } from "./types.js";
|
|
7
|
+
|
|
8
|
+
export async function detectEnv(pi: ExtensionAPI, cwd: string): Promise<EnvInfo> {
|
|
9
|
+
let isGitRepo = false;
|
|
10
|
+
let branch = "";
|
|
11
|
+
|
|
12
|
+
try {
|
|
13
|
+
const result = await pi.exec("git", ["rev-parse", "--is-inside-work-tree"], { cwd, timeout: 5000 });
|
|
14
|
+
isGitRepo = result.code === 0 && result.stdout.trim() === "true";
|
|
15
|
+
} catch {
|
|
16
|
+
// Not a git repo or git not installed
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
if (isGitRepo) {
|
|
20
|
+
try {
|
|
21
|
+
const result = await pi.exec("git", ["branch", "--show-current"], { cwd, timeout: 5000 });
|
|
22
|
+
branch = result.code === 0 ? result.stdout.trim() : "unknown";
|
|
23
|
+
} catch {
|
|
24
|
+
branch = "unknown";
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return {
|
|
29
|
+
isGitRepo,
|
|
30
|
+
branch,
|
|
31
|
+
platform: process.platform,
|
|
32
|
+
};
|
|
33
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* group-join.ts — Manages grouped background agent completion notifications.
|
|
3
|
+
*
|
|
4
|
+
* Instead of each agent individually nudging the main agent on completion,
|
|
5
|
+
* agents in a group are held until all complete (or a timeout fires),
|
|
6
|
+
* then a single consolidated notification is sent.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import type { AgentRecord } from "./types.js";
|
|
10
|
+
|
|
11
|
+
export type DeliveryCallback = (records: AgentRecord[], partial: boolean) => void;
|
|
12
|
+
|
|
13
|
+
interface AgentGroup {
|
|
14
|
+
groupId: string;
|
|
15
|
+
agentIds: Set<string>;
|
|
16
|
+
completedRecords: Map<string, AgentRecord>;
|
|
17
|
+
timeoutHandle?: ReturnType<typeof setTimeout>;
|
|
18
|
+
delivered: boolean;
|
|
19
|
+
/** Shorter timeout for stragglers after a partial delivery. */
|
|
20
|
+
isStraggler: boolean;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/** Default timeout: 30s after first completion in a group. */
|
|
24
|
+
const DEFAULT_TIMEOUT = 30_000;
|
|
25
|
+
/** Straggler re-batch timeout: 15s. */
|
|
26
|
+
const STRAGGLER_TIMEOUT = 15_000;
|
|
27
|
+
|
|
28
|
+
export class GroupJoinManager {
|
|
29
|
+
private groups = new Map<string, AgentGroup>();
|
|
30
|
+
private agentToGroup = new Map<string, string>();
|
|
31
|
+
|
|
32
|
+
constructor(
|
|
33
|
+
private deliverCb: DeliveryCallback,
|
|
34
|
+
private groupTimeout = DEFAULT_TIMEOUT,
|
|
35
|
+
) {}
|
|
36
|
+
|
|
37
|
+
/** Register a group of agent IDs that should be joined. */
|
|
38
|
+
registerGroup(groupId: string, agentIds: string[]): void {
|
|
39
|
+
const group: AgentGroup = {
|
|
40
|
+
groupId,
|
|
41
|
+
agentIds: new Set(agentIds),
|
|
42
|
+
completedRecords: new Map(),
|
|
43
|
+
delivered: false,
|
|
44
|
+
isStraggler: false,
|
|
45
|
+
};
|
|
46
|
+
this.groups.set(groupId, group);
|
|
47
|
+
for (const id of agentIds) {
|
|
48
|
+
this.agentToGroup.set(id, groupId);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Called when an agent completes.
|
|
54
|
+
* Returns:
|
|
55
|
+
* - 'pass' — agent is not grouped, caller should send individual nudge
|
|
56
|
+
* - 'held' — result held, waiting for group completion
|
|
57
|
+
* - 'delivered' — this completion triggered the group notification
|
|
58
|
+
*/
|
|
59
|
+
onAgentComplete(record: AgentRecord): 'delivered' | 'held' | 'pass' {
|
|
60
|
+
const groupId = this.agentToGroup.get(record.id);
|
|
61
|
+
if (!groupId) return 'pass';
|
|
62
|
+
|
|
63
|
+
const group = this.groups.get(groupId);
|
|
64
|
+
if (!group || group.delivered) return 'pass';
|
|
65
|
+
|
|
66
|
+
group.completedRecords.set(record.id, record);
|
|
67
|
+
|
|
68
|
+
// All done — deliver immediately
|
|
69
|
+
if (group.completedRecords.size >= group.agentIds.size) {
|
|
70
|
+
this.deliver(group, false);
|
|
71
|
+
return 'delivered';
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// First completion in this batch — start timeout
|
|
75
|
+
if (!group.timeoutHandle) {
|
|
76
|
+
const timeout = group.isStraggler ? STRAGGLER_TIMEOUT : this.groupTimeout;
|
|
77
|
+
group.timeoutHandle = setTimeout(() => {
|
|
78
|
+
this.onTimeout(group);
|
|
79
|
+
}, timeout);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
return 'held';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
private onTimeout(group: AgentGroup): void {
|
|
86
|
+
if (group.delivered) return;
|
|
87
|
+
group.timeoutHandle = undefined;
|
|
88
|
+
|
|
89
|
+
// Partial delivery — some agents still running
|
|
90
|
+
const remaining = new Set<string>();
|
|
91
|
+
for (const id of group.agentIds) {
|
|
92
|
+
if (!group.completedRecords.has(id)) remaining.add(id);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// Clean up agentToGroup for delivered agents (they won't complete again)
|
|
96
|
+
for (const id of group.completedRecords.keys()) {
|
|
97
|
+
this.agentToGroup.delete(id);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// Deliver what we have
|
|
101
|
+
this.deliverCb([...group.completedRecords.values()], true);
|
|
102
|
+
|
|
103
|
+
// Set up straggler group for remaining agents
|
|
104
|
+
group.completedRecords.clear();
|
|
105
|
+
group.agentIds = remaining;
|
|
106
|
+
group.isStraggler = true;
|
|
107
|
+
// Timeout will be started when the next straggler completes
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
private deliver(group: AgentGroup, partial: boolean): void {
|
|
111
|
+
if (group.timeoutHandle) {
|
|
112
|
+
clearTimeout(group.timeoutHandle);
|
|
113
|
+
group.timeoutHandle = undefined;
|
|
114
|
+
}
|
|
115
|
+
group.delivered = true;
|
|
116
|
+
this.deliverCb([...group.completedRecords.values()], partial);
|
|
117
|
+
this.cleanupGroup(group.groupId);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
private cleanupGroup(groupId: string): void {
|
|
121
|
+
const group = this.groups.get(groupId);
|
|
122
|
+
if (!group) return;
|
|
123
|
+
for (const id of group.agentIds) {
|
|
124
|
+
this.agentToGroup.delete(id);
|
|
125
|
+
}
|
|
126
|
+
this.groups.delete(groupId);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/** Check if an agent is in a group. */
|
|
130
|
+
isGrouped(agentId: string): boolean {
|
|
131
|
+
return this.agentToGroup.has(agentId);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
dispose(): void {
|
|
135
|
+
for (const group of this.groups.values()) {
|
|
136
|
+
if (group.timeoutHandle) clearTimeout(group.timeoutHandle);
|
|
137
|
+
}
|
|
138
|
+
this.groups.clear();
|
|
139
|
+
this.agentToGroup.clear();
|
|
140
|
+
}
|
|
141
|
+
}
|