Installation
Requirements
- Codex with skill support
- Python available in your environment
- GitHub access
NPM all-in-one (recommended)
bash
npx @codex-workflow/cwCore-only:
bash
npx @codex-workflow/cw --core-onlyDiagnostics:
bash
npx @codex-workflow/cw doctorWindows fallback:
bash
npx @codex-workflow/cw --python-exec pythonAll-in-one via direct Python (alternative)
Install the codex-workflows core plus all official packs in one command:
bash
python ~/.codex/skills/.system/skill-installer/scripts/install-skill-from-github.py \
--repo helberfmelo/codex-workflows \
--path \
skills/codex-workflows \
skills/codex-backend-pack \
skills/codex-frontend-pack \
skills/codex-security-pack \
skills/codex-qa-pack \
skills/codex-node-validation-pack \
skills/codex-python-validation-pack \
skills/codex-rust-validation-packPowerShell:
powershell
python "$env:USERPROFILE\.codex\skills\.system\skill-installer\scripts\install-skill-from-github.py" `
--repo "helberfmelo/codex-workflows" `
--path `
"skills/codex-workflows" `
"skills/codex-backend-pack" `
"skills/codex-frontend-pack" `
"skills/codex-security-pack" `
"skills/codex-qa-pack" `
"skills/codex-node-validation-pack" `
"skills/codex-python-validation-pack" `
"skills/codex-rust-validation-pack"Local helper script (all-in-one)
Inside this repository:
bash
python scripts/install_all_in_one.pyDry run:
bash
python scripts/install_all_in_one.py --dry-runSpecific tag/ref:
bash
python scripts/install_all_in_one.py --ref v1.1.0Unified CLI alternative:
bash
python scripts/codexwf.py installMinimal installation
Install only the core workflow skill:
bash
python ~/.codex/skills/.system/skill-installer/scripts/install-skill-from-github.py \
--repo helberfmelo/codex-workflows \
--path skills/codex-workflowsPost-install
- Restart VS Code/Codex.
- Activate with an explicit prompt:
cw /orchestrate <objective>cw /helpcw /examplesUse codex-workflows in /orchestrate and <objective>.
Optional local bootstrap via unified CLI:
bash
python scripts/codexwf.py init --project .Optional Composer channel (PHP users)
If your team prefers Composer scripts, use:
bash
composer codex:install-allThis wrapper calls the same official Python installer under the hood.