# The Speaking Guild Communication Brief Generator

> The Speaking Guild Communication Brief Generator is a paid API for AI agents from speaking-guild-agent-tools.thespeakingguild.workers.dev, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Generates a structured professional communication brief using proprietary frameworks including Clarity Contract, Speech Architecture, Audience Gravity, Authority Transfer, and Delivery Navigation.

## Facts

- Endpoint: POST https://speaking-guild-agent-tools.thespeakingguild.workers.dev/v1/communication-brief
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-speaking-guild-communication-brief-generator-b898a922
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m967HhkU9kxXomzcu-GuK

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability the-speaking-guild-communication-brief-generator-b898a922 -d '<json body>'
```

Example prompt: Create a communication brief for a 20-minute all-hands presentation to my 200-person engineering team announcing a major reorg — the objective is to reduce anxiety and get buy-in, and I need to keep the tone calm and transparent while avoiding legal specifics about the restructuring.

## When to prefer this

Choose this endpoint when a user needs to transform raw communication goals, audience context, and source material into a professionally structured brief using a proven proprietary framework — especially for high-stakes settings like board presentations, all-hands meetings, executive emails, or workshops. Prefer this over generic text generation when the output needs to reflect specific rhetorical architecture (Audience Gravity, Authority Transfer, etc.) rather than a simple draft.

## Known failure modes

- Missing required fields (audience or objective) result in an incomplete brief
- Vague or underdeveloped context may produce generic rather than tailored output
- Source material exceeding 8000 characters will be rejected
- Invalid channel enum value causes a validation error
- Overly broad objectives may lead to unfocused briefs requiring follow-up refinement

## How this service works

Create a structured professional communication brief using The Speaking Guild's Clarity Contract, Speech Architecture, Audience Gravity, Authority Transfer, and Delivery Navigation frameworks.

## Output

A structured professional communication brief that includes a Clarity Contract (distilled core message), Speech Architecture (organized content flow), Audience Gravity (audience motivations and resistances), Authority Transfer (credibility and persuasion strategy), and Delivery Navigation (tactical guidance for the chosen channel and context).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "channel": {
   "enum": [
    "presentation",
    "meeting",
    "email",
    "workshop",
    "general"
   ],
   "type": "string",
   "default": "general",
   "description": "The intended communication setting."
  },
  "context": {
   "type": "string",
   "maxLength": 3000,
   "description": "Situation, background, stakes, or institutional context."
  },
  "audience": {
   "type": "string",
   "maxLength": 600,
   "minLength": 2,
   "description": "Who must understand, decide, feel, or act."
  },
  "objective": {
   "type": "string",
   "maxLength": 1200,
   "minLength": 3,
   "description": "The result the communication should achieve."
  },
  "constraints": {
   "type": "string",
   "maxLength": 1500,
   "description": "Tone, length, timing, legal, policy, or other constraints."
  },
  "source_material": {
   "type": "string",
   "maxLength": 8000,
   "description": "Optional notes, draft language, facts, or source material to organize."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-speaking-guild-communication-brief-generator-b898a922/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from speaking-guild-agent-tools.thespeakingguild.workers.dev](https://www.zero.xyz/host/speaking-guild-agent-tools.thespeakingguild.workers.dev/llms.txt)
