claude-dev-env 1.66.0 → 1.66.1
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/package.json
CHANGED
|
@@ -195,7 +195,7 @@ function repairPrompt(packetPath, deterministicValidation, semanticValidation) {
|
|
|
195
195
|
|
|
196
196
|
async function discoverContext(runInput, packetPath) {
|
|
197
197
|
return agent(discoveryPrompt(runInput, packetPath), {
|
|
198
|
-
label:
|
|
198
|
+
label: `plan-packet-discover`,
|
|
199
199
|
phase: 'Discover',
|
|
200
200
|
agentType: 'general-purpose',
|
|
201
201
|
})
|
|
@@ -203,16 +203,16 @@ async function discoverContext(runInput, packetPath) {
|
|
|
203
203
|
|
|
204
204
|
async function writePacket(runInput, packetPath, discoverySummary) {
|
|
205
205
|
return agent(writePacketPrompt(runInput, packetPath, discoverySummary), {
|
|
206
|
-
label:
|
|
206
|
+
label: `plan-packet-write`,
|
|
207
207
|
phase: 'Write packet',
|
|
208
208
|
schema: packetWriteSchema(),
|
|
209
|
-
agentType: '
|
|
209
|
+
agentType: 'general-purpose',
|
|
210
210
|
})
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
async function runDeterministicValidation(packetPath) {
|
|
214
214
|
return agent(deterministicValidationPrompt(packetPath), {
|
|
215
|
-
label:
|
|
215
|
+
label: `plan-packet-deterministic-validation`,
|
|
216
216
|
phase: 'Validate',
|
|
217
217
|
schema: deterministicSchema(),
|
|
218
218
|
agentType: 'general-purpose',
|
|
@@ -224,7 +224,7 @@ async function runSemanticValidator(packetPath) {
|
|
|
224
224
|
`${semanticValidationPrompt(packetPath)}\n\n` +
|
|
225
225
|
`Confirm the packet is source-backed and complete enough for a blind build agent.`
|
|
226
226
|
return agent(prompt, {
|
|
227
|
-
label:
|
|
227
|
+
label: `plan-packet-semantic-validator`,
|
|
228
228
|
phase: 'Validate',
|
|
229
229
|
schema: validationSchema(),
|
|
230
230
|
agentType: 'plan-packet-validator',
|
|
@@ -233,10 +233,10 @@ async function runSemanticValidator(packetPath) {
|
|
|
233
233
|
|
|
234
234
|
async function repairPacket(packetPath, deterministicValidation, semanticValidation) {
|
|
235
235
|
return agent(repairPrompt(packetPath, deterministicValidation, semanticValidation), {
|
|
236
|
-
label:
|
|
236
|
+
label: `plan-packet-repair`,
|
|
237
237
|
phase: 'Validate',
|
|
238
238
|
schema: repairSchema(),
|
|
239
|
-
agentType: '
|
|
239
|
+
agentType: 'general-purpose',
|
|
240
240
|
})
|
|
241
241
|
}
|
|
242
242
|
|
|
@@ -296,4 +296,4 @@ async function runPlanPacketWorkflow(rawInput) {
|
|
|
296
296
|
}
|
|
297
297
|
}
|
|
298
298
|
|
|
299
|
-
return await runPlanPacketWorkflow(
|
|
299
|
+
return await runPlanPacketWorkflow(args)
|