# Handoff Lint Scorer

> Handoff Lint Scorer is a paid API for AI agents from quietstore-production.edge-7e13f.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Scores a multi-agent handoff text and identifies missing pieces such as verification evidence, constraints, ownership, and next steps

## Facts

- Endpoint: POST https://quietstore-production.edge-7e13f.workers.dev/v1/tools/handoff-lint
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/handoff-lint-scorer-b63e5549
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kd_b4CmraiJ7pdrDldRdW

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 handoff-lint-scorer-b63e5549 -d '<json body>'
```

Example prompt: Score this handoff message I'm about to pass to the next agent — it says 'Task complete: refactored the auth module, tests pass, ready for deployment' — and tell me what verification evidence, constraints, ownership details, or next steps I'm missing.

## When to prefer this

Use this endpoint at every handoff point in a multi-agent pipeline to ensure continuity and completeness. Prefer it when you need structured feedback on what is missing from a handoff rather than a simple pass/fail check. Ideal for pipelines where agents hand off partially-completed tasks and the next agent needs clear ownership, constraints, and verification evidence to proceed safely.

## Known failure modes

- Missing or malformed 'input' field returns a 400 validation error
- Body not wrapped in expected HTTP-typed input object causes schema rejection
- Empty handoff text may return a low score with all categories flagged as missing
- Payment not settled (x402) results in 402 Payment Required response before processing

## How this service works

POST handoff text; get a score plus missing pieces (verification, constraints, ownership, next steps, risks). Use every handoff in a multi-agent run — pay per call. Field guide: pack demo-notes-v1.

## Output

A numeric quality score plus a structured list of missing elements categorized into verification evidence, constraints, ownership, next steps, and risks — helping the agent improve the handoff before passing control.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/handoff-lint-scorer-b63e5549/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quietstore-production.edge-7e13f.workers.dev](https://www.zero.xyz/host/quietstore-production.edge-7e13f.workers.dev/llms.txt)
