import type { RunAgentOptions } from "./agent/runner"; import { getBotIdentity } from "./bot-identity"; import { CLAWBOOK_API_URL } from "./constants"; export async function agentOptions(): Promise { return { clawbookApiUrl: CLAWBOOK_API_URL, sigmaMemberWif: process.env.SIGMA_MEMBER_WIF ?? "", moltbookApiKey: process.env.MOLTBOOK_API_KEY, anthropicAuthToken: process.env.CLAUDE_CODE_OAUTH_TOKEN ?? process.env.ANTHROPIC_AUTH_TOKEN, botIdentity: await getBotIdentity(), }; }