一键导入
worker
Kimi-native team worker protocol (ACK, mailbox, task lifecycle)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Kimi-native team worker protocol (ACK, mailbox, task lifecycle)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 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: