| name | ager-to-langchain-deep-agents |
| description | Translate a validated AGER/OKF AgentGraph into a LangChain Deep Agents project (skills from AgentNodes, FilesystemBackend). |
AGER → LangChain Deep Agents
This plugin compiles. It does not author AGER. Authoring is okf-agent-graph.
Mapping
| AGER | LangChain Deep Agents |
|---|
| OrchestratorAgent | create_deep_agent system / lead |
| Worker / Judge / Synthesizer | skills//SKILL.md |
| LoopPolicy | documented stop conditions in ager-run skill |
| ScratchPad | FilesystemBackend virtual FS |
| Tool | skill tool sections |
Steps
- Locate the AGER bundle (
--bundle, sample-ager, or cwd).
- If
okf-agent-graph is installed, run ager-validate first. If it fails, stop.
- Run the deterministic emitter:
python3 scripts/emit.py --bundle <AGER_ROOT> --out <OUT>
- Report written paths. Expected: pyproject.toml, agent.py, skills/*/SKILL.md, README.md.
- Never claim production-ready without tests.
References