Skip to main content

Overview

Agency is Trending Society’s client services arm. We package our internal AI workflows and sell them as managed services. Status: Schema ready

Revenue Model

StreamMechanism
RetainersMonthly automation management
ProjectsScoped deliverable work
Productized ServicesFixed-price packages

Services Offered

Automation Audit

Analyze client workflows and identify AI automation opportunities.

AI Agent Deployment

Deploy custom AI agents for:
  • Content generation
  • Customer support
  • Lead qualification
  • Data processing

Content Pipeline Setup

Build end-to-end content systems like Publisher.

Custom Integrations

Connect client tools via MCP and APIs.

Database Tables

TablePurposeStatus
agency_clientsClient companiesReady
agency_projectsScoped workReady
agency_deliverablesIndividual itemsReady
agency_retainersOngoing agreementsReady
service_order_projectsProductized purchasesReady

Client Workflow

Lead inquiry

Discovery call

Proposal + SOW

agency_clients record created

agency_projects created per engagement

agency_deliverables tracked

Monthly retainer or project completion

Benchmarking

Agency clients can be benchmarked against Publisher performance:
-- Compare client results to our internal metrics
SELECT 
  'Client' as type,
  ac.company_name,
  AVG(ad.conversion_rate) as avg_conversion
FROM agency_clients ac
JOIN agency_deliverables ad ON ad.client_id = ac.id
GROUP BY ac.id

UNION ALL

SELECT 
  'Internal',
  pv.name,
  AVG(ppa.conversion_rate)
FROM publisher_verticals pv
JOIN publisher_posts pp ON pp.vertical_id = pv.id
JOIN publisher_post_analytics ppa ON ppa.post_id = pp.id
GROUP BY pv.id;

Graduation Path

Agency clients can graduate to self-serve Platform access:
  1. Start with managed services
  2. Learn the tools through collaboration
  3. Transition to Platform Pro/Business tier
  4. Continue relationship as support/consulting

Next Steps

  • Build client dashboard in apps/agency/
  • Create service order workflow
  • Integrate with invoicing (Stripe)
  • Build reporting templates