diff --git a/packages/cli-workflow/src/cli-dispatch.ts b/packages/cli-workflow/src/cli-dispatch.ts index 5b58fa0..a279537 100644 --- a/packages/cli-workflow/src/cli-dispatch.ts +++ b/packages/cli-workflow/src/cli-dispatch.ts @@ -9,9 +9,6 @@ import { createThreadDispatcher, dispatchLive, dispatchRun } from "./commands/th import { createWorkflowDispatcher } from "./commands/workflow/index.js"; import { formatSkillIndex, formatSkillTopic, getSkillTopics } from "./skill.js"; -export type { CommandEntry, CommandGroup, DispatchFn } from "./cli-command-types.js"; -export { getCommandRegistry } from "./cli-registry.js"; - function dispatchGroup( tableName: string, table: Record, diff --git a/packages/workflow-agent-cursor/src/index.ts b/packages/workflow-agent-cursor/src/index.ts index 0dfbeb6..fae2545 100644 --- a/packages/workflow-agent-cursor/src/index.ts +++ b/packages/workflow-agent-cursor/src/index.ts @@ -5,7 +5,6 @@ import * as z from "zod/v4"; import type { CursorAgentConfig } from "./types.js"; import { validateCursorAgentConfig } from "./validate-config.js"; -export { buildAgentPrompt } from "@uncaged/workflow-util-agent"; export type { CursorAgentConfig } from "./types.js"; export { validateCursorAgentConfig } from "./validate-config.js"; diff --git a/packages/workflow-agent-hermes/src/index.ts b/packages/workflow-agent-hermes/src/index.ts index 8ea65fc..91ce5e1 100644 --- a/packages/workflow-agent-hermes/src/index.ts +++ b/packages/workflow-agent-hermes/src/index.ts @@ -6,7 +6,6 @@ import { validateHermesAgentConfig } from "./validate-config.js"; const HERMES_DEFAULT_MAX_TURNS = 90; -export { buildAgentPrompt } from "@uncaged/workflow-util-agent"; export type { HermesAgentConfig } from "./types.js"; export { validateHermesAgentConfig } from "./validate-config.js";