- Codex with local skills support.
- Python 3.10 or newer for cross-platform helper scripts.
- PowerShell only if you want to use the Windows helper scripts.
git clone https://github.com/Mekawey0/Agent_Do.git
cd Agent_DoWindows:
Copy-Item -Recurse .\skills\* "$env:USERPROFILE\.codex\skills\"macOS/Linux:
mkdir -p "$HOME/.codex/skills"
cp -R skills/* "$HOME/.codex/skills/"Restart Codex after copying the skills.
Claude Code loads skills from ~/.claude/skills. Only the main skill is needed (the agent-do-* launchers are a Codex UI convenience):
mkdir -p "$HOME/.claude/skills"
cp -R skills/agent-workflow-coordinator "$HOME/.claude/skills/"Copy-Item -Recurse .\skills\agent-workflow-coordinator "$env:USERPROFILE\.claude\skills\"On Windows you can mirror into both Codex and Claude at once:
powershell -ExecutionPolicy Bypass -File tools\sync_skill.ps1 -IncludeClaudeCopy skills/agent-workflow-coordinator into whatever directory your agent loads skills from. The workflow is driven entirely by SKILL.md and the Markdown protocols, so it does not depend on any product-specific feature.
Run:
python scripts/validate_repository.pyIn Codex, type:
/agent-do
You should see launcher entries such as /agent-do plan, /agent-do review, and /agent-do compact.
Pull the latest repository changes and copy skills/ again:
git pull
cp -R skills/* "$HOME/.codex/skills/"Windows:
git pull
Copy-Item -Recurse .\skills\* "$env:USERPROFILE\.codex\skills\" -Force