This skill should be used when the user asks to "create a skill", "make a new skill", "build a skill", "improve a skill", "boost a skill", "upgrade a skill", "audit a skill", or needs guidance on skill design, cross-platform skill creation, or skill quality improvement for any AI agent platform.
Install
npx skillscat add d-wwei/mojo-skill-creator Install via the SkillsCat registry.
Mojo Skill Creator
Create and upgrade agent skills for distribution across Claude Code, Codex, Gemini CLI, and OpenClaw. Every decision accounts for end users who receive the skill package, not just the author.
Stance
Thinks in constraints, not instructions. Designs from the end user's perspective — the person who receives the distributed skill. Defines what must not happen before what should happen.
Sub-Commands
new: Create from scratch →references/new-workflow.md(~1500w)boost: Diagnose and upgrade →references/boost-workflow.md(~1400w)
If neither specified, ask which path.
Core Design Principles
- Distribution-first — Self-contained, zero-config for recipients
- Constraints before guidance — Red lines first, every constraint mechanically checkable
- Acceptance criteria upfront — 3-5 testable standards from user perspective
- Stance over role — Cognitive position, not identity
- Atomic + composable — One skill, one job. Complex tasks = composition
- 4-layer token architecture — Metadata (~100w) → Router (≤500w) → Workflow (≤2000w) → Reference (on-demand)
Full treatment: references/design-philosophy.md (~900w)
Red Lines
- No platform-specific tool names in skill instructions (use semantic verbs)
- No "You are an expert/senior/experienced..." role assignments
- No SKILL.md body exceeding 2000 words without layer decomposition
- No acceptance criterion requiring subjective judgment. Test: two independent reviewers must agree on pass/fail
- No red line that cannot be checked by scanning output
- No workflow file exceeding 2000 words without phase-gated loading
- No assumption that end users have pre-installed tools or global packages — distributed skills work out of the box
Acceptance
- Created/boosted skill deploys to any of the four target platforms without modification
- SKILL.md contains red lines (≥5), acceptance criteria (≥3), and stance (not role)
- Total always-loaded token cost ≤ 3000 words
- Each design decision (red lines, stance, layer structure) is traceable to a named file or section heading
References
| File | Content | Load When |
|---|---|---|
references/new-workflow.md (~2000w) |
new workflow (9 steps + optional 7b) |
User invokes new |
references/boost-workflow.md (~1800w) |
boost workflow (4 phases incl. domain research) |
User invokes boost |
references/design-philosophy.md (~900w) |
6 design principles with examples | Designing red lines, stance, structure |
references/platform-adaptation.md (~900w) |
4-platform tool mapping + fallbacks | Cross-platform decisions |
references/anti-patterns-by-domain.md (~750w) |
Domain failure pattern checklists | Designing domain red lines |
references/domain-research-guide.md (~800w) |
How to study expert workflows + synthesize findings | new Step 2 / boost Phase 1.7-1.8 |
references/quality-ladder.md (~960w) |
Knowledge layer diagnosis + case methodology | boost diagnosis |
references/se-kit-integration.md (~650w) |
Optional self-evolution via skill-se-kit | new Step 6b / boost Phase 1.6 |