GTM Agents: Workers & Workflows
Purpose: Unified system for all GTM agents (workers) and multi-agent workflows
Status: Active - All workers wired to feedback loop
Last Updated: 2026-02-05
π Quick Start
New here? Start with:
- Architecture - Structure design (5 min read)
- Agent Registry - Complete worker inventory
- Pick a workflow: Campaign Launch or Event to Meeting
Want to run a worker?
- Find it in Agent Registry
- Read the workerβs
PRD.mdfor inputs/outputs - Run it β System prompts for feedback β Logs run β Analyzes patterns
π Structure
gtm/agents/
βββ README.md # This file (overview)
βββ ARCHITECTURE.md # Structure design
βββ AGENT_REGISTRY.md # Complete worker inventory
β
βββ workers/ # Individual workers (specialized jobs)
β βββ content-generation/ # Copy, posts, deployment messages
β βββ campaign-planning/ # Briefs, sequences
β βββ outreach/ # Follow-ups, LinkedIn, partnerships
β βββ analysis/ # ICP analysis, metrics
β βββ operations/ # Ticket creation
β
βββ workflows/ # Multi-worker coordination
β βββ campaign-launch-workflow.md
β βββ event-to-meeting-workflow.md
β βββ deployment-workflow.md
β
βββ shared/ # Shared infrastructure
β βββ feedback-loop/ # Feedback system, run logs
β βββ context-graph/ # Process knowledge
β βββ patterns/ # Learned patterns
β
βββ examples/ # Example runs/outputs
π― Workers (Individual Agents)
Each worker is a specialized job that does one thing well. See Agent Registry for complete list.
Content Generation
- Design-Ready Copy - Marketing collateral (one-pagers, 2-pagers)
- Campaign Post - LinkedIn posts via CC content system
- Slack Deployment - Deployment win messages
Campaign Planning
- Campaign Brief Intake - Execution-ready campaign briefs
- Message Sequence - Multi-step outreach sequences
Outreach
- Event Follow-Up - Post-event sequences
- LinkedIn Sequence - LinkedIn-specific sequences
- Ticket Event Follow-Up - Follow-up automation
- VP Partnerships - Partnership outreach
Analysis
- ICP Analysis - Attendee list analysis
- Metrics Teardown - Metrics/KPI analysis
Operations
- Ticket Creation - Linear tickets from requests
π Workflows (Multi-Worker Coordination)
Workflows orchestrate multiple workers to complete complex tasks:
Campaign Launch Workflow
Workers: Brief Intake β Design-Ready Copy β Campaign Post β Message Sequence β Slack Deployment
Input: Campaign idea
Output: Complete campaign ready to launch
See workflow β
Event to Meeting Workflow
Workers: ICP Analysis β Event Follow-Up β Message Sequence
Input: Event attendee list
Output: Prioritized sequences ready to send
See workflow β
Deployment Workflow
Workers: [Any Worker] β Slack Deployment β Feedback Loop
Input: New agent/tool deployed
Output: Team announcement + feedback logged
See workflow β
π Feedback Loop System
Every worker run:
- Worker runs β Generates output
- System prompts β Structured feedback (2-3 min)
- Auto-log β Run logged to
shared/feedback-loop/RUN_LOG.md - Pattern analysis β βThinking β summaryβ approach
- Impact summary β Time saved, quality trends, knowledge impact
- PR suggestions β When patterns reach MEDIUM confidence
See: Feedback Loop System
π Context Graph
The feedback loop builds a context graph that captures:
- Entities: Workers, workflows, outputs, patterns
- Actions/Traces: Who ran what, when, with what outcomes
- Process Patterns: How work actually gets done (not just what exists)
β Adding a New Worker
- Create worker directory:
workers/[category]/[worker-name]/ - Create PRD.md: Define inputs, outputs, rules
- Create feedback-prompt.md: Copy from similar worker
- Add to registry: Update
AGENT_REGISTRY.md - First run: Prompt for feedback β log β analyze patterns
π Related
- Architecture - Structure design
- Agent Registry - Complete inventory
- Feedback Loop - How feedback works
- Run Log - All runs logged here
- Patterns - Learned patterns
Status: All workers wired to feedback loop. System ready for multi-worker workflows.