D-EPCT+R Workflow
Skills Claude Code pour un workflow de développement structuré — du brainstorm au déploiement.
An orchestrator-based workflow that guides you through the full development lifecycle across Claude Code, Codex, Gemini, OpenCode, and generic agents.
/discovery → /dev → /ship
Features
- Orchestrator pattern — the main thread keeps full context across all phases. Only mechanical work (code, tests, reviews, issue creation) is dispatched to parallel subagents.
- Three-command workflow —
/discovery for planning, /dev for implementation, /ship for delivery.
- Autonomous mode (RALPH) —
/auto-discovery, /auto-dev, /auto-loop run the same workflows without validation stops, with safety gates to prevent runaway execution.
- Multi-provider — one source of truth in
.claude/, mirrored into Codex, Gemini, OpenCode, and generic agent folders.
- Design audit loop —
/design-audit gates UI/design-system work with tokens, components, stories/docs, a11y, taste, Figma/code drift, AI governance, and optional Lyse evidence; /design-audit-squad runs the full 12-agent Lyse Design Squad.
- SEO/GEO audit workflow —
/seo-geo-audit audits technical SEO, content, SERP intent, authority, local SEO, llms.txt and AI visibility; /seo-geo-squad runs the full 11-agent Roso SEO Squad.
- Web navigation layer —
web-navigator lets agents browse, inspect, extract and source information from real sites using Playwright CLI, Browser/MCP or WebFetch fallbacks.
- 50+ skills — planning (PRD, architecture, stories), critical thinking (Rodin), design (UX, UI, Figma integration), development (code, tests, review, security, performance), audio/video (ElevenLabs, Remotion).
- 48 knowledge files — testing frameworks, workflow templates, brainstorming techniques, Supabase security.
- Multi-Mind debate — 6 AI agents (Claude, GPT, Gemini, DeepSeek, GLM, Kimi) validate PRDs and code through 5 iterative rounds.
- Obsidian LLM Wiki — optional second-brain memory that compounds across sessions. One-command bootstrap with
bash install.sh install all --with-wiki or the /wiki-bootstrap slash command. See the dedicated section below.
Installation
Global (everywhere)
curl -fsSL https://raw.githubusercontent.com/elsolal/Skillz-Claude-Codex-And-More/main/install.sh | bash -s -- install all
Installs into ~/.claude/, ~/.codex/, ~/.gemini/, ~/.config/opencode/, and ~/.agents/. Claude is the source of truth; the others mirror it.
Per-project
curl -fsSL https://raw.githubusercontent.com/elsolal/Skillz-Claude-Codex-And-More/main/install.sh | bash -s -- install .
Creates .claude/, .codex/, .gemini/, .opencode/, .agents/, and docs/ inside the current repository.
Update
curl -fsSL https://raw.githubusercontent.com/elsolal/Skillz-Claude-Codex-And-More/main/install.sh | bash -s -- update all
Your provider config is preserved. The installer only refreshes the managed workflow section and adds the qmd MCP entry if it is missing.
Install one provider at a time
Claude must be installed first since the other providers mirror it.
# Global
./install.sh install claude
./install.sh install codex # after Claude
./install.sh install gemini # after Claude
./install.sh install opencode # after Claude
./install.sh install agents # after Claude
# Per-project — picks the providers you want
./install.sh install . --providers claude
./install.sh install . --providers codex,gemini
./install.sh install . --providers opencode
| Provider | Installed into | What you get |
|---|
| Claude Code | ~/.claude/ | Full skills, all Claude slash commands, knowledge, templates |
| OpenAI Codex CLI | ~/.codex/ | Skill symlinks, Codex-native prompts, generated wiki source-command-* skills, generated AGENTS.md |
| Google Gemini CLI | ~/.gemini/ | Skill symlinks, Gemini-native commands, generated GEMINI.md |
| OpenCode | ~/.config/opencode/ | Skill symlinks, OpenCode-native commands, generated AGENTS.md |
| Generic agents | ~/.agents/ | Skill symlinks and generated AGENTS.md |
Update and uninstall
# Update
./install.sh update all
./install.sh update claude
./install.sh update codex
./install.sh update gemini
./install.sh update opencode
./install.sh update agents
# Uninstall (keeps user-added content)
./install.sh uninstall all
./install.sh uninstall claude
./install.sh uninstall codex
./install.sh uninstall gemini
./install.sh uninstall opencode
./install.sh uninstall agents
# Per-project update
./install.sh update . --providers all
./install.sh update . --providers codex,gemini
# Help
./install.sh help