kimi-delegation-skill
Forces all reasoning and code generation to be delegated to a KIMI (KIMMY) causal language model via HuggingFace Transformers. Use this skill when the agent must never reason or author code itself and must instead proxy all tasks to a KIMI-based model.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/vishnubedi3/kimi-delegation-skillPurpose
This skill enforces a strict delegation model where the primary agent has zero reasoning or code-authoring authority. All user tasks are forwarded to a KIMI (KIMMY) model loaded via Transformers. The agent acts only as a dispatcher.
Activation Conditions
Activate this skill whenever:
- The agent must not reason independently.
- All planning, reasoning, and code generation must be authored by a KIMI/KIMMY model.
- Deterministic delegation to an external causal LM is required.
Execution Steps
- Initialize
KIMISkillwith a valid local or remote model path. - Wrap the
KIMISkillinstance withQwen3Coder. - On every user prompt, call
Qwen3Coder.handle_prompt. - The prompt is forwarded verbatim to KIMMY.
- KIMMY generates the full response.
- Strip prompt scaffolding and return the result as the final output.
See:
scripts/kimi_skill.pyscripts/qwen3_coder.py
Inputs and Outputs
Input:
A raw user task string.
Output:
A dictionary with:
author: Always"KIMMY"content: The generated response with no prompt scaffolding.
Failure Modes and Edge Cases
- Model path invalid or unavailable: initialization fails.
- Insufficient VRAM: model may fall back to CPU or fail to load.
- Extremely long tasks may exceed context limits.
- If generation fails, no fallback reasoning is permitted.
The agent must not attempt to recover by reasoning itself.
References
Technical details and architectural rationale are in:
references/REFERENCE.md
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-vishnubedi3-kimi-delegation-skill": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
deliberate-frontend-redesign
Generates a deliberately designed frontend aesthetic that avoids generic UI patterns. Use when the user explicitly requests to redesign a frontend by invoking this skill by name. Trigger keywords: use deliberate-frontend-redesign, redesign frontend, redesign interface.
Plan Executor
Skill by vishnubedi3
autonomous-skill-orchestrator
Deterministically coordinates autonomous planning and execution across available skills under strict guardrails. Use only when the user explicitly activates this skill by name to run autonomously until a stop command is issued. Trigger keywords include: "use autonomous-skill-orchestrator", "activate autonomous-skill-orchestrator", "start autonomous orchestration".
human-optimized-frontend
Generates a frontend interface that is visually pleasing and experientially sound by jointly optimizing aesthetics, motion graphics, and user experience (UX) using quantified evaluation. Use only when the user explicitly invokes this skill by name to redesign a frontend. Trigger keywords: use human-optimized-frontend, redesign frontend, redesign interface.
autonomous-feature-planner
Autonomously plans and specifies system features starting from the user’s most recent command, continuing without further user input until explicitly stopped. Use when the user explicitly invokes autonomous planning to extend a system from a prior command. Trigger keywords: use autonomous-feature-planner, start autonomous planning, autonomous expansion, continuous feature planning.