Configure Everything Codex
SkillAI & modelsInteractive installer for everything-codex. Guides users through selecting and installing skills, AGENTS.md templates, and execution policy rules.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Configure Everything Codex skill
What this skill tells your AI
The instructions your AI receives, as published by luohaothu/everything-codex in skills/configure-codex/SKILL.md and read by ahel’s review.
An interactive, step-by-step installation guide for the everything-codex project.
When to Activate
- User says "configure codex", "install everything-codex", or similar
- User wants to selectively install skills or rules
- User wants to verify or fix an existing installation
Step 0: Clone Repository
rm -rf /tmp/everything-codex
git clone https://github.com/anthropics/everything-codex.git /tmp/everything-codex
Set ECX_ROOT=/tmp/everything-codex as the source for all subsequent operations.
Step 1: Choose Installation Level
Ask the user where to install:
- User-level (
~/.codex/for config,~/.agents/skills/for skills) — Applies to all projects - Project-level (
.agents/skills/in project root) — Applies to current project only
Step 2: Select & Install Skills
Skill Categories
Use interactive prompts to let the user choose:
- Core Workflow — plan, code-review, tdd, security-review, verify, checkpoint
- Framework & Language — Django, Spring Boot, Go, Python, TypeScript patterns
- Database — PostgreSQL, ClickHouse, JPA/Hibernate
- Multi-Model — orchestrate, multi-plan, multi-execute, multi-workflow
- Learning — continuous-learning-v2, learn, evolve, instinct management
- All skills — Install everything
Execute Installation
# Skills install to ~/.agents/skills/ (user-level) or .agents/skills/ (project-level)
SKILLS_DIR="$HOME/.agents/skills" # or .agents/skills for project-level
for skill_dir in $ECX_ROOT/skills/*/; do
skill_name=$(basename "$skill_dir")
mkdir -p "$SKILLS_DIR/$skill_name"
cp -r "$skill_dir"* "$SKILLS_DIR/$skill_name/"
done
Step 3: Install AGENTS.md and Rules
# Root AGENTS.md
cp $ECX_ROOT/AGENTS.md ~/.codex/AGENTS.md
# Language-specific AGENTS.md templates
for lang in golang python typescript; do
mkdir -p ~/.codex/$lang
cp $ECX_ROOT/$lang/AGENTS.md ~/.codex/$lang/
done
# Execution policy rules
mkdir -p ~/.codex/rules
cp $ECX_ROOT/rules/*.rules ~/.codex/rules/
Step 4: Post-Installation Verification
- Verify all installed skill directories contain SKILL.md
- Check that SKILL.md files have proper frontmatter (
nameanddescription) - Verify no
toolsormodelfields in frontmatter - Report any issues found
Step 5: Installation Summary
## Installation Complete
### Skills Installed ([count])
Location: ~/.agents/skills/
### AGENTS.md Installed
- ~/.codex/AGENTS.md
- ~/.codex/golang/AGENTS.md
- ~/.codex/python/AGENTS.md
- ~/.codex/typescript/AGENTS.md
### Rules Installed
- ~/.codex/rules/*.rules
### Verification
- [count] skills validated
- [count] issues found
Clean up the cloned repository:
rm -rf /tmp/everything-codex
Troubleshooting
"Skills not being picked up"
- Verify
~/.agents/skills/<name>/SKILL.mdexists - Check that SKILL.md has YAML frontmatter with
nameanddescription
"Rules not working"
- Check
~/.codex/rules/contains.rulesfiles - Verify Starlark syntax is correct
- Restart Codex CLI after installing rules
Signals
- GitHub stars
- 24
- Forks
- 5
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
configure-codex- Source
- github.com/luohaothu/everything-codex