@rune-kit/rune 2.3.3 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -1
- package/compiler/__tests__/scripts-bundling.test.js +284 -0
- package/compiler/__tests__/tier-override.test.js +41 -0
- package/compiler/adapters/antigravity.js +4 -0
- package/compiler/adapters/codex.js +4 -0
- package/compiler/adapters/cursor.js +4 -0
- package/compiler/adapters/generic.js +4 -0
- package/compiler/adapters/openclaw.js +4 -0
- package/compiler/adapters/opencode.js +4 -0
- package/compiler/adapters/windsurf.js +4 -0
- package/compiler/emitter.js +85 -5
- package/compiler/transforms/scripts-path.js +18 -0
- package/extensions/zalo/PACK.md +20 -1
- package/extensions/zalo/references/conversation-management.md +214 -0
- package/extensions/zalo/references/eval-scenarios.md +157 -0
- package/extensions/zalo/references/listen-mode.md +237 -0
- package/extensions/zalo/references/mcp-production.md +274 -0
- package/extensions/zalo/references/multi-account-proxy.md +224 -0
- package/extensions/zalo/references/vietqr-banking.md +160 -0
- package/package.json +2 -3
- package/skills/marketing/SKILL.md +3 -0
- package/skills/sentinel/SKILL.md +4 -1
- package/skills/sentinel/references/auth-crypto-reference.md +192 -0
- package/skills/sentinel/references/desktop-security.md +201 -0
- package/skills/sentinel/references/supply-chain.md +160 -0
- package/skills/slides/SKILL.md +142 -0
- package/skills/slides/scripts/build-deck.js +158 -0
- package/docs/ANTIGRAVITY-GAP-ANALYSIS.md +0 -369
- package/docs/ARCHITECTURE.md +0 -332
- package/docs/COMMUNITY-PACKS.md +0 -109
- package/docs/CONTRIBUTING-L4.md +0 -215
- package/docs/CROSS-IDE-ANALYSIS.md +0 -164
- package/docs/EXTENSION-TEMPLATE.md +0 -126
- package/docs/MESH-RULES.md +0 -34
- package/docs/MULTI-PLATFORM.md +0 -804
- package/docs/SKILL-DEPTH-AUDIT.md +0 -191
- package/docs/SKILL-TEMPLATE.md +0 -118
- package/docs/TRADE-MATRIX.md +0 -327
- package/docs/VERSIONING.md +0 -91
- package/docs/VISION.md +0 -263
- package/docs/assets/demo-subtitles.srt +0 -215
- package/docs/assets/end-card.html +0 -276
- package/docs/assets/mesh-diagram.html +0 -654
- package/docs/assets/thumbnail.html +0 -295
- package/docs/guides/cli.md +0 -403
- package/docs/guides/index.html +0 -1450
- package/docs/index.html +0 -1005
- package/docs/references/claudekit-analysis.md +0 -414
- package/docs/references/voltagent-analysis.md +0 -189
- package/docs/script.js +0 -495
- package/docs/skills/index.html +0 -832
- package/docs/style.css +0 -958
- package/docs/video-demo-plan.md +0 -172
|
@@ -1,414 +0,0 @@
|
|
|
1
|
-
# ClaudeKit Competitive Analysis (Deep Research)
|
|
2
|
-
|
|
3
|
-
> Reference document. Not part of Rune's public docs.
|
|
4
|
-
> Date: 2026-02-27 | Updated: 2026-03-10 (deep research)
|
|
5
|
-
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
## What ClaudeKit Is
|
|
9
|
-
|
|
10
|
-
ClaudeKit ($99-149) sells pre-built skills, workflows, and agents for Claude Code.
|
|
11
|
-
Built by mrgoonie (18+ year CTO), battle-tested in real products, 4,000+ users across 109 countries.
|
|
12
|
-
|
|
13
|
-
- **Total**: 108+ skills, 95+ commands, 45 AI agents
|
|
14
|
-
- Engineer Kit: $99 — 70+ skills, 40+ workflows, 17 agents, 76 slash commands
|
|
15
|
-
- Marketing Kit: $99 — 8 MCP integrations, 32 agents, 68 skills, 119 commands, 5 workflows
|
|
16
|
-
- Bundle: $149 — both kits, lifetime access, 14-day money-back guarantee
|
|
17
|
-
- Payment: Stripe → private GitHub repo access
|
|
18
|
-
- Referral program: 20% recurring commission
|
|
19
|
-
- CLI: `bun add -g claudekit-cli` then `ck new --dir my-project --kit engineer`
|
|
20
|
-
- Also available as Claude Code Plugin Marketplace install
|
|
21
|
-
|
|
22
|
-
## Distribution Model
|
|
23
|
-
|
|
24
|
-
- Copies `.claude/` directory into each project (project-level, not global)
|
|
25
|
-
- Skills also available via Plugin Marketplace: `/plugin install ai-ml-tools@claudekit-skills`
|
|
26
|
-
- Requires `claude --dangerously-skip-permissions` for autonomous workflows
|
|
27
|
-
- Central config: `.claude/CLAUDE.md` controls all agent behaviors, skills, workflows
|
|
28
|
-
- Skills stored in `.claude/skills/` with auto-activation via codebase detection
|
|
29
|
-
|
|
30
|
-
## Repository Structure
|
|
31
|
-
|
|
32
|
-
```
|
|
33
|
-
.claude/
|
|
34
|
-
├── agents/ # 17 specialized agents (engineer) or 32 (marketing)
|
|
35
|
-
├── commands/ # 35+ workflow automation commands
|
|
36
|
-
├── skills/ # 40+ pre-built agent skills
|
|
37
|
-
├── workflows/ # Workflow coordination files
|
|
38
|
-
├── CLAUDE.md # Central project context template
|
|
39
|
-
├── docs/ # Production documentation
|
|
40
|
-
└── plans/ # Implementation planning
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
---
|
|
44
|
-
|
|
45
|
-
## Engineer Kit — Complete Agent Roster (17)
|
|
46
|
-
|
|
47
|
-
### Development & Implementation
|
|
48
|
-
1. **planner** — Research, analyze, create implementation plans before coding
|
|
49
|
-
2. **fullstack-developer** — Full-stack implementation with strict file ownership + parallel execution
|
|
50
|
-
3. **researcher** — Parallel research & best practices discovery
|
|
51
|
-
4. **database-admin** — Schema design & migrations
|
|
52
|
-
|
|
53
|
-
### Quality & Testing
|
|
54
|
-
5. **tester** — Comprehensive test suite generation, coverage analysis
|
|
55
|
-
6. **code-reviewer** — Security audits, performance analysis, code quality
|
|
56
|
-
7. **code-simplifier** — Autonomous code refinement for clarity and maintainability
|
|
57
|
-
8. **debugger** — Root cause analysis, log investigation, issue diagnosis
|
|
58
|
-
|
|
59
|
-
### Design & Creative
|
|
60
|
-
9. **ui-ux-designer** — Screenshot to production UI + visual asset generation (Three.js, responsive)
|
|
61
|
-
10. **brainstormer** — Creative brainstorming, challenge assumptions, debate decisions
|
|
62
|
-
11. **copywriter** — Marketing copy & changelogs
|
|
63
|
-
|
|
64
|
-
### Documentation & Management
|
|
65
|
-
12. **docs-manager** — Technical documentation, API docs, architecture guides (auto-updating)
|
|
66
|
-
13. **project-manager** — Progress tracking, cross-agent coordination, status reports
|
|
67
|
-
14. **journal-writer** — Document failures and setbacks with brutal honesty
|
|
68
|
-
15. **git-manager** — Conventional commits, security scanning, token-optimized
|
|
69
|
-
|
|
70
|
-
### Integration & Research
|
|
71
|
-
16. **scout** — Codebase exploration & discovery
|
|
72
|
-
17. **scout-external** — External tools integration & discovery
|
|
73
|
-
|
|
74
|
-
### Agent Orchestration Patterns
|
|
75
|
-
- **Sequential**: planner → developer → tester → reviewer → git-manager
|
|
76
|
-
- **Parallel**: Independent agents work simultaneously, aggregate results
|
|
77
|
-
- **Hybrid**: Combines both for complex tasks
|
|
78
|
-
- Communication via shared files, handoff protocols, real-time progress tracking
|
|
79
|
-
|
|
80
|
-
---
|
|
81
|
-
|
|
82
|
-
## Marketing Kit — Complete Agent Roster (32)
|
|
83
|
-
|
|
84
|
-
### TOFU (Top of Funnel — Attraction) — 4 agents
|
|
85
|
-
- **attraction-specialist** — Keyword research, competitor content intelligence, landing page gen, programmatic SEO
|
|
86
|
-
- **seo-specialist** — Technical audits, content optimization, Search Console monitoring
|
|
87
|
-
- **lead-qualifier** — Lead scoring and intent detection
|
|
88
|
-
- **researcher** — Market intelligence and competitive trends
|
|
89
|
-
|
|
90
|
-
### MOFU (Middle of Funnel — Nurture) — 5 agents
|
|
91
|
-
- **email-wizard** — Sequence generation, dynamic personalization, send-time optimization, A/B testing
|
|
92
|
-
- **sale-enabler** — Sales collateral and pitch materials
|
|
93
|
-
- **funnel-architect** — Conversion optimization
|
|
94
|
-
- **content-creator** — Multi-format gen (blogs, videos, ad content), brand consistency, editorial calendars
|
|
95
|
-
- **continuity-specialist** — Customer retention and engagement
|
|
96
|
-
|
|
97
|
-
### BOFU (Bottom of Funnel — Convert) — 1 agent
|
|
98
|
-
- **upsell-maximizer** — Revenue expansion, product recommendations, revenue forecasting, feature adoption tracking
|
|
99
|
-
|
|
100
|
-
### Core Operations — 5 agents
|
|
101
|
-
- **campaign-manager** — Multi-channel coordination, budget optimization, performance tracking, launch workflows
|
|
102
|
-
- **copywriter** — High-converting copywriting
|
|
103
|
-
- **brainstormer** — Strategy and ideation
|
|
104
|
-
- **content-reviewer** — Quality control and brand voice consistency
|
|
105
|
-
- **campaign-debugger** — Performance issue diagnosis
|
|
106
|
-
|
|
107
|
-
### Community & Social — 2 agents
|
|
108
|
-
- **social-media-manager** — Multi-platform content management
|
|
109
|
-
- **community-manager** — Engagement and moderation
|
|
110
|
-
|
|
111
|
-
### Support & Infrastructure — 15 agents
|
|
112
|
-
- planner, project-manager, docs-manager, git-manager, journal-writer
|
|
113
|
-
- scout, scout-external, mcp-manager, analytics-analyst, tester
|
|
114
|
-
- (5 additional unnamed support agents)
|
|
115
|
-
|
|
116
|
-
### 8 MCP Integrations
|
|
117
|
-
1. **Google Analytics 4** — Analytics
|
|
118
|
-
2. **Google Search Console** — SEO monitoring
|
|
119
|
-
3. **Google Ads** — Ads management
|
|
120
|
-
4. **SendGrid** — Email campaigns
|
|
121
|
-
5. **Resend** — Email campaigns (alternative)
|
|
122
|
-
6. **Slack** — Team communication
|
|
123
|
-
7. **Discord** — Community management
|
|
124
|
-
8. **ReviewWeb** — Review aggregation
|
|
125
|
-
|
|
126
|
-
### 5 Marketing Workflows
|
|
127
|
-
1. **Marketing Workflow** — Research → Insights → Creative → Plan → Create → Edit → Publish → Measure
|
|
128
|
-
2. **Sales Workflow** — Lead gen → Qualification → Nurture → Close
|
|
129
|
-
3. **CRM Workflow** — Contact management + automation
|
|
130
|
-
4. **Video Production Workflow** — Script → Record → Edit → Publish
|
|
131
|
-
5. **Design Workflow** — Brief → Concept → Create → Review
|
|
132
|
-
|
|
133
|
-
---
|
|
134
|
-
|
|
135
|
-
## Complete Skills Catalog (from GitHub: mrgoonie/claudekit-skills)
|
|
136
|
-
|
|
137
|
-
### Authentication & Security
|
|
138
|
-
- **better-auth** — TypeScript auth framework (email/password, OAuth, 2FA, passkeys, multi-tenancy)
|
|
139
|
-
|
|
140
|
-
### AI & Machine Learning
|
|
141
|
-
- **ai-multimodal** — Google Gemini API (audio transcription, image analysis, video processing, doc extraction, image gen)
|
|
142
|
-
- **context-engineering** — AI agent optimization, degradation patterns, memory architectures
|
|
143
|
-
- **google-adk-python** — Google Agent Development Kit for multi-agent orchestration
|
|
144
|
-
|
|
145
|
-
### Backend Development
|
|
146
|
-
- **backend-development** — Node.js, Python, Go, Rust + NestJS, FastAPI, Django frameworks
|
|
147
|
-
|
|
148
|
-
### Frontend & Web
|
|
149
|
-
- **web-frameworks** — Next.js, Turborepo, RemixIcon
|
|
150
|
-
- **ui-styling** — shadcn/ui, Radix UI, Tailwind CSS, accessible components
|
|
151
|
-
- **frontend-design** — Production-grade interface creation
|
|
152
|
-
- **frontend-development** — React/TypeScript, Suspense, TanStack Router, MUI v7
|
|
153
|
-
- **threejs** — 3D web (WebGL/WebGPU, animations, shaders)
|
|
154
|
-
- **aesthetic** — Interface design principles (visual hierarchy, color theory, micro-interactions)
|
|
155
|
-
|
|
156
|
-
### Browser Automation & Testing
|
|
157
|
-
- **chrome-devtools** — Puppeteer CLI (automation, screenshots, performance analysis)
|
|
158
|
-
- **web-testing** — Playwright, Vitest, k6 (E2E, unit, integration, load, security, visual, accessibility)
|
|
159
|
-
|
|
160
|
-
### Cloud & DevOps
|
|
161
|
-
- **devops** — Cloudflare (Workers, R2, D1, KV, Pages, Durable Objects), Docker, GCP (Compute, GKE, Cloud Run)
|
|
162
|
-
|
|
163
|
-
### Databases
|
|
164
|
-
- **databases** — MongoDB (aggregation, Atlas) + PostgreSQL (schema, queries, optimization)
|
|
165
|
-
|
|
166
|
-
### Development Tools
|
|
167
|
-
- **claude-code** — Claude Code features (slash commands, hooks, plugins, MCP servers)
|
|
168
|
-
- **mcp-builder** — Build MCP servers (FastMCP Python / TypeScript)
|
|
169
|
-
- **mcp-management** — Manage MCP servers and tools
|
|
170
|
-
- **repomix** — Package repos into single AI-friendly files
|
|
171
|
-
- **media-processing** — FFmpeg + ImageMagick for multimedia
|
|
172
|
-
|
|
173
|
-
### Documentation & Research
|
|
174
|
-
- **docs-seeker** — Documentation discovery (llms.txt, GitHub analysis)
|
|
175
|
-
|
|
176
|
-
### Code Quality
|
|
177
|
-
- **code-review** — Feedback evaluation + completion verification
|
|
178
|
-
- **skill-creator** — Create reusable AI skills (SKILL.md < 100 lines, progressive disclosure)
|
|
179
|
-
|
|
180
|
-
### Debugging (4 sub-skills)
|
|
181
|
-
- **defense-in-depth** — Layer validation to prevent bugs structurally
|
|
182
|
-
- **root-cause-tracing** — Backward tracing through call stacks
|
|
183
|
-
- **systematic-debugging** — Four-phase debugging framework (reproduce → isolate → trace → fix)
|
|
184
|
-
- **verification-before-completion** — Command verification before success claims
|
|
185
|
-
|
|
186
|
-
### Document Processing (4 sub-skills)
|
|
187
|
-
- **docx** — Word document creation with tracked changes
|
|
188
|
-
- **pdf** — PDF extraction, creation, merging, form filling
|
|
189
|
-
- **pptx** — PowerPoint creation and editing
|
|
190
|
-
- **xlsx** — Spreadsheet building with formulas and financial modeling
|
|
191
|
-
|
|
192
|
-
### E-commerce
|
|
193
|
-
- **shopify** — Shopify apps, extensions, themes (GraphQL/REST)
|
|
194
|
-
|
|
195
|
-
### Payments
|
|
196
|
-
- **payment-integration** — SePay, Polar, Stripe, Paddle, Creem.io + webhook verification
|
|
197
|
-
|
|
198
|
-
### Problem-Solving (6 sub-skills)
|
|
199
|
-
- **collision-zone-thinking** — Combining unrelated concepts
|
|
200
|
-
- **inversion-exercise** — Testing opposite assumptions
|
|
201
|
-
- **meta-pattern-recognition** — Identifying universal principles
|
|
202
|
-
- **scale-game** — Testing at extreme scales
|
|
203
|
-
- **simplification-cascades** — Eliminating components via single insights
|
|
204
|
-
- **when-stuck** — Dispatching to appropriate techniques
|
|
205
|
-
|
|
206
|
-
### Advanced Reasoning
|
|
207
|
-
- **sequential-thinking** — Step-by-step reasoning with revision
|
|
208
|
-
|
|
209
|
-
### Visualization
|
|
210
|
-
- **mermaidjs-v11** — 24+ diagram types (flowcharts, sequence diagrams, etc.)
|
|
211
|
-
|
|
212
|
-
### Meta
|
|
213
|
-
- **mcp-manager** — Subagent for managing MCP context without bloat
|
|
214
|
-
|
|
215
|
-
**Total confirmed individual skills: ~40+ with sub-skills bringing count to ~55+**
|
|
216
|
-
|
|
217
|
-
---
|
|
218
|
-
|
|
219
|
-
## Complete Slash Commands
|
|
220
|
-
|
|
221
|
-
### Core Development
|
|
222
|
-
- `/ck:plan <description>` — Create implementation plan
|
|
223
|
-
- `/ck:plan --two` — Two-step implementation plan
|
|
224
|
-
- `/ck:cook <description>` — Implement new features
|
|
225
|
-
- `/ck:cook --auto <description>` — Autonomous feature implementation
|
|
226
|
-
- `/ck:bootstrap <idea>` — Bootstrap new project (interactive)
|
|
227
|
-
- `/ck:bootstrap --auto <idea>` — Fully autonomous project bootstrap
|
|
228
|
-
- `/ck:test` — Run test suite and report
|
|
229
|
-
- `/ck:debug` — Log analysis and root cause diagnosis
|
|
230
|
-
- `/ck:scout` — Code analysis agent
|
|
231
|
-
- `/ck:fix --quick <desc>` — Quick bug fix
|
|
232
|
-
- `/ck:fix <description>` — Auto-detect complexity bug fix
|
|
233
|
-
- `/ck:fix` (no args) — Auto-fetch logs or detect failing tests
|
|
234
|
-
- `/ck:fix <github-action-url>` — Fix CI/CD pipeline issues
|
|
235
|
-
|
|
236
|
-
### Documentation
|
|
237
|
-
- `/ck:docs init` — Initialize documentation and specs
|
|
238
|
-
- `/ck:docs update` — Update existing documentation
|
|
239
|
-
- `/ck:docs summarize` — Summarize documentation
|
|
240
|
-
|
|
241
|
-
### Git Operations
|
|
242
|
-
- `/ck:git cm` — Create commit with meaningful message
|
|
243
|
-
- `/ck:git cp` — Commit and push
|
|
244
|
-
- `/ck:git pr` — Create pull request
|
|
245
|
-
|
|
246
|
-
### Code Quality
|
|
247
|
-
- `/review:codebase` — Full codebase review (security, performance, standards)
|
|
248
|
-
- `/ck:brainstorm <description>` — Brainstorm technical approaches
|
|
249
|
-
|
|
250
|
-
### Integration
|
|
251
|
-
- `/integrate:polar` — Polar API integration
|
|
252
|
-
- `/integrate:sepay` — SePay payment integration
|
|
253
|
-
- `/integrate <service>` — Generic integration
|
|
254
|
-
|
|
255
|
-
### Marketing-Specific
|
|
256
|
-
- `/plan` — Campaign planning
|
|
257
|
-
- `/content/good` — Landing page generation
|
|
258
|
-
- `/content/cro` — CRO-optimized copy
|
|
259
|
-
- `/seo:audit` — SEO audit
|
|
260
|
-
- `/seo:keywords` — Keyword research and competitor analysis
|
|
261
|
-
- `/campaign:email` — Email campaigns via SendGrid/Resend
|
|
262
|
-
|
|
263
|
-
### Context Management
|
|
264
|
-
- `/clear` — Context window reset
|
|
265
|
-
|
|
266
|
-
**Total: 76+ engineer commands + 119 marketing commands = ~195 total**
|
|
267
|
-
|
|
268
|
-
---
|
|
269
|
-
|
|
270
|
-
## Key Workflow: /bootstrap (Detailed)
|
|
271
|
-
|
|
272
|
-
```
|
|
273
|
-
/bootstrap "build a REST API with auth"
|
|
274
|
-
→ Q&A: app type (REST/Web/Mobile/CLI), tech stack, DB, auth method
|
|
275
|
-
→ Phase 1: Researcher agents find best practices, libraries, security considerations
|
|
276
|
-
→ Phase 2: Planner agents create architecture, file structure, implementation steps, test strategy
|
|
277
|
-
→ Phase 3: Create project structure
|
|
278
|
-
→ Phase 4: Implement code (auth, CRUD, validation, rate limiting)
|
|
279
|
-
→ Phase 5: Generate tests (87% coverage target)
|
|
280
|
-
→ Phase 6: Generate docs (Swagger, README, architecture)
|
|
281
|
-
→ Total: 5-8 minutes, fully autonomous
|
|
282
|
-
```
|
|
283
|
-
|
|
284
|
-
Autonomous mode: `/bootstrap:auto [detailed description]` — skips Q&A, requires detailed input.
|
|
285
|
-
|
|
286
|
-
Output structure:
|
|
287
|
-
```
|
|
288
|
-
project/
|
|
289
|
-
├── .claude/ # Custom commands, agent definitions, workflows
|
|
290
|
-
├── src/ # Routes, models, middleware, utilities, entry point
|
|
291
|
-
├── tests/ # Unit, integration, E2E
|
|
292
|
-
└── docs/ # API docs, code standards, system architecture, codebase summary
|
|
293
|
-
```
|
|
294
|
-
|
|
295
|
-
---
|
|
296
|
-
|
|
297
|
-
## CCS (Claude Code Switch) — Multi-Account Tool
|
|
298
|
-
|
|
299
|
-
- **Purpose**: Switch between multiple Claude accounts + AI models instantly
|
|
300
|
-
- **Auth**: Browser-based OAuth (30 seconds, authenticate once)
|
|
301
|
-
- **Profiles**: Each profile has own todos, sessions, logs (true isolation)
|
|
302
|
-
- **Models**: Claude, Gemini 2.5 Pro, GPT-4o, o1, Antigravity via OpenRouter (300+ models)
|
|
303
|
-
- **Cost savings**: $500-1000/month claimed — GLM handles 70% of tasks at 80% lower cost
|
|
304
|
-
- **Dashboard**: React 19 real-time UI for profile management
|
|
305
|
-
- **Website**: ccs.kaitran.ca
|
|
306
|
-
- **Architecture**: v3.0 login-per-profile, CLIProxyAPI OAuth proxy
|
|
307
|
-
|
|
308
|
-
---
|
|
309
|
-
|
|
310
|
-
## Architecture Deep Dive
|
|
311
|
-
|
|
312
|
-
### Three Interconnected Systems
|
|
313
|
-
1. **Agents** — Specialized AI assistants with defined roles
|
|
314
|
-
2. **Commands/Skills** — Slash commands that invoke agents + knowledge modules
|
|
315
|
-
3. **Workflows** — Coordination patterns ensuring agents work cohesively
|
|
316
|
-
|
|
317
|
-
### Skill Mechanism
|
|
318
|
-
- Files in `.claude/skills/skill-name/SKILL.md` (< 100 lines, imperative form)
|
|
319
|
-
- Auto-activated via codebase detection (e.g., `next.config.js` → Next.js skill)
|
|
320
|
-
- Progressive disclosure: core SKILL.md + `/scripts/`, `/references/`, `/assets/`
|
|
321
|
-
- Distributable as ZIP packages
|
|
322
|
-
|
|
323
|
-
### Agent Communication
|
|
324
|
-
- Shared files for context passing (plans, code, test results)
|
|
325
|
-
- Handoff protocols between agents
|
|
326
|
-
- Real-time progress tracking visible to users
|
|
327
|
-
- Sequential, Parallel, or Hybrid orchestration
|
|
328
|
-
|
|
329
|
-
### Workflow Example: `/ck:cook "add auth with Better Auth"`
|
|
330
|
-
1. System detects Better Auth skill → injects context
|
|
331
|
-
2. Planner agent generates plan referencing skill patterns
|
|
332
|
-
3. Developer agent writes code following skill guidelines
|
|
333
|
-
4. Tester agent creates tests from skill examples
|
|
334
|
-
5. Results consolidated for user
|
|
335
|
-
|
|
336
|
-
---
|
|
337
|
-
|
|
338
|
-
## User Reviews & Testimonials
|
|
339
|
-
|
|
340
|
-
- "Worth the $30/month, big time!" (pricing discrepancy — possibly old pricing or subscription model)
|
|
341
|
-
- "It fixed all the CodeRabbit issues it found" — code review automation
|
|
342
|
-
- "The /plan and /cook features are very impressive"
|
|
343
|
-
- "Project alignment achieved within 1 session"
|
|
344
|
-
- "Completed a feature with just a single prompt"
|
|
345
|
-
- "Productivity doubled from 8 to 16 hours"
|
|
346
|
-
- Users praise stability improvements over raw Claude Code
|
|
347
|
-
- 4,000+ users across 109 countries
|
|
348
|
-
|
|
349
|
-
## Rune vs ClaudeKit
|
|
350
|
-
|
|
351
|
-
| Dimension | ClaudeKit | Rune |
|
|
352
|
-
|-----------|-----------|------|
|
|
353
|
-
| Install | Copy files per project | Global plugin |
|
|
354
|
-
| Pricing | $99-149 one-time | Free (MIT) |
|
|
355
|
-
| Automation | Fully autonomous (skip-permissions) | HARD-GATEs, user approves plan |
|
|
356
|
-
| Philosophy | Hands-off, AI does everything | Developer stays in the loop |
|
|
357
|
-
| Safety | Low (skips all permissions) | High (sentinel, gates, reviews) |
|
|
358
|
-
| Mesh | No documented skill connections | 160+ bidirectional connections |
|
|
359
|
-
| Cross-session | Not documented | .rune/ persistence |
|
|
360
|
-
| Security | Not documented | sentinel, sast, integrity-check |
|
|
361
|
-
| Skills count | 108+ skills, 95+ shortcuts, 45+ agents | 49 core + 12 L4 packs (free) + Pro packs (planned) |
|
|
362
|
-
|
|
363
|
-
## Key Takeaways
|
|
364
|
-
|
|
365
|
-
1. **Market validates demand** — people pay $99-149 for Claude Code productivity tools
|
|
366
|
-
2. **Autonomous execution sells** — "describe and get result" is the primary value prop
|
|
367
|
-
3. **No marketplace payment needed** — Stripe + private GitHub repo is the pattern
|
|
368
|
-
4. **Project-level > plugin-level for some use cases** — copying .claude/ gives full control
|
|
369
|
-
5. **`--dangerously-skip-permissions` is the enabler** — without it, autonomous workflows aren't possible
|
|
370
|
-
6. **Marketing Kit is unique** — no equivalent in Rune (and shouldn't be per VISION.md anti-goals)
|
|
371
|
-
|
|
372
|
-
## What Rune Should NOT Copy
|
|
373
|
-
|
|
374
|
-
- Skip-permissions approach — contradicts Rune's safety philosophy
|
|
375
|
-
- Per-project file copying — Rune's plugin model is cleaner
|
|
376
|
-
- Quantity-first approach (108+ skills) — Rune optimizes for connections, not count
|
|
377
|
-
- ~~Marketing/non-dev skills~~ — **REVISED**: Rune Pro will cover business departments as paid packs (separate repo)
|
|
378
|
-
|
|
379
|
-
## Competitive Positioning (Updated 2025-03-10)
|
|
380
|
-
|
|
381
|
-
### Numbers comparison
|
|
382
|
-
|
|
383
|
-
| Metric | ClaudeKit | Rune Free | Rune Free + Pro (planned) |
|
|
384
|
-
|--------|-----------|-----------|---------------------------|
|
|
385
|
-
| Skills | 108+ | 49 core | 49 + ~54 pro sub-skills |
|
|
386
|
-
| Shortcuts/Commands | 95+ | ~20 | ~65 (with pro workflows) |
|
|
387
|
-
| Agents | 45+ | 21 (L3 utilities) | ~30 |
|
|
388
|
-
| L4 Packs | N/A | 12 | 12 free + 9 pro |
|
|
389
|
-
| Price | $99-149 | FREE | $29-49/mo or $199 lifetime |
|
|
390
|
-
| Mesh connections | Not documented | 170+ | 200+ (pro adds cross-domain) |
|
|
391
|
-
| Platforms | Claude Code only | 5 platforms | 5 platforms |
|
|
392
|
-
| Safety | Skip-permissions | HARD-GATEs + sentinel | HARD-GATEs + sentinel |
|
|
393
|
-
|
|
394
|
-
### Rune's differentiation
|
|
395
|
-
|
|
396
|
-
1. **Free core with deep mesh** — ClaudeKit charges $99 for what Rune gives free
|
|
397
|
-
2. **Multi-platform** — ClaudeKit is Claude Code only. Rune works on Cursor, Windsurf, Antigravity
|
|
398
|
-
3. **Safety-first** — ClaudeKit requires `--dangerously-skip-permissions`. Rune uses HARD-GATEs
|
|
399
|
-
4. **Mesh architecture** — 170+ connections vs flat skill list. Skills compose, not just coexist
|
|
400
|
-
5. **Pro = business expansion** — ClaudeKit's Marketing Kit = $99 for 28 agents. Rune Pro = $29-49/mo for 9 packs across all departments
|
|
401
|
-
|
|
402
|
-
### Where ClaudeKit wins
|
|
403
|
-
|
|
404
|
-
1. **Autonomous execution** — `/bootstrap` generates full project in 5-8 min without user interaction
|
|
405
|
-
2. **Quantity perception** — "108+ skills" sounds bigger than "49 skills" even if Rune's are deeper
|
|
406
|
-
3. **Established market** — already has paying customers, proven demand
|
|
407
|
-
4. **CCS multi-account** — account switching between providers (unique feature)
|
|
408
|
-
|
|
409
|
-
## What Rune Could Learn (for other projects)
|
|
410
|
-
|
|
411
|
-
- Autonomous `/bootstrap` workflow — powerful for greenfield projects
|
|
412
|
-
- Interactive config before execution — better UX than "approve each phase"
|
|
413
|
-
- Agent Teams orchestration — similar to Rune's `team` but more hands-off
|
|
414
|
-
- One-command project generation — high perceived value
|
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
# VoltAgent/awesome-claude-code-subagents Analysis
|
|
2
|
-
|
|
3
|
-
> Reference document. Not part of Rune's public docs.
|
|
4
|
-
> Date: 2026-03-11 | Source: https://github.com/VoltAgent/awesome-claude-code-subagents
|
|
5
|
-
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
## Overview
|
|
9
|
-
|
|
10
|
-
- **Stars**: 13,285 | **Forks**: 1,453
|
|
11
|
-
- **Total agents**: 131 (.md files) across 10 categories
|
|
12
|
-
- **License**: MIT
|
|
13
|
-
- **Format**: Claude Code native subagent .md with YAML frontmatter
|
|
14
|
-
- **Distribution**: Plugin marketplace, manual install, installer script, meta agent-installer
|
|
15
|
-
|
|
16
|
-
## Agent File Structure
|
|
17
|
-
|
|
18
|
-
```yaml
|
|
19
|
-
---
|
|
20
|
-
name: kebab-case-name
|
|
21
|
-
description: "When to invoke this agent"
|
|
22
|
-
tools: Read, Write, Edit, Bash, Glob, Grep
|
|
23
|
-
model: sonnet | opus | haiku | inherit
|
|
24
|
-
---
|
|
25
|
-
|
|
26
|
-
You are a senior [role] with expertise in [domains]...
|
|
27
|
-
|
|
28
|
-
When invoked:
|
|
29
|
-
1. Query context manager for [X]
|
|
30
|
-
2. Review [Y]
|
|
31
|
-
3. Analyze [Z]
|
|
32
|
-
4. Implement [W]
|
|
33
|
-
|
|
34
|
-
## Communication Protocol
|
|
35
|
-
### [Context] Assessment
|
|
36
|
-
JSON-formatted context request
|
|
37
|
-
|
|
38
|
-
## Development Workflow
|
|
39
|
-
### 1. Analysis Phase
|
|
40
|
-
### 2. Implementation Phase (with JSON progress tracking)
|
|
41
|
-
### 3. Excellence Phase (delivery notification)
|
|
42
|
-
|
|
43
|
-
Integration with other agents:
|
|
44
|
-
- Collaborate with X on Y
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
### Key Fields
|
|
48
|
-
|
|
49
|
-
| Field | Purpose | Values |
|
|
50
|
-
|-------|---------|--------|
|
|
51
|
-
| `name` | Agent identifier | kebab-case |
|
|
52
|
-
| `description` | Auto-invocation trigger | Natural language |
|
|
53
|
-
| `tools` | Permission scope | Comma-separated Claude Code tools |
|
|
54
|
-
| `model` | Model routing | opus, sonnet, haiku, inherit |
|
|
55
|
-
|
|
56
|
-
### Tool Assignment Philosophy
|
|
57
|
-
|
|
58
|
-
| Role Type | Tools | Mode |
|
|
59
|
-
|-----------|-------|------|
|
|
60
|
-
| Read-only (reviewers, auditors) | Read, Grep, Glob | Read-only |
|
|
61
|
-
| Research (analysts) | Read, Grep, Glob, WebFetch, WebSearch | Read-only |
|
|
62
|
-
| Code writers (developers) | Read, Write, Edit, Bash, Glob, Grep | Read-write |
|
|
63
|
-
| Documentation | Read, Write, Edit, Glob, Grep, WebFetch, WebSearch | Read-write |
|
|
64
|
-
|
|
65
|
-
### Model Distribution
|
|
66
|
-
|
|
67
|
-
| Model | Usage | ~% |
|
|
68
|
-
|-------|-------|-----|
|
|
69
|
-
| sonnet | Everyday coding, debugging, refactoring | 70% |
|
|
70
|
-
| opus | Deep reasoning, architecture, security, finance | 20% |
|
|
71
|
-
| haiku | Quick tasks, docs, search, dependency checks | 10% |
|
|
72
|
-
|
|
73
|
-
---
|
|
74
|
-
|
|
75
|
-
## Full Agent Inventory (131 agents)
|
|
76
|
-
|
|
77
|
-
### 01: Core Development (10)
|
|
78
|
-
api-designer, backend-developer, electron-pro, frontend-developer, fullstack-developer, graphql-architect, microservices-architect (opus), mobile-developer, ui-designer, websocket-engineer
|
|
79
|
-
|
|
80
|
-
### 02: Language Specialists (26)
|
|
81
|
-
angular-architect, cpp-pro, csharp-developer, django-developer, dotnet-core-expert, dotnet-framework-4.8-expert, elixir-expert, flutter-expert, golang-pro, java-architect (opus), javascript-pro, kotlin-specialist, laravel-specialist, nextjs-developer, php-pro, powershell-5.1-expert, powershell-7-expert, python-pro, rails-expert, react-specialist, rust-engineer, spring-boot-engineer, sql-pro, swift-expert, typescript-pro, vue-expert
|
|
82
|
-
|
|
83
|
-
### 03: Infrastructure (16)
|
|
84
|
-
azure-infra-engineer, cloud-architect (opus), database-administrator, deployment-engineer, devops-engineer, devops-incident-responder, docker-expert, incident-responder, kubernetes-specialist, network-engineer, platform-engineer, security-engineer (opus), sre-engineer, terraform-engineer, terragrunt-expert, windows-infra-admin
|
|
85
|
-
|
|
86
|
-
### 04: Quality & Security (14)
|
|
87
|
-
accessibility-tester, ad-security-reviewer (opus), architect-reviewer (opus), chaos-engineer, code-reviewer (opus), compliance-auditor (opus), debugger, error-detective, penetration-tester (opus), performance-engineer, powershell-security-hardening, qa-expert, security-auditor (opus), test-automator
|
|
88
|
-
|
|
89
|
-
### 05: Data & AI (12)
|
|
90
|
-
ai-engineer (opus), data-analyst, data-engineer, data-scientist, database-optimizer, llm-architect (opus), machine-learning-engineer, ml-engineer, mlops-engineer, nlp-engineer, postgres-pro, prompt-engineer
|
|
91
|
-
|
|
92
|
-
### 06: Developer Experience (13)
|
|
93
|
-
build-engineer (haiku), cli-developer, dependency-manager (haiku), documentation-engineer (haiku), dx-optimizer, git-workflow-manager, legacy-modernizer, mcp-developer, powershell-module-architect, powershell-ui-architect, refactoring-specialist, slack-expert, tooling-engineer
|
|
94
|
-
|
|
95
|
-
### 07: Specialized Domains (12)
|
|
96
|
-
api-documenter (haiku), blockchain-developer, embedded-systems, fintech-engineer (opus), game-developer, iot-engineer, m365-admin, mobile-app-developer, payment-integration, quant-analyst (opus), risk-manager, seo-specialist (haiku)
|
|
97
|
-
|
|
98
|
-
### 08: Business & Product (11)
|
|
99
|
-
business-analyst, content-marketer (haiku), customer-success-manager (haiku), legal-advisor, product-manager (haiku), project-manager (haiku), sales-engineer (haiku), scrum-master (haiku), technical-writer (haiku), ux-researcher, wordpress-master
|
|
100
|
-
|
|
101
|
-
### 09: Meta & Orchestration (10)
|
|
102
|
-
agent-installer (haiku), agent-organizer, context-manager, error-coordinator, it-ops-orchestrator, knowledge-synthesizer, multi-agent-coordinator (opus), performance-monitor, task-distributor, workflow-orchestrator
|
|
103
|
-
|
|
104
|
-
### 10: Research & Analysis (7)
|
|
105
|
-
competitive-analyst (haiku), data-researcher (haiku), market-researcher (haiku), research-analyst (haiku), scientific-literature-researcher (haiku), search-specialist (haiku), trend-analyst (haiku)
|
|
106
|
-
|
|
107
|
-
---
|
|
108
|
-
|
|
109
|
-
## Quality Assessment
|
|
110
|
-
|
|
111
|
-
### Strengths
|
|
112
|
-
- Clean, consistent template across all 131 agents
|
|
113
|
-
- Tool permission separation (read-only vs write)
|
|
114
|
-
- Model routing per agent (haiku/sonnet/opus/inherit)
|
|
115
|
-
- Good distribution UX (installer, catalog search)
|
|
116
|
-
- Broad domain coverage
|
|
117
|
-
|
|
118
|
-
### Weaknesses
|
|
119
|
-
- **No decision logic** — agents are topic outlines, not workflows
|
|
120
|
-
- **No inter-agent connections** — "Collaborate with X" is passive suggestion, not enforced
|
|
121
|
-
- **Zero personality** — all agents use identical template/voice
|
|
122
|
-
- **Duplicate agents** — ml-engineer vs machine-learning-engineer, mobile-developer vs mobile-app-developer
|
|
123
|
-
- **Fake example metrics** in templates (234K messages/min, $4.2M revenue)
|
|
124
|
-
- **No context management infrastructure** — relies on native Claude Code only
|
|
125
|
-
- **No escalation chains** — if agent fails, no fallback routing
|
|
126
|
-
- **Claude Code only** — no multi-platform
|
|
127
|
-
|
|
128
|
-
---
|
|
129
|
-
|
|
130
|
-
## Rune vs VoltAgent
|
|
131
|
-
|
|
132
|
-
| Dimension | VoltAgent (131) | Rune (55 + 72 in L4 = ~127) |
|
|
133
|
-
|-----------|----------------|------------------------------|
|
|
134
|
-
| Architecture | Flat catalog, 10 categories | 5-layer mesh, enforced delegation |
|
|
135
|
-
| Inter-agent connections | Passive suggestions | 200+ enforced + trade matrix |
|
|
136
|
-
| Routing | Per-agent model field | L0 skill-router + adaptive overrides |
|
|
137
|
-
| Decision logic | None (topic outlines) | Phase-aware, escalation chains, gates |
|
|
138
|
-
| Context management | Native Claude Code only | context-engine, session-bridge, worktree |
|
|
139
|
-
| Metrics | None | H3 metrics-collector, analytics |
|
|
140
|
-
| Language coverage | 26 language agents | 0 (language-agnostic by design) |
|
|
141
|
-
| Infrastructure depth | 16 agents | @rune/devops (6 skills) |
|
|
142
|
-
| Business coverage | 11 agents | ba + marketing + @rune-pro/product |
|
|
143
|
-
| Distribution | Plugin + installer | Plugin + 5-platform compiler |
|
|
144
|
-
| Multi-platform | Claude Code only | Claude Code, Cursor, Windsurf, Antigravity, Generic |
|
|
145
|
-
| Quality per agent | Shallow (checklists) | Deep (decision trees, escalations) |
|
|
146
|
-
|
|
147
|
-
---
|
|
148
|
-
|
|
149
|
-
## Gaps to Fill in Rune
|
|
150
|
-
|
|
151
|
-
### High Value (should adopt)
|
|
152
|
-
|
|
153
|
-
| What | From VoltAgent | Rune Action |
|
|
154
|
-
|------|---------------|-------------|
|
|
155
|
-
| Tool permission field | `tools:` in frontmatter | Add to SKILL.md format |
|
|
156
|
-
| Model inherit option | `model: inherit` | Add to skill-router |
|
|
157
|
-
| Agent catalog commands | /subagent-catalog:search/list | `/rune agents list/search` |
|
|
158
|
-
| Chaos/resilience testing | chaos-engineer | Add to @rune/devops |
|
|
159
|
-
| Quant finance | quant-analyst (opus) | Add to @rune/trading |
|
|
160
|
-
| Compliance auditing | compliance-auditor (opus) | @rune-pro/legal pack |
|
|
161
|
-
|
|
162
|
-
### Medium Value (consider)
|
|
163
|
-
|
|
164
|
-
| What | From VoltAgent | Rune Action |
|
|
165
|
-
|------|---------------|-------------|
|
|
166
|
-
| LLM architecture | llm-architect, prompt-engineer | Enrich @rune/ai-ml |
|
|
167
|
-
| Legal/contracts | legal-advisor | @rune-pro/legal pack |
|
|
168
|
-
| DX optimization | dx-optimizer | Could enhance onboard or audit |
|
|
169
|
-
| Self-installer | agent-installer meta-agent | Nice DX for community packs |
|
|
170
|
-
|
|
171
|
-
### Skip (not worth copying)
|
|
172
|
-
|
|
173
|
-
| What | Why Skip |
|
|
174
|
-
|------|----------|
|
|
175
|
-
| 26 language specialists | Claude knows languages natively — marginal value, major bloat |
|
|
176
|
-
| Duplicate agents | Quality issue — ml-engineer vs machine-learning-engineer |
|
|
177
|
-
| Shallow checklist format | Rune's gate-driven approach is fundamentally better |
|
|
178
|
-
| Fake progress metrics | Misleading, adds no real value |
|
|
179
|
-
|
|
180
|
-
---
|
|
181
|
-
|
|
182
|
-
## Subagent Benefits (confirmed by analysis)
|
|
183
|
-
|
|
184
|
-
1. **Context isolation** — each agent runs in own context window, main agent stays small
|
|
185
|
-
2. **Tool permissions** — read-only agents (scanner, reviewer) can't accidentally write files
|
|
186
|
-
3. **Model routing** — haiku for search ($0.001), sonnet for code ($0.01), opus for architecture ($0.05)
|
|
187
|
-
4. **Specialization** — focused instructions = better output than "do everything" agents
|
|
188
|
-
5. **Parallel execution** — independent agents can run simultaneously
|
|
189
|
-
6. **Token efficiency** — load 1 agent file (~50 lines) vs entire skill mesh (~15,000 lines)
|