Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 954 Bytes

File metadata and controls

30 lines (20 loc) · 954 Bytes

engineeringagent

engineeringagent is a CLI for agent-driven implementation loops with markdown task plans and repository-local quality checks.

Install the CLI however you prefer, then run engineeringagent ... commands.

eg: uv add engineeringagent

Quickstart:

engineeringagent init
engineeringagent schema plan
engineeringagent validate-plan docs/plans/example-plan.md
engineeringagent check validate
engineeringagent implement docs/plans/example-plan.md

engineeringagent init scaffolds engineeringagent.toml, AGENTS.md, prompt templates, quality checks, and docs/plans/example-plan.md.

Schema export examples:

engineeringagent schema plan > plan-frontmatter.schema.json
engineeringagent schema quality > quality.schema.json

The plan schema describes only the YAML frontmatter at the top of a markdown plan file, not the full markdown document body.

See docs/getting-started.md and docs/reference.md.