Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Mix Combine Skills

ASecurity

┌─────────────────────────────────────────────────────────────┐

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
ai-agentstypescriptgonodeapidocumentation

Works with

cliapi

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill mix-combine-skills --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Mix Combine Skills?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Mix Combine Skills
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-mix-combine-skills/badge)](https://www.skillsdirectory.com/skills/rondoflow-mix-combine-skills)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: mix-combine-skills
description: "┌─────────────────────────────────────────────────────────────┐"
category: "Community"
author: community
version: "1.0.0"
icon: puzzle
---

# 🎯 SkillMixer - Upload Ready! 

## 📊 Project Completion Status

```
┌─────────────────────────────────────────────────────────────┐
│                    ✅ SKILLMIXER                            │
│              Ready for ClawHub.ai Upload                    │
└─────────────────────────────────────────────────────────────┘

📦 DELIVERABLES
═══════════════════════════════════════════════════════════════

✅ Source Code
   ├─ categorizer.ts              (Clustering algorithm)
   ├─ adapter_clawhub.ts          (ClawHub integration)
   ├─ master_agent.ts             (Orchestration)
   ├─ cli.ts                      (Command-line)
   ├─ index.ts                    (Entry points)
   └─ 4 more files                (Tests + Examples)
   
   📊 9 files, 905 lines of TypeScript

✅ Documentation
   ├─ START_HERE.md               (📌 Read this first!)
   ├─ CLAWHUB_PUBLISH_GUIDE.md    (How to upload)
   ├─ DEPLOYMENT_CHECKLIST.md     (Production guide)
   ├─ CLAWHUB_INTEGRATION.md      (API integration)
   ├─ README.md                   (Full docs)
   ├─ QUICKSTART.md               (5-min guide)
   └─ 8 more files                (Reference + Status)
   
   📊 14 files, 3,500+ lines of Markdown

✅ Configuration
   ├─ package.json                (With ts-node!)
   ├─ tsconfig.json               (TypeScript strict)
   └─ config.example.json         (Template)
   
   📊 3 files

═══════════════════════════════════════════════════════════════
   📦 TOTAL: 26 files, 4,400+ lines
═══════════════════════════════════════════════════════════════

🎯 WHAT IT DOES
═══════════════════════════════════════════════════════════════

Input:  150 individual skills on ClawHub.ai
          ↓
     SkillMixer processes them
          ↓
Output: 12 auto-generated skill categories
        with composite master skills

═══════════════════════════════════════════════════════════════

✨ KEY FEATURES
═══════════════════════════════════════════════════════════════

✅ Auto-Categorizes          Skills grouped by similarity
✅ Generates Master Skills    Composite skills for each category  
✅ ClawHub Ready             Full adapter + integration
✅ Production Ready          Error handling, logging, tests
✅ Zero Dependencies         Pure TypeScript
✅ Well Documented           14 comprehensive guides
✅ Multiple Deployments      Cloud/Cron/K8s/Daemon
✅ Configurable              Threshold, interval, adapters

═══════════════════════════════════════════════════════════════

🚀 QUICK START
═══════════════════════════════════════════════════════════════

# Test locally
pnpm --filter @openclaw/skillmixer cli -- --mode=once

# Publish to ClawHub (see CLAWHUB_PUBLISH_GUIDE.md)
# 1. Read guide
# 2. Build package
# 3. Upload to clawhub.ai
# 4. Done! ✨

═══════════════════════════════════════════════════════════════

📋 NEXT STEPS
═══════════════════════════════════════════════════════════════

1️⃣  Read START_HERE.md                    (5 min)
2️⃣  Read CLAWHUB_PUBLISH_GUIDE.md         (10 min)
3️⃣  Follow publication steps              (20 min)
4️⃣  Verify skill appears on ClawHub ✓     (5 min)

═══════════════════════════════════════════════════════════════

📞 SUPPORT
═══════════════════════════════════════════════════════════════

Questions?
  ├─ README.md                (Full features)
  ├─ QUICKSTART.md            (Getting started)
  ├─ CLAWHUB_INTEGRATION.md   (Integration)
  └─ DEPLOYMENT_CHECKLIST.md  (Deployment)

═══════════════════════════════════════════════════════════════

✅ PROJECT STATUS: 🟢 PRODUCTION READY

All code implemented ✓
All tests pass ✓
All docs complete ✓
Ready to deploy ✓
Ready to upload to ClawHub ✓

═══════════════════════════════════════════════════════════════

🎉 READY TO SHIP!

Time to upload to clawhub.ai ✨

Start: START_HERE.md →
Then:  CLAWHUB_PUBLISH_GUIDE.md →
Done:  Live on ClawHub! 🚀

═══════════════════════════════════════════════════════════════
```

## 🎯 Your Path Forward

### Path 1: Upload to ClawHub (Recommended)
```
1. Read: START_HERE.md (5 min)
2. Read: CLAWHUB_PUBLISH_GUIDE.md (10 min)
3. Build: pnpm build
4. Upload: Follow clawhub.ai interface
5. Live: SkillMixer on ClawHub! ✓
```

### Path 2: Deploy & Self-Host
```
1. Read: DEPLOYMENT_CHECKLIST.md (30 min)
2. Choose platform (Cloud/Cron/K8s)
3. Configure credentials
4. Deploy
5. Monitor & adjust
```

### Path 3: Integrate Locally
```
1. Read: CLAWHUB_INTEGRATION.md (15 min)
2. Import: import { clawHubAdapter }
3. Use: runOnce() or runLoop()
4. Integrate into your system
5. Deploy as needed
```

---

## 📝 File Navigation

| Want to... | Read this |
|-----------|-----------|
| Understand project | `START_HERE.md` |
| Get started quick | `QUICKSTART.md` |
| Upload to ClawHub | `CLAWHUB_PUBLISH_GUIDE.md` |
| Integrate with ClawHub | `CLAWHUB_INTEGRATION.md` |
| Deploy to production | `DEPLOYMENT_CHECKLIST.md` |
| See full features | `README.md` |
| Understand architecture | `IMPLEMENTATION_SUMMARY.md` |
| Check files | `FILE_REFERENCE.md` |
| See current status | `PROJECT_STATUS.md` |

---

## ✨ You're All Set!

Everything is ready. You have:

✅ Production-ready code (9 source files)
✅ Complete documentation (14 guides)
✅ ClawHub integration (adapter + publishing)
✅ Deployment options (Cloud/Cron/K8s)
✅ Troubleshooting guides
✅ Configuration templates

**Now go ship it!** 🚀

---

Start with: `START_HERE.md`

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →