AI & Agentslow risk

metagit-aos

Compose ACL, task graph, scheduler, merge, and related coordination subsystems via metagit aos|coord status|doctor|next. Use when an operator or orchestrator needs one snapshot of coordination health or the next work envelope without launching models.

metagit-ai/metagit-cli·src/metagit/data/skills/metagit-aos/SKILL.md
85/ 100品質分

匯入這個 Skill

選擇你的 coding agent,複製專案級或個人級安裝指令。

固定至平台收錄的 commit
匯入目前專案.agents/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a codex -y
匯入個人環境~/.agents/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a codex -g -y
手動放置目錄.agents/skills/metagit-aosOfficial docs ↗
匯入目前專案.claude/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a claude-code -y
匯入個人環境~/.claude/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a claude-code -g -y
手動放置目錄.claude/skills/metagit-aosOfficial docs ↗
匯入目前專案.agents/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a github-copilot -y
匯入個人環境~/.copilot/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a github-copilot -g -y
手動放置目錄.agents/skills/metagit-aosOfficial docs ↗
匯入目前專案.agents/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a cursor -y
匯入個人環境~/.cursor/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a cursor -g -y
手動放置目錄.agents/skills/metagit-aosOfficial docs ↗
匯入目前專案.agents/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a gemini-cli -y
匯入個人環境~/.gemini/skills/metagit-aos
npx skills add https://github.com/metagit-ai/metagit-cli/tree/482dfb3b7a407ca5e541657a6fcc9af619818243/src/metagit/data/skills/metagit-aos -a gemini-cli -g -y
Native Gemini CLIgemini skills install https://github.com/metagit-ai/metagit-cli.git --scope workspace --path src/metagit/data/skills/metagit-aos
手動放置目錄.agents/skills/metagit-aosOfficial docs ↗
⚠ 安裝指令使用開源 skills CLI。執行前請檢查來源、腳本與權限。
# Metagit Agent Operating System (AOS)

<!-- modality:aos_status -->

Use when you need a **composed** view of coordination state, or a preview of
what should run next across ACL + task graph + optional 0009–0012.

Full reference: [docs/reference/aos.md](../../../../docs/reference/aos.md)

## Control loop

```bash
export METAGIT_AGENT_MODE=true

metagit aos status --json
metagit aos doctor --json
metagit aos next --json                 # preview (no schedule record)
metagit aos next --commit --json        # record schedule decision
# then compile / ACL / work / complete / merge enqueue as separate steps
metagit context compile --project P --repo R --task-id NODE --json
metagit aos next --apply-hints --agent-id agent-1 --json   # ACL APIs only
```

Alias: `metagit coord …` is identical to `metagit aos …`.

## Rules

- Doctor `--fix` requires `--yes` and only runs lease expire-on-list + worktree gc.
- `next --apply-hints` never launches models and never runs compile.
- Prefer `aos next` preview before `--commit` when exploring.

## Related

- ACL primitives: skill `metagit-agent-coordination`
- Scheduler alone: `metagit schedule next`