deepseek-coder-agent-cli 1.0.45 → 1.0.47
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/agents/agi-code.rules.json +25 -0
- package/dist/contracts/agent-schemas.json +1 -1
- package/dist/core/agent.d.ts +22 -0
- package/dist/core/agent.d.ts.map +1 -1
- package/dist/core/agent.js.map +1 -1
- package/dist/core/agiCore.d.ts +22 -0
- package/dist/core/agiCore.d.ts.map +1 -1
- package/dist/core/agiCore.js +248 -8
- package/dist/core/agiCore.js.map +1 -1
- package/dist/tools/planningTools.d.ts +71 -2
- package/dist/tools/planningTools.d.ts.map +1 -1
- package/dist/tools/planningTools.js +316 -21
- package/dist/tools/planningTools.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,73 +1,368 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Planning Tools -
|
|
2
|
+
* Planning Tools - Claude Code-style planning with suggestions and user input
|
|
3
|
+
*
|
|
4
|
+
* Workflow: Explore → Plan → Execute
|
|
5
|
+
* Each plan step supports:
|
|
6
|
+
* - Pre-generated suggestions
|
|
7
|
+
* - User custom instructions
|
|
8
|
+
* - Editable step details
|
|
3
9
|
*/
|
|
4
10
|
let _planApprovalCallback = null;
|
|
11
|
+
let _currentPlan = null;
|
|
12
|
+
let _explorationComplete = false;
|
|
5
13
|
export function setPlanApprovalCallback(callback) {
|
|
6
14
|
_planApprovalCallback = callback;
|
|
7
15
|
}
|
|
8
16
|
export function getPlanApprovalCallback() {
|
|
9
17
|
return _planApprovalCallback;
|
|
10
18
|
}
|
|
19
|
+
export function setExplorationComplete(complete) {
|
|
20
|
+
_explorationComplete = complete;
|
|
21
|
+
}
|
|
22
|
+
export function isExplorationComplete() {
|
|
23
|
+
return _explorationComplete;
|
|
24
|
+
}
|
|
25
|
+
export function getCurrentPlan() {
|
|
26
|
+
return _currentPlan;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Generate suggestions for a plan step based on context
|
|
30
|
+
*/
|
|
31
|
+
function generateStepSuggestions(stepDescription, context) {
|
|
32
|
+
const suggestions = [];
|
|
33
|
+
const lower = stepDescription.toLowerCase();
|
|
34
|
+
// File/component creation suggestions
|
|
35
|
+
if (/create|add|new|implement/i.test(lower)) {
|
|
36
|
+
suggestions.push('Create with minimal implementation first, then iterate');
|
|
37
|
+
suggestions.push('Create with full implementation including tests');
|
|
38
|
+
suggestions.push('Create stub/placeholder, fill in details later');
|
|
39
|
+
}
|
|
40
|
+
// Modification suggestions
|
|
41
|
+
if (/update|modify|change|edit|refactor/i.test(lower)) {
|
|
42
|
+
suggestions.push('Make minimal changes to achieve the goal');
|
|
43
|
+
suggestions.push('Refactor comprehensively while making changes');
|
|
44
|
+
suggestions.push('Update with backward compatibility');
|
|
45
|
+
}
|
|
46
|
+
// Integration suggestions
|
|
47
|
+
if (/integrate|connect|link|api/i.test(lower)) {
|
|
48
|
+
suggestions.push('Implement with error handling and retry logic');
|
|
49
|
+
suggestions.push('Implement basic integration first, enhance later');
|
|
50
|
+
suggestions.push('Implement with full authentication flow');
|
|
51
|
+
}
|
|
52
|
+
// Testing suggestions
|
|
53
|
+
if (/test|verify|validate/i.test(lower)) {
|
|
54
|
+
suggestions.push('Add unit tests for core functionality');
|
|
55
|
+
suggestions.push('Add integration tests with mocks');
|
|
56
|
+
suggestions.push('Add end-to-end tests');
|
|
57
|
+
}
|
|
58
|
+
// UI suggestions
|
|
59
|
+
if (/ui|component|page|screen|view/i.test(lower)) {
|
|
60
|
+
suggestions.push('Create responsive layout with mobile-first approach');
|
|
61
|
+
suggestions.push('Create desktop layout, add mobile later');
|
|
62
|
+
suggestions.push('Create with accessibility (a11y) best practices');
|
|
63
|
+
}
|
|
64
|
+
// Documentation suggestions
|
|
65
|
+
if (/document|readme|explain/i.test(lower)) {
|
|
66
|
+
suggestions.push('Add inline code comments');
|
|
67
|
+
suggestions.push('Create comprehensive README');
|
|
68
|
+
suggestions.push('Add JSDoc/TSDoc annotations');
|
|
69
|
+
}
|
|
70
|
+
// Default suggestions if none matched
|
|
71
|
+
if (suggestions.length === 0) {
|
|
72
|
+
suggestions.push('Implement as described');
|
|
73
|
+
suggestions.push('Implement with additional error handling');
|
|
74
|
+
suggestions.push('Let me provide specific instructions');
|
|
75
|
+
}
|
|
76
|
+
return suggestions.slice(0, 4); // Max 4 suggestions
|
|
77
|
+
}
|
|
11
78
|
export function createPlanningTools(_workingDir) {
|
|
12
79
|
return [
|
|
13
80
|
{
|
|
14
|
-
name: '
|
|
15
|
-
description: '
|
|
81
|
+
name: 'MarkExplorationComplete',
|
|
82
|
+
description: 'Mark that codebase exploration is complete. MUST be called after exploring the codebase and BEFORE creating a plan. This ensures the plan is based on actual understanding of the code.',
|
|
16
83
|
parameters: {
|
|
17
84
|
type: 'object',
|
|
18
85
|
properties: {
|
|
19
|
-
|
|
86
|
+
summary: {
|
|
87
|
+
type: 'string',
|
|
88
|
+
description: 'Summary of what was learned during exploration (key files, architecture, patterns)',
|
|
89
|
+
},
|
|
90
|
+
keyFindings: {
|
|
20
91
|
type: 'array',
|
|
21
92
|
items: { type: 'string' },
|
|
22
|
-
description: '
|
|
93
|
+
description: 'Key findings from exploration',
|
|
23
94
|
},
|
|
24
|
-
explanation: { type: 'string', description: 'Plan explanation' },
|
|
25
95
|
},
|
|
26
|
-
required: ['
|
|
96
|
+
required: ['summary'],
|
|
27
97
|
},
|
|
28
98
|
handler: async (args) => {
|
|
29
|
-
const
|
|
30
|
-
|
|
99
|
+
const summary = args['summary'];
|
|
100
|
+
const keyFindings = args['keyFindings'];
|
|
101
|
+
_explorationComplete = true;
|
|
102
|
+
return JSON.stringify({
|
|
103
|
+
status: 'exploration_complete',
|
|
104
|
+
summary,
|
|
105
|
+
keyFindings: keyFindings || [],
|
|
106
|
+
message: 'Exploration marked complete. You may now create a plan using ProposePlan.',
|
|
107
|
+
});
|
|
31
108
|
},
|
|
32
109
|
},
|
|
33
110
|
{
|
|
34
111
|
name: 'ProposePlan',
|
|
35
|
-
description:
|
|
112
|
+
description: `Propose a structured plan for user approval. Each step includes pre-generated suggestions that users can select from or override with their own instructions.
|
|
113
|
+
|
|
114
|
+
IMPORTANT: You MUST call MarkExplorationComplete BEFORE using this tool. Plans created without exploration will be rejected.
|
|
115
|
+
|
|
116
|
+
The plan should include:
|
|
117
|
+
- Clear step descriptions
|
|
118
|
+
- Suggestions for each step (auto-generated if not provided)
|
|
119
|
+
- Scope/files affected
|
|
120
|
+
- Complexity estimates
|
|
121
|
+
- Dependencies between steps`,
|
|
36
122
|
parameters: {
|
|
37
123
|
type: 'object',
|
|
38
124
|
properties: {
|
|
125
|
+
title: {
|
|
126
|
+
type: 'string',
|
|
127
|
+
description: 'Plan title/summary',
|
|
128
|
+
},
|
|
129
|
+
explanation: {
|
|
130
|
+
type: 'string',
|
|
131
|
+
description: 'Overall explanation of what this plan accomplishes',
|
|
132
|
+
},
|
|
39
133
|
steps: {
|
|
134
|
+
type: 'array',
|
|
135
|
+
items: {
|
|
136
|
+
type: 'object',
|
|
137
|
+
properties: {
|
|
138
|
+
description: { type: 'string', description: 'Step description' },
|
|
139
|
+
suggestions: {
|
|
140
|
+
type: 'array',
|
|
141
|
+
items: { type: 'string' },
|
|
142
|
+
description: 'Pre-generated suggestions for this step (2-4 options)',
|
|
143
|
+
},
|
|
144
|
+
affectedScope: {
|
|
145
|
+
type: 'array',
|
|
146
|
+
items: { type: 'string' },
|
|
147
|
+
description: 'Files or components affected by this step',
|
|
148
|
+
},
|
|
149
|
+
complexity: {
|
|
150
|
+
type: 'string',
|
|
151
|
+
enum: ['low', 'medium', 'high'],
|
|
152
|
+
description: 'Estimated complexity',
|
|
153
|
+
},
|
|
154
|
+
requiresConfirmation: {
|
|
155
|
+
type: 'boolean',
|
|
156
|
+
description: 'Whether this step needs explicit user confirmation',
|
|
157
|
+
},
|
|
158
|
+
dependsOn: {
|
|
159
|
+
type: 'array',
|
|
160
|
+
items: { type: 'number' },
|
|
161
|
+
description: 'Indices of steps this depends on (0-indexed)',
|
|
162
|
+
},
|
|
163
|
+
},
|
|
164
|
+
required: ['description'],
|
|
165
|
+
},
|
|
166
|
+
description: 'Plan steps with suggestions',
|
|
167
|
+
},
|
|
168
|
+
risks: {
|
|
40
169
|
type: 'array',
|
|
41
170
|
items: { type: 'string' },
|
|
42
|
-
description: '
|
|
171
|
+
description: 'Potential risks or concerns',
|
|
172
|
+
},
|
|
173
|
+
alternatives: {
|
|
174
|
+
type: 'array',
|
|
175
|
+
items: { type: 'string' },
|
|
176
|
+
description: 'Alternative approaches considered',
|
|
43
177
|
},
|
|
44
|
-
explanation: { type: 'string', description: 'Plan explanation' },
|
|
45
178
|
},
|
|
46
|
-
required: ['steps'],
|
|
179
|
+
required: ['title', 'steps'],
|
|
47
180
|
},
|
|
48
181
|
handler: async (args) => {
|
|
49
|
-
|
|
182
|
+
// Enforce exploration before planning
|
|
183
|
+
if (!_explorationComplete) {
|
|
184
|
+
return JSON.stringify({
|
|
185
|
+
status: 'error',
|
|
186
|
+
error: 'EXPLORATION_REQUIRED',
|
|
187
|
+
message: 'You must call MarkExplorationComplete before creating a plan. Please explore the codebase first to understand the existing code structure, then mark exploration complete.',
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
const title = args['title'];
|
|
50
191
|
const explanation = args['explanation'] || '';
|
|
192
|
+
const rawSteps = args['steps'];
|
|
193
|
+
const risks = args['risks'];
|
|
194
|
+
const alternatives = args['alternatives'];
|
|
195
|
+
// Build plan with auto-generated suggestions where missing
|
|
196
|
+
const steps = rawSteps.map((step) => ({
|
|
197
|
+
description: step.description,
|
|
198
|
+
suggestions: step.suggestions?.length ? step.suggestions : generateStepSuggestions(step.description),
|
|
199
|
+
affectedScope: step.affectedScope,
|
|
200
|
+
complexity: step.complexity || 'medium',
|
|
201
|
+
requiresConfirmation: step.requiresConfirmation ?? false,
|
|
202
|
+
dependsOn: step.dependsOn,
|
|
203
|
+
}));
|
|
204
|
+
const plan = {
|
|
205
|
+
title,
|
|
206
|
+
explanation,
|
|
207
|
+
steps,
|
|
208
|
+
explorationComplete: true,
|
|
209
|
+
risks,
|
|
210
|
+
alternatives,
|
|
211
|
+
};
|
|
212
|
+
_currentPlan = plan;
|
|
51
213
|
if (_planApprovalCallback) {
|
|
52
214
|
return new Promise((resolve) => {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
215
|
+
_planApprovalCallback(plan, (result) => {
|
|
216
|
+
if (result.approved) {
|
|
217
|
+
// Apply user inputs to steps
|
|
218
|
+
if (result.stepInputs) {
|
|
219
|
+
result.stepInputs.forEach((input, index) => {
|
|
220
|
+
if (index < plan.steps.length && input) {
|
|
221
|
+
if (input.skip) {
|
|
222
|
+
plan.steps[index].userInstruction = '[SKIPPED]';
|
|
223
|
+
}
|
|
224
|
+
else if (input.selectedSuggestion >= 0 && plan.steps[index].suggestions) {
|
|
225
|
+
plan.steps[index].userInstruction = plan.steps[index].suggestions[input.selectedSuggestion];
|
|
226
|
+
}
|
|
227
|
+
else if (input.customInstruction) {
|
|
228
|
+
plan.steps[index].userInstruction = input.customInstruction;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
});
|
|
232
|
+
}
|
|
233
|
+
resolve(JSON.stringify({
|
|
234
|
+
status: 'approved',
|
|
235
|
+
plan: plan,
|
|
236
|
+
feedback: result.feedback,
|
|
237
|
+
}));
|
|
238
|
+
}
|
|
239
|
+
else if (result.requestRePlan) {
|
|
240
|
+
resolve(JSON.stringify({
|
|
241
|
+
status: 're_plan_requested',
|
|
242
|
+
feedback: result.feedback,
|
|
243
|
+
message: 'User requested modifications to the plan. Please revise based on feedback.',
|
|
244
|
+
}));
|
|
245
|
+
}
|
|
246
|
+
else {
|
|
247
|
+
resolve(JSON.stringify({
|
|
248
|
+
status: 'rejected',
|
|
249
|
+
feedback: result.feedback,
|
|
250
|
+
}));
|
|
251
|
+
}
|
|
56
252
|
});
|
|
57
253
|
});
|
|
58
254
|
}
|
|
59
|
-
|
|
255
|
+
// Auto-approve if no callback (headless mode)
|
|
256
|
+
return JSON.stringify({
|
|
257
|
+
status: 'approved',
|
|
258
|
+
plan: plan,
|
|
259
|
+
message: `Plan "${title}" with ${steps.length} steps approved (auto-approved in headless mode).`,
|
|
260
|
+
});
|
|
60
261
|
},
|
|
61
262
|
},
|
|
62
263
|
{
|
|
63
|
-
name: '
|
|
64
|
-
description: '
|
|
264
|
+
name: 'UpdatePlan',
|
|
265
|
+
description: 'Update the current plan with new information or modified steps',
|
|
266
|
+
parameters: {
|
|
267
|
+
type: 'object',
|
|
268
|
+
properties: {
|
|
269
|
+
stepIndex: {
|
|
270
|
+
type: 'number',
|
|
271
|
+
description: 'Index of step to update (0-indexed)',
|
|
272
|
+
},
|
|
273
|
+
newDescription: {
|
|
274
|
+
type: 'string',
|
|
275
|
+
description: 'New description for the step',
|
|
276
|
+
},
|
|
277
|
+
newSuggestions: {
|
|
278
|
+
type: 'array',
|
|
279
|
+
items: { type: 'string' },
|
|
280
|
+
description: 'New suggestions for the step',
|
|
281
|
+
},
|
|
282
|
+
markComplete: {
|
|
283
|
+
type: 'boolean',
|
|
284
|
+
description: 'Mark this step as complete',
|
|
285
|
+
},
|
|
286
|
+
},
|
|
287
|
+
required: ['stepIndex'],
|
|
288
|
+
},
|
|
289
|
+
handler: async (args) => {
|
|
290
|
+
if (!_currentPlan) {
|
|
291
|
+
return JSON.stringify({
|
|
292
|
+
status: 'error',
|
|
293
|
+
error: 'NO_ACTIVE_PLAN',
|
|
294
|
+
message: 'No active plan. Use ProposePlan first.',
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
const stepIndex = args['stepIndex'];
|
|
298
|
+
if (stepIndex < 0 || stepIndex >= _currentPlan.steps.length) {
|
|
299
|
+
return JSON.stringify({
|
|
300
|
+
status: 'error',
|
|
301
|
+
error: 'INVALID_STEP_INDEX',
|
|
302
|
+
message: `Step index ${stepIndex} is out of range (0-${_currentPlan.steps.length - 1})`,
|
|
303
|
+
});
|
|
304
|
+
}
|
|
305
|
+
const step = _currentPlan.steps[stepIndex];
|
|
306
|
+
if (args['newDescription']) {
|
|
307
|
+
step.description = args['newDescription'];
|
|
308
|
+
}
|
|
309
|
+
if (args['newSuggestions']) {
|
|
310
|
+
step.suggestions = args['newSuggestions'];
|
|
311
|
+
}
|
|
312
|
+
return JSON.stringify({
|
|
313
|
+
status: 'updated',
|
|
314
|
+
stepIndex,
|
|
315
|
+
step,
|
|
316
|
+
});
|
|
317
|
+
},
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
name: 'GetPlanStatus',
|
|
321
|
+
description: 'Get the current status of the plan and which steps are complete',
|
|
65
322
|
parameters: {
|
|
66
323
|
type: 'object',
|
|
67
324
|
properties: {},
|
|
68
325
|
},
|
|
69
326
|
handler: async () => {
|
|
70
|
-
|
|
327
|
+
if (!_currentPlan) {
|
|
328
|
+
return JSON.stringify({
|
|
329
|
+
status: 'no_plan',
|
|
330
|
+
explorationComplete: _explorationComplete,
|
|
331
|
+
message: _explorationComplete
|
|
332
|
+
? 'Exploration complete. Ready to create a plan.'
|
|
333
|
+
: 'No exploration or plan yet. Start by exploring the codebase.',
|
|
334
|
+
});
|
|
335
|
+
}
|
|
336
|
+
return JSON.stringify({
|
|
337
|
+
status: 'has_plan',
|
|
338
|
+
plan: _currentPlan,
|
|
339
|
+
explorationComplete: _explorationComplete,
|
|
340
|
+
});
|
|
341
|
+
},
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
name: 'ExitPlanMode',
|
|
345
|
+
description: 'Signal that planning is complete and ready to execute. Call this after the plan is approved.',
|
|
346
|
+
parameters: {
|
|
347
|
+
type: 'object',
|
|
348
|
+
properties: {
|
|
349
|
+
summary: {
|
|
350
|
+
type: 'string',
|
|
351
|
+
description: 'Summary of the approved plan',
|
|
352
|
+
},
|
|
353
|
+
},
|
|
354
|
+
},
|
|
355
|
+
handler: async (args) => {
|
|
356
|
+
const summary = args['summary'];
|
|
357
|
+
const plan = _currentPlan;
|
|
358
|
+
// Reset state
|
|
359
|
+
_explorationComplete = false;
|
|
360
|
+
_currentPlan = null;
|
|
361
|
+
return JSON.stringify({
|
|
362
|
+
status: 'plan_mode_exited',
|
|
363
|
+
summary: summary || (plan ? plan.title : 'No plan'),
|
|
364
|
+
message: 'Plan mode exited. Ready to execute the approved plan.',
|
|
365
|
+
});
|
|
71
366
|
},
|
|
72
367
|
},
|
|
73
368
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"planningTools.js","sourceRoot":"","sources":["../../src/tools/planningTools.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"planningTools.js","sourceRoot":"","sources":["../../src/tools/planningTools.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED