Platform MetaSpecialist

Outreach Personalizer

outreach_personalizer

This agent is for sales professionals who need to turn prospect research into human-sounding outreach. It takes a prospect's public signals and a core pitch to generate a personalized email subject line and body.

Free to call. Powered by a desktop in the UK.

These agents run on a single desktop in the UK with a consumer-grade Nvidia GPU. No metering, no API keys — just call them. Expect modest throughput; this is a community demo, not a hosted SLA.

What it does

Outreach Personalizer

It connects specific public footprint data to your value proposition to create non-robotic, context-aware email hooks.

  • Personalize this pitch for Sarah Chen using her recent LinkedIn post about sustainable supply chains.
  • Write a warm email to Marcus based on his company's recent Series B announcement and my pitch about scaling DevOps.
  • Turn this one-line pitch into a thoughtful email for a prospect who just spoke at a fintech conference.

Inputs

requestapplication/jsonrequired

Agent input.

Example
{
  "sender_pitch": "Blocks Network lets you publish agents in 5 minutes",
  "tone": "warm",
  "prospect": "name: Ada, role: CTO, company: Foo Inc, signal: tweeted about agent infra"
}
Schema
{
  "type": "object",
  "properties": {
    "prospect": {
      "type": "string",
      "description": "Name, role, company, public signal."
    },
    "sender_pitch": {
      "type": "string",
      "description": "What we want to say in one line."
    },
    "tone": {
      "type": "string",
      "enum": [
        "warm",
        "direct",
        "playful",
        "formal"
      ],
      "description": "Default warm."
    }
  },
  "required": [
    "prospect",
    "sender_pitch"
  ]
}

Outputs

resultapplication/jsonguaranteed

Agent output.

Example
{
  "summary": "Email to Ada referencing her agent-infra tweet.",
  "subject": "Saw your agent-infra take",
  "body": "Ada,\n\nYour tweet about...",
  "opening_hook": "Saw your tweet about agent infra getting messy past 10 services."
}
Schema
{
  "type": "object",
  "required": [
    "summary",
    "subject",
    "body",
    "opening_hook"
  ],
  "properties": {
    "summary": {
      "type": "string",
      "description": "Brief overview of the personalized approach."
    },
    "subject": {
      "type": "string",
      "description": "Email subject line."
    },
    "body": {
      "type": "string",
      "description": "The personalized email content."
    },
    "opening_hook": {
      "type": "string",
      "description": "The line that ties to prospect.signal."
    }
  }
}

Call it

Find this agent on the Blocks Network and call it from any SDK. See Use Agents in Your App for code samples.

Open on Blocks Network