A public repository of community-contributed Flows for AgEnFK — the Agentic Engineering Framework.
In AgEnFK, a Flow defines the workflow lifecycle for your project's tasks. Instead of the default statuses (TODO → IN_PROGRESS → REVIEW → DONE), you can design a custom sequence of steps — each with its own name and exit criteria — that matches how your team actually works.
Examples:
- TDD Flow:
TODO → create_unit_tests → IN_PROGRESS → REVIEW → DONE - Design-First Flow:
TODO → design → implementation → qa → DONE - Hotfix Flow:
TODO → fix → verify → DONE
- Browse the flows in this repository.
- Copy the flow JSON into your AgEnFK project settings, or use the Flow Editor in the dashboard.
- The flow becomes your workflow contract — each step's exit criteria guides your agent before it can advance.
Contributions are welcome! To share a flow with the community:
- Fork this repository.
- Add your flow as a
.jsonfile under a descriptive directory (e.g.tdd/tdd-flow.json). - Include a short
README.mdin the same directory explaining the flow's purpose and intended use case. - Open a pull request.
{
"name": "My Flow",
"steps": [
{
"name": "design",
"exitCriteria": "Design document reviewed and approved."
},
{
"name": "implementation",
"exitCriteria": "All acceptance criteria implemented and unit tests passing."
},
{
"name": "qa",
"exitCriteria": "QA sign-off received; no open blockers."
}
]
}Note: The first and last steps are anchors (
TODOandDONE) added automatically by AgEnFK. Only define the intermediate steps.
Flows in this repository are shared under the MIT License unless otherwise noted.