We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a06ef2 commit 2f55677Copy full SHA for 2f55677
1 file changed
src/orchestration/daily.ts
@@ -1,7 +1,16 @@
1
import { type AgentRunOptions, agentOrchestrator } from './agent.js';
2
3
+/** Options accepted by the daily orchestrator. Aliased from {@link AgentRunOptions}. */
4
export type DailyExecutionOptions = AgentRunOptions;
5
6
+/**
7
+ * Thin wrapper that delegates to the agent orchestrator.
8
+ *
9
+ * The `daily` command exists as a backward-compatible alias for `openmeta agent`.
10
+ * All real logic lives in {@link agentOrchestrator}; this class keeps the command
11
+ * registration layer decoupled so that future daily-specific behaviour (e.g.
12
+ * scheduled digest output) can be layered in without touching the agent flow.
13
+ */
14
export class DailyOrchestrator {
15
async execute(options: DailyExecutionOptions = {}): Promise<void> {
16
await agentOrchestrator.run(options);
0 commit comments