diff --git a/src/agent/identity.ts b/src/agent/identity.ts index 89f057a..3d99b26 100644 --- a/src/agent/identity.ts +++ b/src/agent/identity.ts @@ -3,6 +3,7 @@ import * as path from "path"; import * as YAML from "yaml"; import { ZodError } from "zod"; import { AgentYamlSchema } from "./schema"; +import type { AgentYaml as AgentIdentity } from "./schema"; export type { AgentYaml as AgentIdentity } from "./schema"; diff --git a/src/config/loader.ts b/src/config/loader.ts index b8dbf1f..b26a7f3 100644 --- a/src/config/loader.ts +++ b/src/config/loader.ts @@ -6,6 +6,7 @@ import * as YAML from "yaml"; import { ZodError } from "zod"; import { childLogger } from "../runtime/logger"; import { DisclawConfigSchema } from "./schema"; +import type { DisclawConfig } from "./schema"; export type { DisclawConfig } from "./schema";