skills/worker/SKILL.md
Kimi-native team worker protocol (ACK, mailbox, task lifecycle)
npx skillsauth add Goblin1024/oh-my-kimi workerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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:
documentation
Persistent markdown project wiki stored under .omk/wiki with keyword search and lifecycle capture
development
URL-driven website cloning with visual + functional verification
testing
Structured visual QA verdict for screenshot-to-reference comparisons
tools
Parallel execution engine for high-throughput task completion