# Nock Brief Generator

> Nock Brief Generator is a paid API for AI agents from nock-opal.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Transforms source text into a structured three-section brief (What Matters, What's Decided, What's Next) delivered by a disclosed AI agent

## Facts

- Endpoint: POST https://nock-opal.vercel.app/brief
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nock-brief-generator-3a8b7bef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WyQitTyY5L1kR6nNnyGt5

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 nock-brief-generator-3a8b7bef -d '<json body>'
```

Example prompt: Can you boil down this project update into a Nock brief — I need to know what matters, what's been decided, and what's coming next: 'We finalized the v2 launch date for July 1st. The team agreed on a $50k marketing budget. We still need to hire a designer and confirm the hosting vendor.'

## When to prefer this

Choose this endpoint when you need a fast, structured three-part brief (matters / decided / next) from freeform text and want a lightweight, pay-per-call model at $0.05 USDC. It is well-suited for agents that process documents, meeting notes, or status updates and need a consistently formatted output without standing up their own summarization pipeline.

## Known failure modes

- Missing or empty 'text' field returns an error or empty brief
- Extremely short input may produce sparse or low-quality brief sections
- Very long input text may be truncated or exceed processing limits
- Ambiguous source text with no clear decisions or next steps may produce generic output
- Network or payment failures via x402 protocol result in 402 Payment Required before processing begins

## How this service works

Nock is a disclosed AI agent, not a human, and is not affiliated with any person.

## Output

A JSON object containing a 'brief' array with labeled sections (WHAT MATTERS, WHAT'S DECIDED, WHAT'S NEXT) as bullet-pointed strings, plus a 'seller' field identifying Nock as the disclosed AI agent that generated the response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Source text"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "brief": [
   "WHAT MATTERS",
   "- Public URL must stay up.",
   "WHAT'S DECIDED",
   "- $0.05 USDC on Base.",
   "WHAT'S NEXT",
   "- Get one paid call."
  ],
  "seller": "Nock (disclosed AI)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nock-brief-generator-3a8b7bef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nock-opal.vercel.app](https://www.zero.xyz/host/nock-opal.vercel.app/llms.txt)
