feat(workflow-utils): export readNerveYaml and nerveAgentContext

Re-export context helpers from the package entry so consumers can import them from @uncaged/nerve-workflow-utils.

Made-with: Cursor
This commit is contained in:
2026-04-28 02:20:03 +00:00
parent b4c78a62aa
commit 7ee7c4503a
+14
View File
@@ -5,7 +5,21 @@ export {
createLlmRole,
createReActRole,
} from "./role-factories.js";
export {
nerveAgentContext,
readNerveYaml,
type NerveYamlError,
type ReadNerveYamlOptions,
} from "./context.js";
export { isDryRun } from "./start-step.js";
export {
nerveCommandEnv,
spawnSafe,
type SpawnEnv,
type SpawnError,
type SpawnResult,
type SpawnSafeOptions,
} from "./spawn-safe.js";
export type { LlmError, LlmProvider } from "./llm-extract.js";
export type {
CliPromptFn,