production_generateAssemblyStepsFromPlan

WRITE

Generate assembly steps from plan.

Parameters

assemblyInstructionIdstringrequired
/** * "regenerate" replaces the existing steps with fresh drafts from the * latest plan — refused while any step is manually authored * (planConfidence "manual") or already Done. */ modeenumoptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "production_generateAssemblyStepsFromPlan",
  "arguments": {
    "assemblyInstructionId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "assemblyInstructionId": {
      "type": "string"
    },
    "/**\n     * \"regenerate\" replaces the existing steps with fresh drafts from the\n     * latest plan — refused while any step is manually authored\n     * (planConfidence \"manual\") or already Done.\n     */\n    mode": {
      "type": "string",
      "enum": [
        "generate",
        "regenerate"
      ]
    }
  },
  "required": [
    "assemblyInstructionId"
  ]
}