skills/team/SKILL.md
--- name: team description: Parallel agent execution via Kimi-native multi-worker runtime trigger: $team flags: - name: --count description: Number of workers to spawn (default: 2) phases: - starting - dispatching - monitoring - consolidating - completing gates: - type: prompt_specificity description: Task must describe parallelizable work blocking: true - type: proper_decomposition description: Task should indicate sub-tasks for parallel execution blocking: f
npx skillsauth add Goblin1024/oh-my-kimi skills/teamInstall 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.
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}.jsonldata-ai
Kimi-native team worker protocol (ACK, mailbox, task lifecycle)
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