From craft-skills
Full design-first pipeline with all three AI agents: Claude (architect + UI + integration), Codex (data-layer + bulk fixes), and local LLM (LM Studio, for exploration + review). Power-user mode. Optionally runs Codex adversarial review if codex-plugin-cc is installed.
npx claudepluginhub alexiolan/craft-skills --plugin craft-skillsThis skill uses the workspace's default tool permissions.
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 Codex as a co-executor for data-layer tasks. Claude handles architecture and UI; Codex handles types, services, queries, schemas, enums, mappers, and bulk fixes. Use when you want cost relief via Codex without losing Claude's reasoning on UI and integration.
Orchestrates coding tasks in Claude Code via /do router with four-tier agents (skill to fleet), campaign persistence across sessions, parallel git worktrees, and 25 skills for autonomous campaigns.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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.