Ready-to-use automation templates for Twill. Browse, customize, and deploy recurring coding automations powered by AI agents.
Each template is a Markdown file in the templates/ directory with YAML frontmatter for metadata and a body containing the agent instructions.
Templates are loaded dynamically by Twill from this repository — add a new file here and it appears in the app automatically.
---
title: "My Automation"
description: "A short description shown in the template picker"
integrations:
- github
- linear
schedule: "0 9 * * 1-5"
schedule_description: "Every weekday at 9 AM"
---
Your agent instructions go here. This is what the automation agent
receives on each scheduled run.
The agent can:
- Query integrations via MCP (GitHub, Linear, Notion, Slack)
- Spawn coding tasks using [[TASK]] blocks
- Take direct integration actions (assign issues, etc.)| Field | Required | Description |
|---|---|---|
title |
Yes | Display name for the template |
description |
Yes | One-line summary shown in the picker |
integrations |
Yes | Array of integrations used: github, linear, notion, sentry, gcp |
schedule |
Yes | Default cron expression (5-field) |
schedule_description |
Yes | Human-readable schedule description |
The Markdown body becomes the automation's message field — the instructions the AI agent receives on every scheduled run. Write clear, specific instructions about what the agent should do.
- Fork this repository
- Create a new
.mdfile intemplates/ - Follow the format above
- Open a pull request
We welcome templates for any recurring development workflow.
The templates/index.json file lists all available templates and is used by Twill to discover them without crawling the directory.
MIT