955 B
955 B
Super Multica
A multi-component architecture for distributed agent systems.
Project Structure
src/
├── agent/ # Agent module
├── gateway/ # Gateway module
├── client/ # Client module
└── shared/ # Shared types and utilities
Getting Started
pnpm install
pnpm dev
Agent CLI
Use the agent module directly from the CLI for isolated testing.
pnpm agent:cli "hello"
# Persist a session under ~/.super-multica/sessions/<id>/session.jsonl
pnpm agent:cli --session demo "remember my name is Alice"
pnpm agent:cli --session demo "what's my name?"
# Override provider/model
pnpm agent:cli --provider openai --model gpt-4o-mini "hi"
Scripts
pnpm dev- Run in development modepnpm agent:cli- Run the agent CLI for module-level testingpnpm build- Build for productionpnpm start- Run production buildpnpm typecheck- Type check without emitting