From craft-skills
Executes full AI dev pipeline with Claude (architect/UI/integration), Codex CLI (data/bulk fixes), and LM Studio (review/exploration) for high-stakes complex features.
How this skill is triggered — by the user, by Claude, or both
Slash command
/craft-skills:craft-squadThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Full design-first pipeline with every AI component active. Combines `/craft-duo` (Codex for data layer) with `/craft-local` (LM Studio for review/exploration). Optionally enables a skeptical adversarial review from Codex via `codex-plugin-cc` if installed.
Full design-first pipeline with every AI component active. Combines /craft-duo (Codex for data layer) with /craft-local (LM Studio for review/exploration). Optionally enables a skeptical adversarial review from Codex via codex-plugin-cc if installed.
Profile: claude+codex+llm
Pipeline: Brainstorm → Plan → Develop (hybrid executors + LLM reviews + optional adversarial review) → Browser Test → Report
npm i -g @openai/codexcodex login or OPENAI_API_KEY${LLM_URL:-http://127.0.0.1:1234}AGENTS.md at project root (auto-generated)codex-plugin-cc installed in Claude Code — enables adversarial review bonusWrites the profile marker, then delegates to the canonical craft pipeline.
echo -n "claude+codex+llm" > .craft-profile
Read skills/craft/SKILL.md and follow every phase. All profile gates are satisfied: LLM steps run, Codex routing activates, and the develop skill checks for codex-plugin-cc to optionally run an adversarial review.
The user input is: $ARGUMENTS
codex-plugin-cc is installed, develop Step 3.5 invokes /codex:adversarial-review on the diff as a skeptical second-opinion reviewcodex-plugin-cc is NOT installed, the adversarial review step is silently skipped — no failureUse /craft-squad when:
For most day-to-day work, /craft-duo (no LLM) or /craft (no external deps) are usually enough.
npx claudepluginhub alexiolan/craft-skills --plugin craft-skillsRuns 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.
Delegates implementation and review tasks to external AI CLI tools (Codex, Gemini) with cross-model adversarial review for cost savings and improved accuracy.
Delegates complex code generation, refactoring, architectural analysis, and review tasks to OpenAI's Codex CLI (GPT-5.3-codex models) via safe workflows with sandboxing and approvals. Activates on explicit triggers like 'use codex' or 'codex exec'.