con un clic
worker
Kimi-native team worker protocol (ACK, mailbox, task lifecycle)
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Kimi-native team worker protocol (ACK, mailbox, task lifecycle)
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Token-efficient execution modifier with budget-aware routing
Persistence loop until task completion with verification
Architecture planning and plan approval workflow
Parallel agent execution via Kimi-native multi-worker runtime
Full autonomous execution from idea to working code
Stateful validator-gated research loop with native-hook persistence
| name | worker |
| description | Kimi-native team worker protocol (ACK, mailbox, task lifecycle) |
This skill is for a Kimi session started as an OMK Team worker.
You are a Worker in an OMK Team. Your identity is set via environment:
OMK_TEAM_WORKER=alpha/worker-2
OMK_TEAM_WORKER into teamName and workerName.omk team api send-message --input "{"team_name":"alpha","from_worker":"worker-2","to_worker":"leader-fixed","body":"ACK: worker-2 initialized"}" --json
OMX_TEAM_STATE_ROOT → .omk/state.omk/team/{teamName}/mailbox/{workerName}.jsonlomk_submit_evidence MCP tool.Use the mailbox module directly:
import { readUndeliveredFor, markDelivered } from '@omk/team/mailbox';
const messages = readUndeliveredFor(mailboxPath, workerName);
for (const msg of messages) {
if (msg.type === 'task_assignment') {
executeTask(msg.payload);
markDelivered(mailboxPath, msg.id);
}
}
The KimiRuntime automatically sends heartbeats to the leader mailbox.
No manual heartbeat needed unless running outside the runtime.
When the leader sends a shutdown message: