coleam00/Archon · error · Error
Workflow '${workflowName}' not found. Available workflows:
Error message
Workflow '${workflowName}' not found.
Available workflows:
${availableWorkflows} What it means
Error "Workflow '${workflowName}' not found. Available workflows: ${availableWorkflows}" thrown in coleam00/Archon.
Source
Thrown at packages/cli/src/commands/workflow.ts:1606
`Failed to capture workflow source from ${sourceRoot}: ${(error as Error).message}`
);
}
const rediscovered = await discoverWorkflowsWithConfig(
sourceRoot,
loadConfig,
preparedSource.roots
);
workflowEntries = rediscovered.workflows;
errors = rediscovered.errors;
workflow = resolveWorkflowName(
workflowName,
workflowEntries.map(ws => ws.workflow)
);
workflowEntry = workflow ? workflowEntries.find(ws => ws.workflow === workflow) : undefined;
workflowSource = workflowEntry?.source;
if (!workflow) {
const availableWorkflows = workflowEntries.map(ws => ` - ${ws.workflow.name}`).join('\n');
throw new Error(
`Workflow '${workflowName}' not found.\n\nAvailable workflows:\n${availableWorkflows}`
);
}
await recordSelectedWorkflow(preparedSource.captureRoot, workflow.name);
emitParseWarnings(workflowEntry?.parseWarnings, workflow.name);
emitDeprecationNotice(workflow);
// The gates above ran against the parent checkout's YAML; this lane executes the
// branch's graph, so judge the same signature gates against the branch vintage
// (mirrors the orchestrator's deferred runSignatureGates).
if (!options.resume) {
resolvedInputs = resolveTopLevelInputs(
workflow,
options.inputs ? parseInputAssignments(options.inputs) : undefined
);
}
await assertCliWorkflowRequirementsMet(workflow);
};
View on GitHub (pinned to 0773b97458)
When it happens
Trigger: Thrown at packages/cli/src/commands/workflow.ts:1606 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of coleam00/Archon@0773b97458 (2026-09-01).
Data as JSON: /api/errors/79d661de474e2f84.
Report an issue: GitHub.