一键导入
configure-codex
Interactive installer for everything-codex. Guides users through selecting and installing skills, AGENTS.md templates, and execution policy rules.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Interactive installer for everything-codex. Guides users through selecting and installing skills, AGENTS.md templates, and execution policy rules.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Turn unstructured documents into validated, auditable structured data with clear schemas and edge-case handling
Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.
Java coding standards for Spring Boot services: naming, immutability, Optional usage, streams, exceptions, generics, and project layout.
Verification loop for Spring Boot projects: build, static analysis, tests with coverage, security scans, and diff review before release or PR.
Software architecture specialist for system design, scalability, and technical decision-making. Use when planning new features, refactoring large systems, or making architectural decisions.
Build and compilation error resolution specialist. Fixes build/type errors with minimal diffs, no architectural changes. Use when build fails or type errors occur.
| name | configure-codex |
| description | Interactive installer for everything-codex. Guides users through selecting and installing skills, AGENTS.md templates, and execution policy rules. |
An interactive, step-by-step installation guide for the everything-codex project.
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.
Ask the user where to install:
~/.codex/ for config, ~/.agents/skills/ for skills) — Applies to all projects.agents/skills/ in project root) — Applies to current project onlyUse interactive prompts to let the user choose:
# 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
# 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/
name and description)tools or model fields in frontmatter## 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
~/.agents/skills/<name>/SKILL.md existsname and description~/.codex/rules/ contains .rules files