-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathsettings.ts
More file actions
356 lines (309 loc) · 10.7 KB
/
settings.ts
File metadata and controls
356 lines (309 loc) · 10.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/**
* Chain behavior, template resolution, and directory management
*/
import * as fs from "node:fs";
import * as os from "node:os";
import * as path from "node:path";
import type { AgentConfig } from "./agents.js";
import { normalizeSkillInput } from "./skills.js";
const CHAIN_RUNS_DIR = path.join(os.tmpdir(), "pi-chain-runs");
const CHAIN_DIR_MAX_AGE_MS = 24 * 60 * 60 * 1000; // 24 hours
// =============================================================================
// Behavior Resolution Types
// =============================================================================
export interface ResolvedStepBehavior {
output: string | false;
reads: string[] | false;
progress: boolean;
skills: string[] | false;
model?: string;
}
export interface StepOverrides {
output?: string | false;
reads?: string[] | false;
progress?: boolean;
skills?: string[] | false;
model?: string;
}
// =============================================================================
// Chain Step Types
// =============================================================================
/** Sequential step: single agent execution */
export interface SequentialStep {
agent: string;
task?: string;
cwd?: string;
output?: string | false;
reads?: string[] | false;
progress?: boolean;
skill?: string | string[] | false;
model?: string;
}
/** Parallel task item within a parallel step */
export interface ParallelTaskItem {
agent: string;
task?: string;
cwd?: string;
output?: string | false;
reads?: string[] | false;
progress?: boolean;
skill?: string | string[] | false;
model?: string;
}
/** Parallel step: multiple agents running concurrently */
export interface ParallelStep {
parallel: ParallelTaskItem[];
concurrency?: number;
failFast?: boolean;
}
/** Union type for chain steps */
export type ChainStep = SequentialStep | ParallelStep;
// =============================================================================
// Type Guards
// =============================================================================
export function isParallelStep(step: ChainStep): step is ParallelStep {
return "parallel" in step && Array.isArray((step as ParallelStep).parallel);
}
/** Get all agent names in a step (single for sequential, multiple for parallel) */
export function getStepAgents(step: ChainStep): string[] {
if (isParallelStep(step)) {
return step.parallel.map((t) => t.agent);
}
return [step.agent];
}
// =============================================================================
// Chain Directory Management
// =============================================================================
export function createChainDir(runId: string, baseDir?: string): string {
const chainDir = path.join(baseDir ? path.resolve(baseDir) : CHAIN_RUNS_DIR, runId);
fs.mkdirSync(chainDir, { recursive: true });
return chainDir;
}
export function removeChainDir(chainDir: string): void {
try {
fs.rmSync(chainDir, { recursive: true });
} catch {}
}
export function cleanupOldChainDirs(): void {
if (!fs.existsSync(CHAIN_RUNS_DIR)) return;
const now = Date.now();
let dirs: string[];
try {
dirs = fs.readdirSync(CHAIN_RUNS_DIR);
} catch {
return;
}
for (const dir of dirs) {
try {
const dirPath = path.join(CHAIN_RUNS_DIR, dir);
const stat = fs.statSync(dirPath);
if (stat.isDirectory() && now - stat.mtimeMs > CHAIN_DIR_MAX_AGE_MS) {
fs.rmSync(dirPath, { recursive: true });
}
} catch {
// Skip directories that can't be processed; continue with others
}
}
}
// =============================================================================
// Template Resolution
// =============================================================================
/** Resolved templates for a chain - string for sequential, string[] for parallel */
export type ResolvedTemplates = (string | string[])[];
/**
* Resolve templates for a chain with parallel step support.
* Returns string for sequential steps, string[] for parallel steps.
*/
export function resolveChainTemplates(
steps: ChainStep[],
): ResolvedTemplates {
return steps.map((step, i) => {
if (isParallelStep(step)) {
// Parallel step: resolve each task's template
return step.parallel.map((task) => {
if (task.task) return task.task;
// Default for parallel tasks is {previous}
return "{previous}";
});
}
// Sequential step: existing logic
const seq = step as SequentialStep;
if (seq.task) return seq.task;
// Default: first step uses {task}, others use {previous}
return i === 0 ? "{task}" : "{previous}";
});
}
// =============================================================================
// Behavior Resolution
// =============================================================================
/**
* Resolve effective chain behavior per step.
* Priority: step override > agent frontmatter > false (disabled)
*/
export function resolveStepBehavior(
agentConfig: AgentConfig,
stepOverrides: StepOverrides,
chainSkills?: string[],
): ResolvedStepBehavior {
// Output: step override > frontmatter > false (no output)
const output =
stepOverrides.output !== undefined
? stepOverrides.output
: agentConfig.output ?? false;
// Reads: step override > frontmatter defaultReads > false (no reads)
const reads =
stepOverrides.reads !== undefined
? stepOverrides.reads
: agentConfig.defaultReads ?? false;
// Progress: step override > frontmatter defaultProgress > false
const progress =
stepOverrides.progress !== undefined
? stepOverrides.progress
: agentConfig.defaultProgress ?? false;
let skills: string[] | false;
if (stepOverrides.skills === false) {
skills = false;
} else if (stepOverrides.skills !== undefined) {
skills = [...stepOverrides.skills];
if (chainSkills && chainSkills.length > 0) {
skills = [...new Set([...skills, ...chainSkills])];
}
} else {
skills = agentConfig.skills ? [...agentConfig.skills] : [];
if (chainSkills && chainSkills.length > 0) {
skills = [...new Set([...skills, ...chainSkills])];
}
}
const model = stepOverrides.model ?? agentConfig.model;
return { output, reads, progress, skills, model };
}
// =============================================================================
// Chain Instruction Injection
// =============================================================================
/**
* Resolve a file path: absolute paths pass through, relative paths get chainDir prepended.
*/
function resolveChainPath(filePath: string, chainDir: string): string {
return path.isAbsolute(filePath) ? filePath : path.join(chainDir, filePath);
}
/**
* Build chain instructions from resolved behavior.
* These are appended to the task to tell the agent what to read/write.
*/
export function buildChainInstructions(
behavior: ResolvedStepBehavior,
chainDir: string,
isFirstProgressAgent: boolean,
previousSummary?: string,
): { prefix: string; suffix: string } {
const prefixParts: string[] = [];
const suffixParts: string[] = [];
// READS - prepend to override any hardcoded filenames in task text
if (behavior.reads && behavior.reads.length > 0) {
const files = behavior.reads.map((f) => resolveChainPath(f, chainDir));
prefixParts.push(`[Read from: ${files.join(", ")}]`);
}
// OUTPUT - prepend so agent knows where to write
if (behavior.output) {
const outputPath = resolveChainPath(behavior.output, chainDir);
prefixParts.push(`[Write to: ${outputPath}]`);
}
// Progress instructions in suffix (less critical)
if (behavior.progress) {
const progressPath = path.join(chainDir, "progress.md");
if (isFirstProgressAgent) {
suffixParts.push(`Create and maintain progress at: ${progressPath}`);
} else {
suffixParts.push(`Update progress at: ${progressPath}`);
}
}
// Include previous step's summary in suffix if available
if (previousSummary && previousSummary.trim()) {
suffixParts.push(`Previous step output:\n${previousSummary.trim()}`);
}
const prefix = prefixParts.length > 0
? prefixParts.join("\n") + "\n\n"
: "";
const suffix = suffixParts.length > 0
? "\n\n---\n" + suffixParts.join("\n")
: "";
return { prefix, suffix };
}
// =============================================================================
// Parallel Step Support
// =============================================================================
/**
* Resolve behaviors for all tasks in a parallel step.
* Creates namespaced output paths to avoid collisions.
*/
export function resolveParallelBehaviors(
tasks: ParallelTaskItem[],
agentConfigs: AgentConfig[],
stepIndex: number,
chainSkills?: string[],
): ResolvedStepBehavior[] {
return tasks.map((task, taskIndex) => {
const config = agentConfigs.find((a) => a.name === task.agent);
if (!config) {
throw new Error(`Unknown agent: ${task.agent}`);
}
// Build subdirectory path for this parallel task
const subdir = path.join(`parallel-${stepIndex}`, `${taskIndex}-${task.agent}`);
// Output: task override > agent default (namespaced) > false
// Absolute paths pass through unchanged; relative paths get namespaced under subdir
let output: string | false = false;
if (task.output !== undefined) {
if (task.output === false) {
output = false;
} else if (path.isAbsolute(task.output)) {
output = task.output; // Absolute path: use as-is
} else {
output = path.join(subdir, task.output); // Relative: namespace under subdir
}
} else if (config.output) {
// Agent defaults are always relative, so namespace them
output = path.join(subdir, config.output);
}
// Reads: task override > agent default > false
const reads =
task.reads !== undefined ? task.reads : config.defaultReads ?? false;
// Progress: task override > agent default > false
const progress =
task.progress !== undefined
? task.progress
: config.defaultProgress ?? false;
const taskSkillInput = normalizeSkillInput(task.skill);
let skills: string[] | false;
if (taskSkillInput === false) {
skills = false;
} else if (taskSkillInput !== undefined) {
skills = [...taskSkillInput];
if (chainSkills && chainSkills.length > 0) {
skills = [...new Set([...skills, ...chainSkills])];
}
} else {
skills = config.skills ? [...config.skills] : [];
if (chainSkills && chainSkills.length > 0) {
skills = [...new Set([...skills, ...chainSkills])];
}
}
const model = task.model ?? config.model;
return { output, reads, progress, skills, model };
});
}
/**
* Create subdirectories for parallel step outputs
*/
export function createParallelDirs(
chainDir: string,
stepIndex: number,
taskCount: number,
agentNames: string[],
): void {
for (let i = 0; i < taskCount; i++) {
const subdir = path.join(chainDir, `parallel-${stepIndex}`, `${i}-${agentNames[i]}`);
fs.mkdirSync(subdir, { recursive: true });
}
}
export type { ParallelTaskResult } from "./parallel-utils.js";
export { aggregateParallelOutputs } from "./parallel-utils.js";