# Genpark Openclaw Genteam Agent Channel Runtime Skill

> Agent runtime channel router and teammate dispatcher connecting self-hosted OpenClaw gateways to GenTeam multi-agent swarms.

- Skill: `alphaparkinc/genpark-openclaw-genteam-agent-channel-runtime-skill` (Agent Skill, multi-file: 8 files)
- Install (CLI): `npx skillmds@latest add alphaparkinc/genpark-openclaw-genteam-agent-channel-runtime-skill`
- Raw SKILL.md: https://api.skillmd.com/api/skills/alphaparkinc/genpark-openclaw-genteam-agent-channel-runtime-skill/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- License: Apache-2.0
- Author: alphaparkinc (https://skillmd.com/u/alphaparkinc)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/alphaparkinc/genpark-openclaw-genteam-agent-channel-runtime-skill

---


# 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

```mermaid
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.py` for standard Model Context Protocol stdio transport.
- Import `client.py` directly for programmatic, zero-dependency integration.
- Refer to `example_usage.py` for end-to-end usage examples.

