The open-source workflow catalog behind Agentic Software Development.
Each .mdx file under workflows/ is a copy-pasteable orchestration recipe for AI coding agents — Ralph, Spec Kit, PIV Loop, AGENTS.md, Antfarm, and 30+ others. The site at agenticpatterns.io renders these into card-grid + detail pages with an "Open in ChatGPT / Claude" menu.
- 🌐 Site: agenticpatterns.io
- 📝 Contribute a workflow: CONTRIBUTING.md
- 📋 Frontmatter schema: SCHEMA.md
- ⚖️ License: MIT — workflows are free to use, modify, and redistribute with attribution.
A workflow is a reusable orchestration pattern for AI coding agents — a recipe you can copy into your LLM of choice. Categorized by tier:
snippet— small paste-able pattern; no install, no scaffoldingframework— needs scaffolding (files / skills / CLI) installed into your agenttool— commits to a specific tool or product (open- or closed-source)
A typical reference-mode workflow MDX (pointing to vendor docs):
---
title: OpenAI Agents SDK — Handoffs
tagline: Each agent exposes transfer_to_X tools; the next response is owned
by whichever agent is handed control.
attribution: OpenAI
tier: tool
canonical_url: https://openai.github.io/openai-agents-python/handoffs/
setup_command: |
pip install openai-agents
when_to_use: Specialist should own the next turn, not just help in the background.
when_not_to_use: When you need a single observable trace through one agent.
tags: [openai, sdk, handoffs, multi-agent]
sources:
- title: OpenAI Agents SDK — Handoffs
url: https://openai.github.io/openai-agents-python/handoffs/
year: 2025
related:
patterns: [routing, orchestrator-workers]
tools: [openai-agents-sdk]
---For full field documentation see SCHEMA.md. For contribution rules and the body templates for editorial-mode cards, see CONTRIBUTING.md.
- You PR a new
.mdxunderworkflows/ - The frontmatter-validator Action runs on the PR — blocks merge on schema violations
- Maintainer reviews and merges
- A GitHub Action POSTs to the agenticpatterns.io deploy hook
- The site rebuilds (~90s) — your workflow is live with a detail page, an LLMs ▾ menu, and cross-links into the knowledge base
End-to-end: PR merge → live on site in under 2 minutes.
MIT — see LICENSE. Each individual workflow may reference upstream content under its own license; the site renderer respects upstream license terms automatically (mirror only if permissive, otherwise reference-link with attribution).