# Vealth Regen RFC Reviewer

> Vealth Regen RFC Reviewer is a paid API for AI agents from vealth.net, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Analyzes a regenerative finance (Regen Network) RFC document in Markdown and returns a structured quality assessment covering gaps, rigour, specificity, defensibility, and pass/fail section counts.

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/regen-rfc-reviewer
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-regen-rfc-reviewer-e7871c7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GaGtmSOyincPSEBMXWYW_

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 vealth-regen-rfc-reviewer-e7871c7b -d '<json body>'
```

Example prompt: Can you review my Regen Network RFC and tell me if it's ready to submit? I want to know the rigour, specificity, and defensibility scores, and which sections are failing — here's the full Markdown text of the RFC.

## When to prefer this

Choose this endpoint when you need a deterministic, structured quality assessment of a Regen Network RFC or regenerative carbon methodology document — specifically when you need section-level pass/fail verdicts, numeric rigour/specificity/defensibility scores, and gap identification with section references, rather than a generic document review or editorial feedback.

## Known failure modes

- Empty or non-Markdown rfc_markdown input returns a parsing error
- Extremely short or malformed RFC text may produce unreliable scores
- Missing required sections (e.g. baseline, MRV) will inflate sections_fail count and likely return ready_to_submit: false
- Rate limiting or payment failure returns HTTP 402 or 429

## How this service works

Find useful work. Build a life from it. Every job shows the place, the task, the proof, and the pay before you begin. Start today and grow toward mastery.

## Output

A JSON object containing: an array of identified gaps with section references, numeric scores for rigour (0–1), specificity (0–1), and defensibility (0–1), counts of sections that pass and fail review criteria, and a boolean ready_to_submit flag indicating overall submission readiness.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "rfc_markdown": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "gaps": [
   "Section 4: Baseline missing additionality argument",
   "Section 7: MRV cadence not specified"
  ],
  "rigour": 0.72,
  "specificity": 0.81,
  "defensibility": 0.65,
  "sections_fail": 2,
  "sections_pass": 8,
  "ready_to_submit": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-regen-rfc-reviewer-e7871c7b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vealth.net](https://www.zero.xyz/host/vealth.net/llms.txt)
