ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

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.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/vishnubedi3/kimi-delegation-skill
Or

Purpose

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

  1. Initialize KIMISkill with a valid local or remote model path.
  2. Wrap the KIMISkill instance with Qwen3Coder.
  3. On every user prompt, call Qwen3Coder.handle_prompt.
  4. The prompt is forwarded verbatim to KIMMY.
  5. KIMMY generates the full response.
  6. Strip prompt scaffolding and return the result as the final output.

See:

  • scripts/kimi_skill.py
  • scripts/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

Stars919
Views1
Updated2026-02-12
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-vishnubedi3-kimi-delegation-skill": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.

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.

vishnubedi3 919

Plan Executor

Skill by vishnubedi3

vishnubedi3 919

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".

vishnubedi3 919

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.

vishnubedi3 919

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.

vishnubedi3 919