Why I Built This
I was looking at the awesome-openclaw-usecases repo — 40 real-world use cases for OpenClaw. It looked like a goldmine of automation ideas.
But then I noticed something: almost none of them actually need OpenClaw. The "skills" are just API wrappers. The "memory system" is just file storage. The "sub-agents" are just parallel tasks. Every capability they depend on exists in any capable AI agent.
What I Found
| Classification | Count | % |
|---|---|---|
| Agent-agnostic (works anywhere) | 20 | 50% |
| Partial (swap one tool) | 17 | 42.5% |
| OpenClaw-dependent | 3 | 7.5% |
Only 3 out of 40 use cases genuinely require OpenClaw. The rest? They work with Claude Code, Codex, Cursor, or any agent with shell access + LLM reasoning.
The Context Efficiency Problem
So I extracted the 37 agent-agnostic use cases. But dumping 37 guides into one skill file would burn ~30,000 tokens every invocation. That's wasteful.
Instead, I used an Index Skill Pattern:
-
SKILL.mdis just a table of contents (~1,200 tokens) - Each use case lives in its own file under
usecases/ - Only the selected file gets loaded on demand (~800 tokens)
- 93% context savings vs monolithic
not-need-claw/
├── SKILL.md # Index skill (~1,200 tokens)
└── usecases/ # 37 use cases (loaded on-demand)
├── second-brain.md
├── self-healing-home-server.md
└── ... (35 more)
Categories
- Social Media (4): Reddit/YouTube digest, X analysis, tech news aggregation
- Creative & Building (5): Podcast pipeline, game dev, content factory
- Infrastructure & DevOps (2): Self-healing server, n8n orchestration
- Productivity (18): Second brain, CRM, meeting notes, habit tracker
- Research & Learning (7): arXiv reader, RAG knowledge base, idea validator
- Finance (1): Polymarket autopilot
Try It
npx skills add devjiro76/not-need-claw
GitHub: devjiro76/not-need-claw
What's Next
Looking for community contributions — if you have agent-agnostic use cases that work across platforms, PRs welcome.
not-need-claw is open source. I'd love to hear your feedback!
Top comments (1)
nice work :)