AgentFolio
Role: Autonomous Agent Discovery Guide
Use this skill when you want to discover, compare, and research autonomous AI agents across ecosystems.
AgentFolio is a curated directory at https://agentfolio.io that tracks agent frameworks, products, and tools.
This skill helps you:
- Find existing agents before building your own from scratch.
- Map the landscape of agent frameworks and hosted products.
- Collect concrete examples and benchmarks for agent capabilities.
Capabilities
- Discover autonomous AI agents, frameworks, and tools by use case.
- Compare agents by capabilities, target users, and integration surfaces.
- Identify gaps in the market or inspiration for new skills/workflows.
- Gather example agent behavior and UX patterns for your own designs.
- Track emerging trends in agent architectures and deployments.
How to Use AgentFolio
Open the directory
- Visit
https://agentfolio.io in your browser.
- Optionally filter by category (e.g., Dev Tools, Ops, Marketing, Productivity).
Search by intent
- Start from the problem you want to solve:
- “customer support agents”
- “autonomous coding agents”
- “research / analysis agents”
- Use keywords in the AgentFolio search bar that match your domain or workflow.
Evaluate candidates
- For each interesting agent, capture:
- Core promise (what outcome it automates).
- Input / output shape (APIs, UI, data sources).
- Autonomy model (one-shot, multi-step, tool-using, human-in-the-loop).
- Deployment model (SaaS, self-hosted, browser, IDE, etc.).
Synthesize insights
- Use findings to:
- Decide whether to integrate an existing agent vs. build your own.
- Borrow successful UX and safety patterns.
- Position your own agent skills and workflows relative to the ecosystem.
Example Workflows
1) Landscape scan before building a new agent
- Define the problem: “autonomous test failure triage for CI pipelines”.
- Use AgentFolio to search for:
- “testing agent”, “CI agent”, “DevOps assistant”, “incident triage”.
- For each relevant agent:
- Note supported platforms (GitHub, GitLab, Jenkins, etc.).
- Capture how they explain autonomy and safety boundaries.
- Record pricing/licensing constraints if you plan to adopt instead of build.
2) Competitive and inspiration research for a new skill
- If you plan to add a new skill (e.g., observability agent, security agent):
- Use AgentFolio to find similar agents and features.
- Extract 3–5 concrete patterns you want to emulate or avoid.
- Translate those patterns into clear requirements for your own skill.
3) Vendor shortlisting
- When choosing between multiple agent vendors:
- Use AgentFolio entries as a neutral directory.
- Build a comparison table (columns: capabilities, integrations, pricing, trust & security).
- Use that table to drive a more formal evaluation or proof-of-concept.
Example Prompts
Use these prompts when working with this skill in an AI coding agent:
- “Use AgentFolio to find 3 autonomous AI agents focused on code review. For each, summarize the core value prop, supported languages, and how they integrate into developer workflows.”
- “Scan AgentFolio for agents that help with customer support triage. List the top options, their target customer size (SMB vs. enterprise), and any notable UX patterns.”
- “Before we build our own research assistant, use AgentFolio to map existing research / analysis agents and highlight gaps we could fill.”
When to Use
This skill is applicable when you need to discover or compare autonomous AI agents instead of building in a vacuum:
- At the start of a new agent or workflow project.
- When evaluating vendors or tools to integrate.
- When you want inspiration or best practices from existing agent products.
AGI Framework Integration
Adapted for @techwavedev/agi-agent-kit
Original source: antigravity-awesome-skills
Memory-First Protocol
Retrieve prior agent configurations, team compositions, and orchestration patterns. Critical for multi-agent system consistency.
# Check for prior AI agent orchestration context before starting
python3 execution/memory_manager.py auto --query "agent patterns and orchestration strategies for Agentfolio"
Storing Results
After completing work, store AI agent orchestration decisions for future sessions:
python3 execution/memory_manager.py store \
--content "Agent pattern: hierarchical orchestration with Control Tower dispatcher, 3 specialist sub-agents" \
--type decision --project <project> \
--tags agentfolio ai-agents
Multi-Agent Collaboration
This skill is inherently multi-agent. Use cross-agent context to coordinate task distribution and avoid duplicate work.
python3 execution/cross_agent_context.py store \
--agent "<your-agent>" \
--action "Agent architecture designed — Control Tower + specialist agents with shared Qdrant memory" \
--project <project>
Control Tower Integration
Register agents and tasks with the Control Tower (execution/control_tower.py) for centralized orchestration across machines and LLM providers.
Blockchain Identity
Each agent has a cryptographic Ed25519 identity. All memory writes are signed — enabling trust verification in multi-agent systems.
1---2name: agentfolio3description: Skill for discovering and researching autonomous AI agents, tools, and ecosystems using the AgentFolio directory.4---56# AgentFolio78**Role**: Autonomous Agent Discovery Guide910Use this skill when you want to **discover, compare, and research autonomous AI agents** across ecosystems.11AgentFolio is a curated directory at https://agentfolio.io that tracks agent frameworks, products, and tools.1213This skill helps you:1415- Find existing agents before building your own from scratch.16- Map the landscape of agent frameworks and hosted products.17- Collect concrete examples and benchmarks for agent capabilities.1819## Capabilities2021- Discover autonomous AI agents, frameworks, and tools by use case.22- Compare agents by capabilities, target users, and integration surfaces.23- Identify gaps in the market or inspiration for new skills/workflows.24- Gather example agent behavior and UX patterns for your own designs.25- Track emerging trends in agent architectures and deployments.2627## How to Use AgentFolio28291. **Open the directory**30 - Visit `https://agentfolio.io` in your browser.31 - Optionally filter by category (e.g., Dev Tools, Ops, Marketing, Productivity).32332. **Search by intent**34 - Start from the problem you want to solve: 35 - “customer support agents” 36 - “autonomous coding agents” 37 - “research / analysis agents”38 - Use keywords in the AgentFolio search bar that match your domain or workflow.39403. **Evaluate candidates**41 - For each interesting agent, capture:42 - **Core promise** (what outcome it automates).43 - **Input / output shape** (APIs, UI, data sources).44 - **Autonomy model** (one-shot, multi-step, tool-using, human-in-the-loop).45 - **Deployment model** (SaaS, self-hosted, browser, IDE, etc.).46474. **Synthesize insights**48 - Use findings to:49 - Decide whether to integrate an existing agent vs. build your own.50 - Borrow successful UX and safety patterns.51 - Position your own agent skills and workflows relative to the ecosystem.5253## Example Workflows5455### 1) Landscape scan before building a new agent5657- Define the problem: “autonomous test failure triage for CI pipelines”.58- Use AgentFolio to search for:59 - “testing agent”, “CI agent”, “DevOps assistant”, “incident triage”.60- For each relevant agent:61 - Note supported platforms (GitHub, GitLab, Jenkins, etc.).62 - Capture how they explain autonomy and safety boundaries.63 - Record pricing/licensing constraints if you plan to adopt instead of build.6465### 2) Competitive and inspiration research for a new skill6667- If you plan to add a new skill (e.g., observability agent, security agent):68 - Use AgentFolio to find similar agents and features.69 - Extract 3–5 concrete patterns you want to emulate or avoid.70 - Translate those patterns into clear requirements for your own skill.7172### 3) Vendor shortlisting7374- When choosing between multiple agent vendors:75 - Use AgentFolio entries as a neutral directory.76 - Build a comparison table (columns: capabilities, integrations, pricing, trust & security).77 - Use that table to drive a more formal evaluation or proof-of-concept.7879## Example Prompts8081Use these prompts when working with this skill in an AI coding agent:8283- “Use AgentFolio to find 3 autonomous AI agents focused on code review. For each, summarize the core value prop, supported languages, and how they integrate into developer workflows.”84- “Scan AgentFolio for agents that help with customer support triage. List the top options, their target customer size (SMB vs. enterprise), and any notable UX patterns.”85- “Before we build our own research assistant, use AgentFolio to map existing research / analysis agents and highlight gaps we could fill.”8687## When to Use88This skill is applicable when you need to **discover or compare autonomous AI agents** instead of building in a vacuum:8990- At the start of a new agent or workflow project.91- When evaluating vendors or tools to integrate.92- When you want inspiration or best practices from existing agent products.9394---9596<!-- AGI-INTEGRATION-START -->9798## AGI Framework Integration99100> **Adapted for [@techwavedev/agi-agent-kit](https://www.npmjs.com/package/@techwavedev/agi-agent-kit)**101> Original source: [antigravity-awesome-skills](https://github.com/sickn33/antigravity-awesome-skills)102103### Memory-First Protocol104105Retrieve prior agent configurations, team compositions, and orchestration patterns. Critical for multi-agent system consistency.106107```bash108# Check for prior AI agent orchestration context before starting109python3 execution/memory_manager.py auto --query "agent patterns and orchestration strategies for Agentfolio"110```111112### Storing Results113114After completing work, store AI agent orchestration decisions for future sessions:115116```bash117python3 execution/memory_manager.py store \118 --content "Agent pattern: hierarchical orchestration with Control Tower dispatcher, 3 specialist sub-agents" \119 --type decision --project <project> \120 --tags agentfolio ai-agents121```122123### Multi-Agent Collaboration124125This skill is inherently multi-agent. Use cross-agent context to coordinate task distribution and avoid duplicate work.126127```bash128python3 execution/cross_agent_context.py store \129 --agent "<your-agent>" \130 --action "Agent architecture designed — Control Tower + specialist agents with shared Qdrant memory" \131 --project <project>132```133134### Control Tower Integration135136Register agents and tasks with the Control Tower (`execution/control_tower.py`) for centralized orchestration across machines and LLM providers.137138### Blockchain Identity139140Each agent has a cryptographic Ed25519 identity. All memory writes are signed — enabling trust verification in multi-agent systems.141142<!-- AGI-INTEGRATION-END -->