From craft-skills
Runs hybrid Claude+Codex design-first development pipeline: Claude handles UI/architecture/integration, Codex executes data-layer tasks (types/services/queries/schemas/enums/mappers) and bulk fixes for cost relief.
How this skill is triggered — by the user, by Claude, or both
Slash command
/craft-skills:craft-duoThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Full design-first pipeline. Claude does brainstorming, architect planning, UI implementation, and integration wiring. Codex handles data-layer tasks via `codex exec`.
Full design-first pipeline. Claude does brainstorming, architect planning, UI implementation, and integration wiring. Codex handles data-layer tasks via codex exec.
Profile: claude+codex
Pipeline: Brainstorm → Plan → Develop (hybrid executors) → Browser Test → Report (same phases as /craft)
npm i -g @openai/codexcodex login (ChatGPT auth) or set OPENAI_API_KEYAGENTS.md present at project root (auto-generated from CLAUDE.md by develop pre-flight if missing or stale)Does NOT require LM Studio.
This wrapper writes the profile marker, then delegates to the canonical craft pipeline. The develop skill reads .craft-profile and routes data-layer tasks to Codex instead of Claude sonnet agents.
echo -n "claude+codex" > .craft-profile
Read skills/craft/SKILL.md from this plugin and follow every phase exactly as written. Profile gating in the craft and develop skills routes the relevant tasks to Codex.
The user input is: $ARGUMENTS
Pass the input through as if the user had invoked /craft.
/craftdevelop Step 0 runs a Codex CLI pre-flight check — fails loud if Codex is missingdevelop Step 2 routes data-layer tasks (types, services, queries, schemas, enums, mappers) to Codexdevelop Step 2 also routes bulk lint/tsc fix sweeps to CodexTypical feature runs delegate ~30-40% of lines-of-code work to Codex, translating to roughly 15-20% overall cost relief per run. Varies significantly by feature shape: heavy data-layer features see more relief, UI-heavy features see less.
npx claudepluginhub alexiolan/craft-skills --plugin craft-skillsExecutes full AI dev pipeline with Claude (architect/UI/integration), Codex CLI (data/bulk fixes), and LM Studio (review/exploration) for high-stakes complex features.
Routes agent roles to optimal AI models: Claude for planning/orchestration, Codex for code writing, Gemini for design/UI. Triggers on /multi-ai-run or model routing requests.
Delegates code generation, test writing, refactoring, and bulk edits to Codex CLI for optimal latency and token efficiency. Use when implementing features or making batch code changes.