Open-source agent templates from Agentlify — the AI agent platform with intelligent model routing.
Agent templates are pre-built, multi-step AI workflows that break complex tasks into discrete steps. Each agent follows a structured pipeline (Research → Plan → Execute → Review) and can invoke knowledge skills on-demand for domain expertise.
Each template includes:
- Steps — Ordered workflow stages with specific prompts and goals
- Skills — Knowledge skill allowlist for domain expertise
- Settings — Configuration (timeouts, approval gates, streaming)
User Input
↓
┌──────────────┐
│ Step 1: │ Research / Understand
│ (Research) │ → Gather context, classify, scope
└──────┬───────┘
↓
┌──────────────┐
│ Step 2: │ Plan / Analyze
│ (Plan) │ → Design approach, identify test cases
└──────┬───────┘
↓
┌──────────────┐
│ Step 3: │ Execute / Write
│ (Execute) │ → Implement, generate, build
└──────┬───────┘
↓
┌──────────────┐
│ Step 4: │ Review / Polish
│ (Review) │ → Validate, refine, verify
└──────┬───────┘
↓
Final Output
Each step receives the output of the previous step as context. Skills are invoked via get_skill('skill-id') within step prompts.
Professional agents with Research → Plan → Execute → Review workflows and knowledge skill integration. These are designed for complex tasks requiring structured methodology.
Lightweight agents with focused prompt chains. These are great for straightforward tasks like translation, summarization, or content generation.
| Agent | Category | Skills | Description |
|---|---|---|---|
| Code Review Agent | Development | 4 | Reviews code for quality, security, and best practices |
| Bug Investigation Agent | Development | 3 | Systematically investigates bugs to find root causes |
| Test Writer Agent | Development | 3 | Creates comprehensive test suites following TDD |
| Refactoring Agent | Development | 3 | Safely refactors code to improve structure |
| API Designer Agent | Development | 3 | Designs RESTful APIs with documentation |
| Security Auditor Agent | Security | 3 | Performs security audits and identifies vulnerabilities |
| Support Triage Agent | Support | 3 | Triages support tickets and prepares responses |
| Documentation Writer Agent | Content | 3 | Creates technical documentation and guides |
| Data Analyst Agent | Analytics | 3 | Analyzes data and creates insight reports |
| Content Writer Agent | Content | 2 | Creates high-quality written content |
| Agent | Category | Description |
|---|---|---|
| Chatbot Assistant | Productivity | Friendly conversational assistant |
| Code Debugger | Coding | Finds bugs and suggests fixes |
| Content Summarizer | Content | Summarizes long text into key points |
| Universal Translator | Communication | Translates with cultural context |
| Research Q&A | Productivity | Comprehensive research answers |
| Email Writer | Communication | Drafts professional emails |
| Formula Generator | Data | Creates spreadsheet formulas |
| Story Creator | Content | Generates creative fiction |
| FAQ Generator | Content | Creates FAQ sections |
| SQL Builder | Data | Converts questions to SQL queries |
agents/
├── README.md
├── multi-step/ # Professional agents with skill integration
│ ├── code-review-agent.md
│ ├── bug-investigation-agent.md
│ ├── test-writer-agent.md
│ ├── refactoring-agent.md
│ ├── api-designer-agent.md
│ ├── security-auditor-agent.md
│ ├── support-triage-agent.md
│ ├── documentation-writer-agent.md
│ ├── data-analyst-agent.md
│ └── content-writer-agent.md
└── simple/ # Lightweight prompt-chain agents
├── chatbot-assistant.md
├── code-debugger.md
├── content-summarizer.md
├── universal-translator.md
├── research-qa.md
├── email-writer.md
├── formula-generator.md
├── story-creator.md
├── faq-generator.md
└── sql-builder.md
Sign up at agentlify.ai to use these agents with:
- Intelligent model routing — Best LLM automatically selected per step
- Visual agent builder — Customize steps and skills without code
- One-click fork — Copy any template and make it your own
Use these templates as reference for building agents on any platform:
- Define steps — Break your task into discrete stages
- Write step prompts — Clear instructions with input/output contracts
- Enable skills — Add domain expertise via knowledge skill packs
- Configure settings — Timeouts, approval gates, streaming
{
"name": "my-agent",
"displayName": "My Agent",
"description": "What this agent does",
"steps": [
{
"name": "Step Name",
"type": "research|plan|execute|review",
"prompt": "Step instructions with {{input}} and {{previous_output}} variables"
}
],
"skills": ["skill-id-1", "skill-id-2"],
"settings": {
"maxStepDuration": 120000,
"requireApprovalBetweenSteps": false
}
}Agentlify is an AI agent platform that combines:
- Intelligent Model Routing — Automatically selects the best LLM for each task
- Multi-Step Agents — Build agents with structured workflows
- Knowledge Skills — Equip agents with domain expertise
- Visual Agent Builder — Design and customize agents without code
These templates are released as open-source educational resources. Use them freely in your projects.
Built with care by the Agentlify team.