Batch 07 (Phase D) — Slash-Command Packs & CC Plugin Frameworks
Roster (10)
| slug | stars | distribution | cli_binary | local_ui | orchestration | multi_model | tier |
|---|---|---|---|---|---|---|---|
| claude-slash-commands-daniel | 10 | command-pack | no | no | none | no | A |
| claude-commands-oddball | 2 | command-pack | no | no | none | no | A |
| cccp-gendosu | 0 | claude-plugin | no | no | sequential | no | A |
| everything-claude-code | 194,119 | npm-package | yes (ecc) | yes (py dash) | parallel-fan-out | no | A |
| zcc | 17 | npm-package | yes (zcc) | no | sequential | no | A |
| zcf | 6,009 | npm-package | yes (zcf) | no | sequential | no | A |
| ccplugins-cruvinel | 2,705 | command-pack | no | no | sequential | no | A |
| 10x-tool-calls | 863 | bash-script-bundle | no | no | none | no | A |
| feiskyer-cc-settings | 1,525 | claude-plugin | no | yes (litellm) | parallel-fan-out | yes | A |
| richfrem-agent-plugins-skills | 3 | skill-pack | no | yes (matplotlib) | hierarchical | no | A |
Intra-batch patterns
This batch spans the full spectrum from 2-file quota tricks (10x-Tool-Calls) to 194K-star operator systems (ECC). All 10 target Claude Code or Claude Code-compatible IDEs. Seven of ten ship zero skills (only cccp-gendosu, feiskyer-cc-settings, and richfrem-agent-plugins-skills use SKILL.md format), confirming that slash-command packs dominate this archetype. Three ship dedicated CLI binaries (ECC, ZCC, ZCF) — all npm-published TypeScript — while the remaining seven are clone-and-copy or curl-install distributions. The anti-automation constraint of oddball (explicit no-commit/no-push policy) is a notable counterpoint to ECC's fully automated lifecycle. ZCF is the only framework that explicitly embeds an upstream seed (BMAD-METHOD), making it a distributor rather than an original framework.
Most interesting find
richfrem-agent-plugins-skills: The Karpathy Autoresearch Loop (mutate SKILL.md → evaluate.py KEEP/DISCARD → repeat) is the only framework in the entire batch that treats skill quality as a measurable, optimizable variable with empirical scoring and longitudinal tracking. The documented
convert-mermaidimprovement from 0.61 → 1.00 over 26 iterations is concrete evidence the pattern works. This is intellectually the most novel engineering contribution in the batch despite having only 3 stars.feiskyer-cc-settings: The only framework in the batch (and possibly in the entire corpus) that routes different Claude model tiers (Opus/Sonnet/GPT) through a LiteLLM proxy to GitHub Copilot, enabling multi-model operation without a direct Anthropic billing account. The Chinese-language deep-research skill with 8 parallel
claude -psubprocesses is also unique.
Items written as Tier C
None. All 10 frameworks had sufficient public material.
Cross-references discovered
- ZCF → BMAD-METHOD (seed): ZCF explicitly acknowledges and embeds the full BMAD-METHOD command set. Relationship: ZCF is a Zero-Config distributor for BMAD + provider config.
- feiskyer-cc-settings → ECC (this batch): feiskyer's settings appear structurally derived from ECC (same hooks.json structure, similar CLAUDE.md patterns). The multi-model overlay and LiteLLM config are feiskyer's additive layer.
- richfrem → spec-kitty: richfrem ships
spec-kitty-pluginas a bridge to the Spec-Kitty framework, treating it as a transitional architecture. - cccp-gendosu → no seed: the plugin marketplace distribution model (
.claude-plugin/plugin.json,/plugin install) is used by both gendosu and feiskyer — a Claude Code-native pattern not present in any of the 11 seeds. - ZCC vs ZCF: superficially similar names and both npm CLIs, but architecturally distinct — ZCC is the oh-my-zsh metaphor (modes/tickets), ZCF is BMAD + provider config. No derivation relationship.
- CCPlugins anti-attribution vs Oddball pro-attribution: these two repos have diametrically opposed policies on AI watermarking in commits. Interesting philosophical divergence within the batch.
Command count comparison
| Framework | Commands | Skills | Agents | Hooks |
|---|---|---|---|---|
| ECC | 76 | 246 | 61 | 7 events |
| danielrosehill | ~350 | 0 | 0 | 0 |
| ZCF | 47 | 0 | 7 | 1 |
| richfrem | unknown | 137+ | 52 | unknown |
| CCPlugins | 24 | 0 | 0 | 0 |
| feiskyer | 0 | 15 | 7 | 1 |
| cccp-gendosu | 4 | 3 | 2 | 0 |
| zcc | 3 | 0 | 1 | 5 |
| oddball | 13 | 0 | 0 | 0 |
| 10x-Tool-Calls | 0 | 0 | 0 | 0 |
Naming convention observations
- danielrosehill: kebab-case flat names after sync (
format-code,remove-comments) - oddball: noun-verb or verb-noun (
git-pr,pr-review,ci-check,sprint-monitor) - ZCF: namespaced with prefix (
bmad-agent-*,bmad-bmm-*,zcf-*) - ECC: action-object (
feature-dev,code-review,save-session,instinct-export) - CCPlugins: pure verbs (
review,commit,refactor,scaffold) - ZCC: noun commands (
mode,ticket,zcc) - feiskyer: domain-noun (
codex-skill,deep-research,github-fix-issue) - richfrem: os-prefixed system skills (
os-architect,os-eval-runner,os-improvement-loop)