digital-labour

24 AI agents for business automation - sales outreach, lead gen, content creation, SEO, ad copy, bookkeeping, proposals, market research, business plans, tech docs, data entry, web scraping, CRM ops, and more. Multi-agent pipelines with QA verification on every output. Powered by GPT-4o, Claude, Gemini, and Grok.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "digital-labour" with this command: npx skills add Resonance Energy/digital-labour

⚡ Digital Labour — 24 AI Agents for Business Automation

Your entire back-office, automated. Run any of 24 specialized AI agents through plain English. Sales outreach, lead generation, content repurposing, SEO, ad copy, bookkeeping, proposals, market research, tech docs — all with built-in QA verification.

Quick Start

Set your API URL (or use the default production endpoint):

export DIGITAL_LABOUR_API_URL="https://bitrage-labour-api-production.up.railway.app"

Test the connection:

python3 {baseDir}/scripts/dl-api.py health

Run an agent:

python3 {baseDir}/scripts/dl-api.py run support_ticket '{"ticket_text": "My order has not arrived after 2 weeks"}'

Available Agents (24 Total)

Revenue & Sales (5 agents)

AgentCommandWhat it does
sales_outreachrun sales_outreach '{"company":"Stripe","role":"Head of Sales"}'Company research + 3-email outreach sequence
lead_genrun lead_gen '{"industry":"fintech","region":"North America"}'Generate qualified lead lists for any industry
email_marketingrun email_marketing '{"product":"SaaS CRM","audience":"small business owners"}'Full email campaign with subject lines + body copy
proposal_writerrun proposal_writer '{"project":"Website redesign","client_name":"Acme Corp"}'Professional project proposals with pricing
ad_copyrun ad_copy '{"product":"AI writing tool","platform":"google"}'Platform-optimized ad copy (Google/Facebook/Instagram)

Content & Marketing (4 agents)

AgentCommandWhat it does
content_repurposerun content_repurpose '{"content":"<blog post text>"}'Repurpose content into tweets, LinkedIn, newsletters
seo_contentrun seo_content '{"keyword":"AI automation","content_type":"blog"}'SEO-optimized content (blog/landing/pillar pages)
social_mediarun social_media '{"topic":"AI trends","platform":"linkedin","cta_goal":"drive signups"}'Platform-native social posts with CTAs
press_releaserun press_release '{"announcement":"Product launch","company":"Bitrage"}'PR-ready press releases

Operations & Data (4 agents)

AgentCommandWhat it does
data_entryrun data_entry '{"source_data":"<raw data>","output_format":"CSV"}'Structure and clean raw data
web_scraperrun web_scraper '{"source_url":"https://example.com","extraction_target":"pricing"}'Extract structured data from web pages
crm_opsrun crm_ops '{"contact_data":"<contact info>","action":"segment"}'CRM updates, segmentation, and reporting
bookkeepingrun bookkeeping '{"transactions":"<transaction data>","period":"monthly"}'Transaction categorization and financial reports

Documents & Research (4 agents)

AgentCommandWhat it does
doc_extractrun doc_extract '{"document_text":"<doc text>","doc_type":"invoice"}'Extract structured data from invoices, contracts, resumes
market_researchrun market_research '{"topic":"electric vehicles","depth":"detailed"}'Market analysis at overview/detailed/comprehensive depth
business_planrun business_plan '{"business_idea":"AI tutoring app","market":"K-12 education"}'Full business plans with financial projections
tech_docsrun tech_docs '{"code_or_api":"<code or API spec>","doc_type":"api"}'API docs, READMEs, and tutorials

Professional Services (3 agents)

AgentCommandWhat it does
support_ticketrun support_ticket '{"ticket_text":"<customer issue>"}'Categorize, prioritize, draft reply for support tickets
product_descrun product_desc '{"product_specs":"<specs>","tone":"luxury"}'Product descriptions in any tone
resume_writerrun resume_writer '{"career_data":"<career history>","target_industry":"tech"}'ATS-optimized resumes for any industry

Management Layer (4 agents)

AgentCommandWhat it does
context_managerInternal orchestrationMaintains context across multi-agent pipelines
qa_managerInternal orchestrationQuality assurance on every agent output
production_managerInternal orchestrationWorkflow scheduling and resource allocation
automation_managerInternal orchestrationAutonomous task routing and retry logic

Helper Script

scripts/dl-api.py — Python script (stdlib only) for all API operations.

Commands:

CommandDescription
healthCheck API health status
agentsList all available agents with input schemas
run <agent> <json_inputs>Run a specific agent with JSON inputs
batch <json_file>Run multiple agents from a JSON batch file

Examples:

# Check health
python3 {baseDir}/scripts/dl-api.py health

# List all agents
python3 {baseDir}/scripts/dl-api.py agents

# Generate sales outreach
python3 {baseDir}/scripts/dl-api.py run sales_outreach '{"company":"Tesla","role":"VP Engineering"}'

# Write a business plan
python3 {baseDir}/scripts/dl-api.py run business_plan '{"business_idea":"AI-powered pet care app","market":"pet owners 25-45"}'

# Generate SEO content
python3 {baseDir}/scripts/dl-api.py run seo_content '{"keyword":"remote work tools 2026","content_type":"pillar"}'

# Run a batch of tasks
python3 {baseDir}/scripts/dl-api.py batch {baseDir}/examples/batch.json

Batch Processing

Create a JSON file with multiple tasks:

[
  {"agent": "sales_outreach", "inputs": {"company": "Stripe", "role": "CTO"}},
  {"agent": "ad_copy", "inputs": {"product": "AI CRM", "platform": "facebook"}},
  {"agent": "seo_content", "inputs": {"keyword": "business automation", "content_type": "blog"}}
]

Run them all:

python3 {baseDir}/scripts/dl-api.py batch tasks.json

Multi-Agent Workflows

Chain agents together for complex operations:

Lead-to-Close Pipeline:

  1. lead_gen → find prospects in target industry
  2. market_research → understand their pain points
  3. sales_outreach → personalized outreach sequence
  4. proposal_writer → ready proposal when they respond

Content Engine:

  1. market_research → trending topics in your niche
  2. seo_content → long-form SEO blog post
  3. content_repurpose → tweets, LinkedIn, newsletter from that post
  4. social_media → platform-native posts with CTAs
  5. ad_copy → paid promotion copy

Client Onboarding:

  1. doc_extract → pull data from client documents
  2. data_entry → structure into your system format
  3. bookkeeping → set up financial tracking
  4. crm_ops → create CRM records

API Details

  • Base URL: https://bitrage-labour-api-production.up.railway.app
  • Universal Endpoint: POST /v1/run
  • Agent List: GET /agents
  • Health Check: GET /health
  • Docs: GET /docs
  • LLM Providers: OpenAI (GPT-4o), Anthropic (Claude), Google (Gemini), xAI (Grok)
  • QA: Every output passes through QA verification before returning

Environment Variables

VariableRequiredDefaultDescription
DIGITAL_LABOUR_API_URLYeshttps://bitrage-labour-api-production.up.railway.appAPI base URL
DIGITAL_LABOUR_API_KEYNo(none)Optional API key for authenticated access

Important Notes

  • Each agent call takes 3-15 seconds (real LLM inference, not cached)
  • All outputs include QA verification status
  • The provider field is optional in all agent inputs — omit to use the server default
  • Management agents (context_manager, qa_manager, etc.) are internal and run automatically during pipelines
  • Batch mode processes tasks sequentially to respect rate limits
  • All agent outputs are structured JSON with consistent schema

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Promarkia – AI Marketing Automation API

Run Promarkia AI squads via the Promarkia API — social media posts, copywriting, SEO, ads, lead generation, image/video creation, campaign planning, and more...

Registry SourceRecently Updated
2020Profile unavailable
General

SMB Sales Boost — B2B Lead Database of SMBs for Cold Outreach & GTM

Query and manage leads from the SMB Sales Boost B2B lead database. Search newly registered businesses, filter by location/industry/keywords, export leads, ma...

Registry SourceRecently Updated
7120Profile unavailable
Automation

CurlShip Directory Submission

Submit products to CurlShip, the bot-friendly SaaS directory. One curl command to list your product with OG tag scraping, badge-based dofollow links, and tier upgrades.

Registry SourceRecently Updated
1K0Profile unavailable
Research

LinkedIn Lead Gen Outreach

Lightweight LinkedIn prospecting and outreach workflow for researching qualified leads, applying simple prioritization, drafting concise personalized message...

Registry SourceRecently Updated
1890Profile unavailable