-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
41 lines (38 loc) · 951 Bytes
/
index.ts
File metadata and controls
41 lines (38 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* multiagents
*
* Multi-agent orchestration platform for Claude Code, Codex CLI, and Gemini CLI.
*
* Entry points:
* - server.ts — MCP server (one per agent instance)
* - broker.ts — Shared broker daemon (one per machine)
* - orchestrator/orchestrator-server.ts — Orchestrator MCP (for Claude Desktop)
* - cli.ts — CLI tool (setup, dashboard, session mgmt)
*
* See README.md for setup and usage.
*/
export type {
PeerId,
AgentType,
MessageType,
SessionStatus,
Peer,
Message,
Session,
Slot,
FileLock,
FileOwnership,
Guardrail,
GuardrailState,
BufferedMessage,
SessionFile,
AgentLaunchConfig,
TeamConfig,
} from "./shared/types.ts";
export { BrokerClient } from "./shared/broker-client.ts";
export {
DEFAULT_BROKER_PORT,
DEFAULT_GUARDRAILS,
POLL_INTERVALS,
SESSION_FILE,
} from "./shared/constants.ts";