GenPark OpenClaw GenTeam Agent Channel Runtime Skill
Agent runtime channel router and teammate dispatcher connecting self-hosted OpenClaw gateways to GenTeam multi-agent swarms.
Capabilities & Tool Surface
route_channel_event: Ingest inbound gateway message, route to channel thread, and generate dispatch envelope.manage_team_task: Claim, update, complete, or query tasks across agent channels.sync_channel_state: Synchronize channel metadata, participant roster, and pinned items.execute_contract_tool: Execute OpenClaw GenTeam channel contracts (e.g.de_server_info,de_message_send,de_task_claim).
Architecture
graph LR
A[Inbound User / Webhook] --> B[OpenClaw Gateway]
B -->|Channel Event| C[GenTeam Channel Runtime Skill]
C --> D[Teammate Dispatcher]
D --> E[Agent Persona 1]
D --> F[Agent Persona 2]
E -->|Reply / Task State| C
F -->|Reply / Task State| C
C -->|Outbound Sync| B
style A fill:#e1f5fe
style B fill:#fff9c4
style C fill:#c8e6c9
style D fill:#ffe0b2
Integration Guide
- Run
mcp_server.pyfor standard Model Context Protocol stdio transport. - Import
client.pydirectly for programmatic, zero-dependency integration. - Refer to
example_usage.pyfor end-to-end usage examples.