小橘 57c740cdde Revert "chore(workflow): auto-generated commit"
This reverts commit 75f2768a8c7713879bb2ab564f42f24bc609338e.
2026-04-28 15:49:22 +00:00

7 lines
242 B
TypeScript

import { readNerveYaml } from "@uncaged/nerve-workflow-utils";
export function readNerveConfigText(nerveRoot: string): string {
const result = readNerveYaml({ nerveRoot });
return result.ok ? result.value : "# nerve.yaml unavailable";
}