Skip to content

Latest commit

 

History

History
84 lines (56 loc) · 1.75 KB

File metadata and controls

84 lines (56 loc) · 1.75 KB

Installation Guide

Requirements

  • 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.

Install From Git

git clone https://github.com/Mekawey0/Agent_Do.git
cd Agent_Do

Windows:

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.

Install For Claude Code

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 -IncludeClaude

Install For Other Agents

Copy 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.

Verify

Run:

python scripts/validate_repository.py

In Codex, type:

/agent-do

You should see launcher entries such as /agent-do plan, /agent-do review, and /agent-do compact.

Update Existing Install

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