--- name: ager-to-claude-managed-agents description: Translate a validated AGER/OKF AgentGraph into a Claude Managed Agents YAML manifest (entry, loop, agents). --- # AGER → Claude Managed Agents This plugin **compiles**. It does not author AGER. Authoring is `okf-agent-graph`. ## Mapping | AGER | Claude Managed Agents | | --- | --- | | AgentGraph | kind: AgentGraph YAML | | entry | spec.entry | | LoopPolicy | spec.loop (max_turns, price, deadline) | | AgentNode | spec.agents[] | | Tool + ToolRule | spec.tools[] | ## Steps 1. Locate the AGER bundle (`--bundle`, `sample-ager`, or cwd). 2. If `okf-agent-graph` is installed, run `ager-validate` first. If it fails, stop. 3. Run the deterministic emitter: ```bash python3 scripts/emit.py --bundle --out ``` 4. Report written paths. Expected: managed-graph.yaml, README.md. 5. Never claim production-ready without tests. ## References - `references/mapping.md`