@agent-relay/trajectory 0.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/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/integration.d.ts +292 -0
- package/dist/integration.d.ts.map +1 -0
- package/dist/integration.js +987 -0
- package/dist/integration.js.map +1 -0
- package/package.json +35 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Trajectory Integration Module
|
|
3
|
+
*
|
|
4
|
+
* Integrates with the agent-trajectories package to provide
|
|
5
|
+
* PDERO paradigm tracking within agent-relay.
|
|
6
|
+
*
|
|
7
|
+
* This module provides a bridge between agent-relay and the
|
|
8
|
+
* external `trail` CLI / agent-trajectories library.
|
|
9
|
+
*
|
|
10
|
+
* Key integration points:
|
|
11
|
+
* - Auto-starts trajectory when agent is instantiated with a task
|
|
12
|
+
* - Records all inter-agent messages
|
|
13
|
+
* - Auto-detects PDERO phase transitions from output
|
|
14
|
+
* - Provides hooks for key agent lifecycle events
|
|
15
|
+
*/
|
|
16
|
+
/**
|
|
17
|
+
* PDERO phases for agent work lifecycle
|
|
18
|
+
*/
|
|
19
|
+
export type PDEROPhase = 'plan' | 'design' | 'execute' | 'review' | 'observe';
|
|
20
|
+
/**
|
|
21
|
+
* Options for starting a trajectory
|
|
22
|
+
*/
|
|
23
|
+
export interface StartTrajectoryOptions {
|
|
24
|
+
task: string;
|
|
25
|
+
taskId?: string;
|
|
26
|
+
source?: string;
|
|
27
|
+
agentName: string;
|
|
28
|
+
phase?: PDEROPhase;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Options for completing a trajectory
|
|
32
|
+
*/
|
|
33
|
+
export interface CompleteTrajectoryOptions {
|
|
34
|
+
summary?: string;
|
|
35
|
+
confidence?: number;
|
|
36
|
+
challenges?: string[];
|
|
37
|
+
learnings?: string[];
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Options for recording a decision
|
|
41
|
+
*/
|
|
42
|
+
export interface DecisionOptions {
|
|
43
|
+
choice: string;
|
|
44
|
+
question?: string;
|
|
45
|
+
alternatives?: string[];
|
|
46
|
+
reasoning?: string;
|
|
47
|
+
confidence?: number;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if trail CLI is available
|
|
51
|
+
*/
|
|
52
|
+
export declare function isTrailAvailable(): Promise<boolean>;
|
|
53
|
+
/**
|
|
54
|
+
* Start a new trajectory
|
|
55
|
+
*/
|
|
56
|
+
export declare function startTrajectory(options: StartTrajectoryOptions): Promise<{
|
|
57
|
+
success: boolean;
|
|
58
|
+
trajectoryId?: string;
|
|
59
|
+
error?: string;
|
|
60
|
+
}>;
|
|
61
|
+
/**
|
|
62
|
+
* Get current trajectory status
|
|
63
|
+
* Reads directly from .trajectories/index.json instead of using CLI
|
|
64
|
+
*/
|
|
65
|
+
export declare function getTrajectoryStatus(): Promise<{
|
|
66
|
+
active: boolean;
|
|
67
|
+
trajectoryId?: string;
|
|
68
|
+
phase?: PDEROPhase;
|
|
69
|
+
task?: string;
|
|
70
|
+
}>;
|
|
71
|
+
/**
|
|
72
|
+
* Transition to a new PDERO phase
|
|
73
|
+
*/
|
|
74
|
+
export declare function transitionPhase(phase: PDEROPhase, reason?: string, agentName?: string): Promise<{
|
|
75
|
+
success: boolean;
|
|
76
|
+
error?: string;
|
|
77
|
+
}>;
|
|
78
|
+
/**
|
|
79
|
+
* Record a decision
|
|
80
|
+
*/
|
|
81
|
+
export declare function recordDecision(options: DecisionOptions): Promise<{
|
|
82
|
+
success: boolean;
|
|
83
|
+
error?: string;
|
|
84
|
+
}>;
|
|
85
|
+
/**
|
|
86
|
+
* Record an event/observation
|
|
87
|
+
*/
|
|
88
|
+
export declare function recordEvent(content: string, type?: 'tool_call' | 'observation' | 'checkpoint' | 'error', agentName?: string): Promise<{
|
|
89
|
+
success: boolean;
|
|
90
|
+
error?: string;
|
|
91
|
+
}>;
|
|
92
|
+
/**
|
|
93
|
+
* Record a message (sent or received)
|
|
94
|
+
*/
|
|
95
|
+
export declare function recordMessage(direction: 'sent' | 'received', from: string, to: string, body: string): Promise<{
|
|
96
|
+
success: boolean;
|
|
97
|
+
error?: string;
|
|
98
|
+
}>;
|
|
99
|
+
/**
|
|
100
|
+
* Complete the current trajectory
|
|
101
|
+
*/
|
|
102
|
+
export declare function completeTrajectory(options?: CompleteTrajectoryOptions): Promise<{
|
|
103
|
+
success: boolean;
|
|
104
|
+
error?: string;
|
|
105
|
+
}>;
|
|
106
|
+
/**
|
|
107
|
+
* Abandon the current trajectory
|
|
108
|
+
*/
|
|
109
|
+
export declare function abandonTrajectory(reason?: string): Promise<{
|
|
110
|
+
success: boolean;
|
|
111
|
+
error?: string;
|
|
112
|
+
}>;
|
|
113
|
+
/**
|
|
114
|
+
* Trajectory step for dashboard display
|
|
115
|
+
*/
|
|
116
|
+
export interface TrajectoryStepData {
|
|
117
|
+
id: string;
|
|
118
|
+
timestamp: string | number;
|
|
119
|
+
type: 'tool_call' | 'decision' | 'message' | 'state_change' | 'error' | 'phase_transition';
|
|
120
|
+
phase?: PDEROPhase;
|
|
121
|
+
title: string;
|
|
122
|
+
description?: string;
|
|
123
|
+
metadata?: Record<string, unknown>;
|
|
124
|
+
duration?: number;
|
|
125
|
+
status?: 'pending' | 'running' | 'success' | 'error';
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* List trajectory steps/events
|
|
129
|
+
* Returns steps for the current or specified trajectory
|
|
130
|
+
* Reads directly from filesystem instead of using CLI
|
|
131
|
+
*/
|
|
132
|
+
export declare function listTrajectorySteps(trajectoryId?: string): Promise<{
|
|
133
|
+
success: boolean;
|
|
134
|
+
steps: TrajectoryStepData[];
|
|
135
|
+
error?: string;
|
|
136
|
+
}>;
|
|
137
|
+
/**
|
|
138
|
+
* Trajectory history entry for dashboard display
|
|
139
|
+
*/
|
|
140
|
+
export interface TrajectoryHistoryEntry {
|
|
141
|
+
id: string;
|
|
142
|
+
title: string;
|
|
143
|
+
status: 'active' | 'completed' | 'abandoned';
|
|
144
|
+
startedAt: string;
|
|
145
|
+
completedAt?: string;
|
|
146
|
+
agents?: string[];
|
|
147
|
+
summary?: string;
|
|
148
|
+
confidence?: number;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Get trajectory history - list all trajectories
|
|
152
|
+
* Reads directly from filesystem
|
|
153
|
+
*/
|
|
154
|
+
export declare function getTrajectoryHistory(): Promise<{
|
|
155
|
+
success: boolean;
|
|
156
|
+
trajectories: TrajectoryHistoryEntry[];
|
|
157
|
+
error?: string;
|
|
158
|
+
}>;
|
|
159
|
+
/**
|
|
160
|
+
* Detect PDERO phase from content
|
|
161
|
+
*/
|
|
162
|
+
export declare function detectPhaseFromContent(content: string): PDEROPhase | undefined;
|
|
163
|
+
/**
|
|
164
|
+
* Detected tool call information
|
|
165
|
+
*/
|
|
166
|
+
export interface DetectedToolCall {
|
|
167
|
+
tool: string;
|
|
168
|
+
args?: string;
|
|
169
|
+
status?: 'started' | 'completed' | 'failed';
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* Detected error information
|
|
173
|
+
*/
|
|
174
|
+
export interface DetectedError {
|
|
175
|
+
type: 'error' | 'warning' | 'failure';
|
|
176
|
+
message: string;
|
|
177
|
+
stack?: string;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* Detect tool calls from agent output
|
|
181
|
+
*
|
|
182
|
+
* @example
|
|
183
|
+
* ```typescript
|
|
184
|
+
* const tools = detectToolCalls(output);
|
|
185
|
+
* // Returns: [{ tool: 'Read', args: 'file.ts' }, { tool: 'Bash', status: 'completed' }]
|
|
186
|
+
* ```
|
|
187
|
+
*/
|
|
188
|
+
export declare function detectToolCalls(content: string): DetectedToolCall[];
|
|
189
|
+
/**
|
|
190
|
+
* Detect errors from agent output
|
|
191
|
+
*
|
|
192
|
+
* @example
|
|
193
|
+
* ```typescript
|
|
194
|
+
* const errors = detectErrors(output);
|
|
195
|
+
* // Returns: [{ type: 'error', message: 'TypeError: Cannot read property...' }]
|
|
196
|
+
* ```
|
|
197
|
+
*/
|
|
198
|
+
export declare function detectErrors(content: string): DetectedError[];
|
|
199
|
+
/**
|
|
200
|
+
* TrajectoryIntegration class for managing trajectory state
|
|
201
|
+
*
|
|
202
|
+
* This class enforces trajectory tracking during agent lifecycle:
|
|
203
|
+
* - Auto-starts trajectory when agent is instantiated with a task
|
|
204
|
+
* - Records all inter-agent messages
|
|
205
|
+
* - Auto-detects PDERO phase transitions
|
|
206
|
+
* - Provides lifecycle hooks for tmux/pty wrappers
|
|
207
|
+
*/
|
|
208
|
+
export declare class TrajectoryIntegration {
|
|
209
|
+
private projectId;
|
|
210
|
+
private agentName;
|
|
211
|
+
private trailAvailable;
|
|
212
|
+
private currentPhase;
|
|
213
|
+
private trajectoryId;
|
|
214
|
+
private initialized;
|
|
215
|
+
private task;
|
|
216
|
+
constructor(projectId: string, agentName: string);
|
|
217
|
+
/**
|
|
218
|
+
* Check if trail is available (cached)
|
|
219
|
+
*/
|
|
220
|
+
isAvailable(): Promise<boolean>;
|
|
221
|
+
/**
|
|
222
|
+
* Check if trail CLI is installed synchronously
|
|
223
|
+
*/
|
|
224
|
+
isTrailInstalledSync(): boolean;
|
|
225
|
+
/**
|
|
226
|
+
* Initialize trajectory tracking for agent lifecycle
|
|
227
|
+
* Called automatically when agent starts with a task
|
|
228
|
+
*/
|
|
229
|
+
initialize(task?: string, taskId?: string, source?: string): Promise<boolean>;
|
|
230
|
+
/**
|
|
231
|
+
* Start tracking a trajectory
|
|
232
|
+
*/
|
|
233
|
+
start(task: string, taskId?: string, source?: string): Promise<boolean>;
|
|
234
|
+
/**
|
|
235
|
+
* Check if there's an active trajectory
|
|
236
|
+
*/
|
|
237
|
+
hasActiveTrajectory(): boolean;
|
|
238
|
+
/**
|
|
239
|
+
* Get the current task
|
|
240
|
+
*/
|
|
241
|
+
getTask(): string | null;
|
|
242
|
+
/**
|
|
243
|
+
* Get trajectory ID
|
|
244
|
+
*/
|
|
245
|
+
getTrajectoryId(): string | null;
|
|
246
|
+
/**
|
|
247
|
+
* Record a message
|
|
248
|
+
*/
|
|
249
|
+
message(direction: 'sent' | 'received', from: string, to: string, body: string): Promise<void>;
|
|
250
|
+
/**
|
|
251
|
+
* Transition to a new phase
|
|
252
|
+
*/
|
|
253
|
+
transition(phase: PDEROPhase, reason?: string): Promise<boolean>;
|
|
254
|
+
/**
|
|
255
|
+
* Record a decision
|
|
256
|
+
*/
|
|
257
|
+
decision(choice: string, options?: Partial<DecisionOptions>): Promise<boolean>;
|
|
258
|
+
/**
|
|
259
|
+
* Record an event
|
|
260
|
+
*/
|
|
261
|
+
event(content: string, type?: 'tool_call' | 'observation' | 'checkpoint' | 'error'): Promise<boolean>;
|
|
262
|
+
/**
|
|
263
|
+
* Complete the trajectory
|
|
264
|
+
*/
|
|
265
|
+
complete(options?: CompleteTrajectoryOptions): Promise<boolean>;
|
|
266
|
+
/**
|
|
267
|
+
* Abandon the trajectory
|
|
268
|
+
*/
|
|
269
|
+
abandon(reason?: string): Promise<boolean>;
|
|
270
|
+
/**
|
|
271
|
+
* Get current phase
|
|
272
|
+
*/
|
|
273
|
+
getPhase(): PDEROPhase | null;
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* Get or create a TrajectoryIntegration instance
|
|
277
|
+
*/
|
|
278
|
+
export declare function getTrajectoryIntegration(projectId: string, agentName: string): TrajectoryIntegration;
|
|
279
|
+
/**
|
|
280
|
+
* Generate trail usage instructions for agents
|
|
281
|
+
*/
|
|
282
|
+
export declare function getTrailInstructions(): string[];
|
|
283
|
+
/**
|
|
284
|
+
* Get a compact trail instruction string for injection
|
|
285
|
+
*/
|
|
286
|
+
export declare function getCompactTrailInstructions(): string;
|
|
287
|
+
/**
|
|
288
|
+
* Get environment variables for trail CLI
|
|
289
|
+
* If dataDir is not provided, uses config-based storage location
|
|
290
|
+
*/
|
|
291
|
+
export declare function getTrailEnvVars(projectId: string, agentName: string, dataDir?: string): Record<string, string>;
|
|
292
|
+
//# sourceMappingURL=integration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"integration.d.ts","sourceRoot":"","sources":["../src/integration.ts"],"names":[],"mappings":"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"}
|