PRD-120: Skills Marketplace & Agent Catalog — Agency Import + Business Plan Template
Status: Draft Date: 2026-03-24 Authors: Gerard Kavanagh + Claude Dependencies: PRD-71 (Unified Skills), PRD-82A/B/C (Missions), PRD-76 (Agent Reporting) Branch: TBD
TL;DR
Import ~100 professional agent skills from the open-source agency-agents catalog, adapt them for Automatos, publish them in the Skills Marketplace, and build pre-configured agent templates users can deploy in one click. Then build the Business Plan Mission Template — a flagship mission that doesn't just write a document, it configures the user's entire workspace: agents, playbooks, heartbeats, schedules, and board tasks. Automatos dogfoods this as customer #1.
1. Problem Statement
1.1 Empty Marketplace
New users sign up, see an empty workspace, and have no idea what to do. The Skills Marketplace exists but has almost no skills. The Agent Marketplace has no pre-built agents. Users must configure everything from scratch — agent roles, skills, tools, personas — which requires expertise they don't have.
1.2 No Onboarding Path
There's no guided path from "I have a business idea" to "my workspace is running my business." Users who want AI to help them operationally have to:
Understand what agents are
Figure out which roles they need
Write skill prompts from scratch
Assign tools manually
Create playbooks and schedules
This is a 2-hour setup for an expert. For a new user, it's a dead end.
1.3 Missing Skill Library
We have the platform tools (platform_create_agent, platform_install_skill, playbook CRUD, heartbeat config) but no content. It's an app store with no apps.
2. Solution Overview
Phase 1: Skill Import & Adaptation (2-3 days)
Cherry-pick ~80 relevant skills from agency-agents, rewrite for Automatos format, categorize and tag.
Phase 2: Agent Templates in Marketplace (1-2 days)
Pre-configured agent definitions with assigned skills, tools, LLMs, and personas. One-click deploy to workspace.
Phase 3: Business Plan Mission Template (2-3 days)
Flagship mission template that configures an entire workspace from a business goal.
Phase 4: Dogfood — Automatos as Customer #1 (1 day)
Run the Business Plan template for Automatos itself. Validate the full loop.
3. Source Material: agency-agents Repository
Repository: github.com/msitarzewski/agency-agents License: Open source Structure: Markdown files with YAML frontmatter (name, description, color, emoji, vibe, tools, services)
3.1 Divisions & Agent Count
Engineering
~22
HIGH — Frontend, Backend, DevOps, Security, AI Engineer, SRE
Design
~8
HIGH — UI Designer, UX Researcher, Brand Guardian
Marketing
~25
HIGH — Growth Hacker, Content Creator, SEO, Social Media, LinkedIn
Sales
~8
HIGH — Outbound, Discovery, Deal Strategy, Pipeline
Product
~4
HIGH — Sprint Prioritizer, Trend Researcher, Feedback Synthesizer
Project Management
~6
HIGH — Project Shepherd, Studio Producer, Experiment Tracker
Testing
~8
MEDIUM — QA, Performance, API Testing, Accessibility
Support
~6
HIGH — Support Responder, Analytics, Finance, Legal Compliance
Paid Media
~7
MEDIUM — PPC, Tracking, Ad Creative
Game Development
~20
LOW — Niche (Unity, Unreal, Godot, Roblox) — import selectively
Spatial Computing
~6
LOW — XR/VR niche — skip for now
Specialized
~23
MIXED — Cherry pick: Document Generator, ZK Steward, Compliance, Recruitment, Supply Chain
3.2 Import Priority
Tier 1 — Import immediately (~50 agents): All of Engineering, Design, Marketing, Sales, Product, Project Management, Support
Tier 2 — Import selectively (~15 agents): Testing (QA, Performance, API Tester), Paid Media (PPC, Ad Creative, Analytics), Specialized (Document Generator, Compliance, Recruitment, Supply Chain, Developer Advocate)
Tier 3 — Skip or defer (~35 agents): Game Development (too niche), Spatial Computing (too niche), China-specific marketing (Xiaohongshu, WeChat, Baidu, Bilibili, Douyin, Kuaishou, Weibo)
4. Phase 1: Skill Import & Adaptation
4.1 Automatos Skill Format
Each skill lives in /automatos-skills/skills/{category}/{skill-slug}/SKILL.md:
4.2 Adaptation Rules
When converting from agency-agents format to Automatos:
Strip platform-specific references — No mentions of OpenClaw, Cursor, Qwen, etc.
Map tools to Automatos tools —
WebFetch→workspace_execor Composio tools;Read/Write/Edit→workspace_read_file,workspace_write_fileAdd recommended_tools — Map each skill to available Automatos tools (Composio integrations, workspace tools, platform tools)
Add recommended_model —
haikufor simple/repetitive tasks,sonnetfor standard work,opusfor complex reasoningSimplify emoji headers — Keep content, lose the emoji section markers
Add Automatos context — Skills should reference platform capabilities (reports, board tasks, playbooks) where relevant
Trim aggressively — Remove filler, keep actionable instructions. Target 200-400 lines per skill.
Business-outcome focus — Every skill should tie back to measurable business value
4.3 Category Structure
5. Phase 2: Agent Templates in Marketplace
5.1 Agent Template Schema
Each importable agent template stored in the DB (or seeded via migration):
5.2 Marketplace Categories (UI)
Marketing & Growth
📈
~12
Sales & Revenue
💰
~8
Engineering & DevOps
⚙️
~10
Design & Brand
🎨
~6
Product & Strategy
🎯
~4
Project Management
📋
~6
Operations & Support
🏢
~6
Finance & Legal
⚖️
~4
Content & Media
✍️
~6
Quality & Testing
🔍
~4
5.3 One-Click Deploy Flow
User browses Marketplace → selects "Growth Hacker"
Frontend shows preview: skill summary, recommended tools, model
User clicks "Add to Workspace"
Backend:
platform_create_agent→ assigns skill, model, tools, personaAgent appears in Roster, ready to use
User can customize name, model, tools after deploy
5.4 LLM Assignment Strategy
Simple/repetitive
haiku-4.5
Support Responder, Finance Tracker, Report Distribution
Standard work
sonnet-4.6
Content Creator, SEO Specialist, Project Shepherd
Complex reasoning
opus-4.6 or deepseek-chat
Backend Architect, Security Engineer, Deal Strategist
Code generation
sonnet-4.6
Frontend Developer, DevOps Automator, AI Engineer
6. Phase 3: Business Plan Mission Template
6.1 The Vision
A new user says: "I'm starting a coffee brand."
The mission doesn't produce a PDF. It produces a configured, operational workspace:
Business Plan Document — Executive summary, market analysis, financial projections, go-to-market strategy
Agents Created — Marketing (Growth Hacker, Content Creator, Social Media), Sales (Outbound Strategist), Operations (Finance Tracker, Legal Compliance), Product (Trend Researcher)
Playbooks Written & Scheduled — Weekly social media calendar, monthly financial review, quarterly market analysis
Heartbeats Configured — Daily check-ins for active agents, KPI tracking
Board Tasks Created — Business plan milestones as trackable tasks with deadlines
Orchestrator Role — Assigned as "COO" — monitors plan execution, tracks targets
6.2 Mission Task Decomposition
6.3 Platform Tools Required
All of these should already exist from PRD-71:
platform_create_agent
Create agents with skill/model/tools
Verify exists
platform_install_skill
Assign skill to agent
Verify exists
platform_assign_tool
Assign Composio tool to agent
Verify exists
platform_create_playbook
Create playbook from template
May need to build
platform_configure_heartbeat
Set heartbeat schedule
Verify exists
platform_create_board_task
Create board task
May need to build
platform_submit_report
Write mission output report
Exists (PRD-76)
workspace_write_file
Save business plan document
Exists
6.4 Template Configuration
7. Phase 4: Dogfood — Automatos as Customer #1
Run the Business Plan template with:
Business: Automatos AI Platform
Type: B2B SaaS
Industry: AI/Automation
Target Market: SMBs, solopreneurs, agencies
Goals: Pilot launch, first 10 paying users
Validate:
8. Other Mission Templates (Future)
Once the Business Plan template works, expand the library:
Market Research Report
PDF/MD report + data
Medium
Competitive Analysis
Comparison matrix + report
Medium
Content Calendar
30-day calendar + draft posts
Medium
SEO Audit
Technical audit + recommendations
Medium
Sales Pipeline Setup
CRM config + playbooks
High
Product Launch Plan
Go-to-market doc + workspace config
High
Quarterly Business Review
KPI dashboard + report
Medium
Recruitment Campaign
Job descriptions + outreach playbooks
Medium
9. Success Metrics
Skills imported and categorized
65+
Agent templates in marketplace
50+
One-click deploy success rate
95%
Business Plan template completion rate
80%
Average Business Plan token spend
<500K tokens
Time from signup to operational workspace
<10 minutes
Automatos dogfood: all agents + playbooks running
Yes
10. Implementation Order
Import skills — Clone repo, cherry-pick, rewrite for Automatos format
Seed marketplace — Agent templates with skill/model/tool assignments
Verify platform tools — Confirm all needed
platform_*tools exist, build missing onesBuild Business Plan template — Mission config + task decomposition
Dogfood — Run for Automatos, fix issues
Polish UX — Results page showing what was configured, download business plan doc
Ship — Ready for pilot users
11. Risks & Mitigations
Skills too verbose, token-heavy
Aggressive trimming to 200-400 lines each
Platform tools missing for workspace config
Audit PRD-71 tools before Phase 3, build gaps
Business Plan mission too expensive
Budget tiers, allow user to skip workspace config
Agent templates become stale
Version skills, allow user edits post-deploy
License issues with source repo
Verify open-source license, attribute properly
Last updated

