{"record":{"id":"89fb003fdb049356","repo":"ruvnet/ruflo","slug":"workflow-not-found-workflowid","errorCode":null,"errorMessage":"Workflow not found: ${workflowId}","messagePattern":"Workflow not found: (.+?)","errorType":"exception","errorClass":"Error","httpStatus":null,"severity":"error","filePath":"v3/@claude-flow/shared/src/plugins/official/maestro-plugin.ts","lineNumber":182,"sourceCode":"        status: 'pending',\n      })),\n      status: 'created',\n      progress: 0,\n      createdAt: new Date(),\n      checkpoints: new Map(),\n    };\n\n    this.workflows.set(workflow.id, workflow);\n    return workflow;\n  }\n\n  /**\n   * Execute a workflow\n   */\n  async executeWorkflow(workflowId: string): Promise<OrchestrationResult> {\n    const workflow = this.workflows.get(workflowId);\n    if (!workflow) {\n      throw new Error(`Workflow not found: ${workflowId}`);\n    }\n\n    if (this.activeWorkflows >= this.config.maxConcurrentWorkflows) {\n      throw new Error('Maximum concurrent workflows reached');\n    }\n\n    const startTime = Date.now();\n    workflow.status = 'running';\n    workflow.startedAt = new Date();\n    this.activeWorkflows++;\n\n    const errors: Array<{ stepId: string; error: string }> = [];\n    const outputs: Record<string, unknown> = {};\n\n    try {\n      switch (this.config.orchestrationMode) {\n        case 'sequential':\n          await this.executeSequential(workflow, outputs, errors);","sourceCodeStart":164,"sourceCodeEnd":200,"githubUrl":"https://github.com/ruvnet/ruflo/blob/fa13ee4ad60ac2090b1480656eb233521790d640/v3/@claude-flow/shared/src/plugins/official/maestro-plugin.ts#L164-L200","documentation":"MaestroPlugin.executeWorkflow could not find a workflow with the given workflowId in the in-memory workflows map. The workflow was never created via createWorkflow, was completed and removed, or the id is wrong, so there is nothing to execute or resume.","triggerScenarios":"Thrown at v3/@claude-flow/shared/src/plugins/official/maestro-plugin.ts:182 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Verify the workflow id exists before starting or resuming.","Create the workflow first or list workflows to obtain a valid id."],"exampleFix":null,"handlingStrategy":"validation","validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"fa13ee4ad60ac2090b1480656eb233521790d640","analyzedAt":"2026-08-18T21:34:22.708Z","contentChangedAt":"2026-08-18T21:34:22.708Z","schemaVersion":2},"datasetVersion":"2026-09-14T05:17:10.506Z"}