27 lines
512 B
Markdown
27 lines
512 B
Markdown
# 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
|
|
|
|
```bash
|
|
pnpm install
|
|
pnpm dev
|
|
```
|
|
|
|
## Scripts
|
|
|
|
- `pnpm dev` - Run in development mode
|
|
- `pnpm build` - Build for production
|
|
- `pnpm start` - Run production build
|
|
- `pnpm typecheck` - Type check without emitting
|