원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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: