This PR adds two new skills for delegating tasks to Kimi Code CLI and Qwen Code CLI as subagents.
Problem Solved
Claude Code users often need to delegate simple to moderate tasks to other AI coding assistants for efficiency. These skills teach Claude when and how to delegate tasks appropriately.
Real-World Use Case
- Developers: Delegate file operations, code reading, and analysis tasks while maintaining focus on complex work
- Researchers: Delegate web research and data extraction tasks to specialized tools
- Technical Writers: Delegate documentation summarization and code explanation tasks
Skill Details
Kimi Code Skill ()
- What it does: Teaches Claude to delegate tasks to Kimi Code CLI (Moonshot AI) for file operations, code summarization, and analysis
- Key features: Transparent execution with ThinkPart/ToolCall visibility, safe --print mode, working directory isolation
- Use cases: File listing, code reading, environment checks, simple test runs
Qwen Code Skill ()
- What it does: Teaches Claude to delegate tasks to Qwen Code CLI (Alibaba) for file operations, web research, and code analysis
- Key features: Rich built-in tools, >95% cache efficiency, 1M context window, structured JSON output
- Use cases: Web research, data extraction, file operations, environment verification
Attribution
Skills developed by @Dominic789654 based on real usage of Kimi Code and Qwen Code CLI tools.
Example Usage
User: "List all Python files in the current directory and count their lines"
Claude (using kimi-code skill): Delegates to Kimi Code: kimi -p "List all .py files with line counts" --print
User: "Search for recent best practices about Python async programming"
Claude (using qwen-code skill): Delegates to Qwen Code: qwen -p "Search for Python async programming best practices" --yolo -o text
Both skills include comprehensive safety guidelines and follow official Anthropic skill format.