agent-presets

Configures domain-specific agent presets that activate relevant agents and skip inactive pipeline phases.

111|73|Updated Mar 20, 2026
One-click install
npx skills add https://github.com/autopus-ai/autopus-adk --skill agent-presets-autopus-ai
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agent-presets
Source: https://github.com/autopus-ai/autopus-adk/tree/main/.omp/skills/agent-presets
Command: npx skills add https://github.com/autopus-ai/autopus-adk --skill agent-presets-autopus-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams running multi-agent pipelines waste effort when every agent runs for every project type, even when phases like frontend verification or security audits are irrelevant to the domain. ## Core Features & Use Cases - Built-in Presets: Ships with backend-go, fullstack, and cli-tool presets that define which agents are active per project type. - Custom Presets: Define project-specific agent lists in autopus.yaml and activate them with the agent_preset key. - Phase Skipping: Pipeline phases referencing inactive agents are skipped and logged, while gate phases always run. - Use Case: A team building a CLI utility sets agent_preset to cli-tool so the frontend-specialist, security-auditor, and perf-engineer phases are skipped automatically. ## Quick Start Set agent_preset to cli-tool in autopus.yaml so only the relevant agents run for this command-line project.

Frequently Asked Questions about agent-presets

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I configure which agents run for my project type?▼

Set the agent_preset key in autopus.yaml to one of the built-in presets: backend-go, fullstack, or cli-tool. Each preset defines the active agent list, and phases referencing inactive agents are skipped automatically.

How do I create a custom agent preset in autopus.yaml?▼

Define an agent_presets section in autopus.yaml with a named list of agents, then set agent_preset to that name. Unrecognized agent names are ignored with a warning, and custom presets extend the built-in list.

What happens if agent_preset is not set in autopus.yaml?▼

All agents remain active when no preset is configured. This default behavior is backward compatible with existing configurations that do not specify a preset.

Which pipeline phases get skipped with an agent preset?▼

Phase 2.5 (Annotation) is skipped without annotator, Phase 3.5 (UX Verify) without frontend-specialist, the security audit without security-auditor, and the performance check without perf-engineer. Gate phases 1, 2, and 3 are never skipped.

What is the difference between backend-go, fullstack, and cli-tool presets?▼

backend-go activates eight agents including security-auditor and perf-engineer for Go services. fullstack adds frontend-specialist for web apps. cli-tool uses a minimal six-agent set for utilities and scripts.