# Go Module Updates Digest (oracles-production)

> Go Module Updates Digest (oracles-production) is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns an LLM-written digest summarizing the most consequential Go module updates and breaking changes within a configurable time window, with upgrade guidance.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/gomod/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/go-module-updates-digest-oracles-production-37dab603
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lb4Ovlwb43z8D2H77nhJH

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 go-module-updates-digest-oracles-production-37dab603
```

Example prompt: Give me an AI-written digest of the most important Go module updates and breaking changes from the past 30 days, with upgrade guidance.

## When to prefer this

Use this endpoint when you need a human-readable, AI-curated narrative summary of recent Go module ecosystem changes rather than raw changelog data. Ideal for developers wanting a quick brief on what to upgrade, or for automated reports on Go dependency health. Prefer over raw package registry queries when upgrade guidance and prioritization are needed.

## Known failure modes

- No changes found in the window — returns a brief indicating no significant updates
- Invalid 'since' datetime format — likely 400 error or ignored parameter
- Payment not provided or invalid — 402 Payment Required response
- Service unavailable or LLM generation failure — 500 or timeout

## How this service works

Plain-English digest of the Go module ecosystem: which tracked packages (gin, cobra, testify, v4, and more) shipped notable or breaking major releases since T, why they matter, and whether to bump your go.mod.

## Output

A JSON object containing a 'brief' field with an LLM-generated prose digest of the most consequential Go module updates and breaking changes, a 'generatedBy' field indicating whether it was written by an LLM or template, and a 'basedOnChanges' integer indicating how many changes were analyzed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/go-module-updates-digest-oracles-production-37dab603/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
