with one click
team
Parallel agent execution via Kimi-native multi-worker runtime
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Parallel agent execution via Kimi-native multi-worker runtime
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Token-efficient execution modifier with budget-aware routing
Kimi-native team worker protocol (ACK, mailbox, task lifecycle)
Persistence loop until task completion with verification
Architecture planning and plan approval workflow
Full autonomous execution from idea to working code
Stateful validator-gated research loop with native-hook persistence
| name | team |
| description | Parallel agent execution via Kimi-native multi-worker runtime |
Coordinate multiple Kimi agents to execute work in parallel.
You are the Team Lead. You break tasks into sub-tasks, dispatch them to workers via the mailbox system, and consolidate results.
max_running_tasks (default: 4)~/.kimi/agents/SlotManager.available() before spawning workers.team/mailbox/{worker}.jsonl).KimiRuntime.import { SlotManager } from '@omk/team/slot-manager';
const slots = new SlotManager(); // reads ~/.kimi/config.toml
if (slots.acquire()) {
spawnWorker(task);
}
import { KimiRuntime } from '@omk/team/kimi-runtime';
const worker = new KimiRuntime({
agentFile: '~/.kimi/agents/executor.toml',
sessionId: 'worker-1',
logDir: '.omk/logs/team',
mailboxPath: '.omk/team/alpha/mailbox/worker-1.jsonl',
});
worker.start(subTaskPrompt);
worker.onExit((state) => {
console.log(`Worker exited: ${state.status}`);
});
import { sendTextMessage } from '@omk/team/mailbox';
sendTextMessage(
'.omk/team/alpha/mailbox/worker-1.jsonl',
'leader',
'worker-1',
'Implement the auth module per PRD section 3'
);
Before consolidating, run cross-validation on worker outputs:
import { checkCrossValidation } from '@omk/validation/cross-validation';
const results = checkCrossValidation(evidence, changedFiles);
const blocking = results.filter(r => r.triggered && !r.satisfied);
.omk/state/team-active.json.omk/logs/team/latest/{worker}.log.omk/team/{id}/mailbox/{worker}.jsonl