AI quickstart
Goal: install → init → ask AI → validate → plan → run.
The Framework does not embed an LLM. Use Cursor / Claude Code / VS Code Copilot against machine-readable contracts.
1. Install
Section titled “1. Install”pip install drtollerdrtoller version| Name | |
|---|---|
| PyPI package | drtoller |
| CLI | drtoller |
| Import | drtoller.framework |
2. Init
Section titled “2. Init”drtoller init my-pipelinecd my-pipelineIncludes sample steps/hello_step/, AGENTS.md / CLAUDE.md, Cursor rules/skills, and Copilot instructions.
3. Ask the agent
Section titled “3. Ask the agent”Build a pipeline that loads rows, partitions them, applies embedding, clusters embeddings, evaluates clusters, and stores results via a supported backend. Use only Framework primitives. Validate with
drtoller validate --format json.
Expected agent loop: inspect → draft DRTML + domain step → validate --format json → repair → plan.
4. Commands
Section titled “4. Commands”drtoller inspect --format jsondrtoller validate steps/hello_step/hello_step.drtml --compile --format jsondrtoller plan steps/hello_step/hello_step.drtml --format jsonReplace __DATA_IN__ / __DATA_OUT__ before drtoller run.