원클릭으로
automil
Run the autonomous MIL experiment loop. Requires setup first (use /automil-setup).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run the autonomous MIL experiment loop. Requires setup first (use /automil-setup).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Set up autoMIL in an existing project. Scopes codebase, configures experiment framework, validates setup.
Smart granular commit workflow that groups changes into separate, logically-grouped commits by feature, functionality, or type. Never commits everything at once. No co-author line. Uses Conventional Commits. Use when user says commit, /commit, or commit my changes, or asks to save/checkpoint work, or at the end of a task when changes need to be committed.
Set up autoMIL in an existing project. Scopes codebase, configures experiment framework, validates setup.
Run the autonomous MIL experiment loop. Requires setup first (use /automil-setup).
Run the autonomous MIL experiment loop. Requires setup first (use /automil-setup).
| name | automil |
| description | Run the autonomous MIL experiment loop. Requires setup first (use /automil-setup). |
Run the autonomous experiment loop. Setup must be completed first via
/automil-setup.
cd to the directory containing automil/config.yamluv run automil check (must pass with no issues)tmux new -s orchestrator
uv run automil orchestrator start
# Ctrl-b d to detach
--dangerously-skip-permissions
so it can run autonomously without prompts:
tmux new -s automil
Codex --dangerously-skip-permissions
# Then type: /automil
uv run automil start-loopAll file paths in files.editable, uv run automil submit --files, and run.command
are relative to the git repo root, not to where automil/ lives. The
orchestrator creates worktrees from the git root, so overlay paths must match.
automil/config.yaml, automil/graph.json, automil/learnings.mdfiles.editableuv run automil reconcile to sync graph stateThen follow Phase 2 in automil/program.md:
LOOP FOREVER:
uv run automil reconcileuv run automil rank to get top proposals. If none, brainstorm new ones.automil/learnings.md to avoid repeating failures.uv run automil submit --node <id> --desc "..." --files <changed files>
c. Restore working tree: git checkout -- <files>automil/orchestrator/completed/uv run automil reconcile to update graphautomil/learnings.mduv run automil propose.automil_active existsuv run automil submit for every experiment (not manual runs)uv run automil rank to pick experiments (not random)automil/learnings.md after every resultUser runs uv run automil stop-loop to allow the agent to exit.