#!/usr/bin/env node /** * AgentKits Memory — Unified CLI Router * * Routes subcommands to the appropriate handler module. * Enables clean `npx @aitytech/agentkits-memory ` usage. * * Subcommands: * setup Setup memory for your project (default) * server Start the MCP server * web Start the web viewer * viewer Terminal viewer * save Save a memory entry * hook Run a hook event (context, session-init, observation, summarize, etc.) * * Examples: * npx @aitytech/agentkits-memory # setup (default) * npx @aitytech/agentkits-memory setup --force # setup with options * npx @aitytech/agentkits-memory server # start MCP server * npx @aitytech/agentkits-memory web # start web viewer * npx @aitytech/agentkits-memory hook context # run hook * npx @aitytech/agentkits-memory save "..." --tags x # save entry * * @module @aitytech/agentkits-memory/cli/main */ export {}; //# sourceMappingURL=main.d.ts.map