# TaskHawk Kevros Trust Bundle Generator

> TaskHawk Kevros Trust Bundle Generator is a paid API for AI agents from governance.taskhawktech.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Generates a portable, post-quantum cryptography (PQC)-signed identity and trust certificate bundle for a given agent

## Facts

- Endpoint: POST https://governance.taskhawktech.com/governance/bundle
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/taskhawk-kevros-trust-bundle-generator-4c06463d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pl03mqRx8MMam4rRcQmzs

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 taskhawk-kevros-trust-bundle-generator-4c06463d -d '<json body>'
```

Example prompt: Get me a portable PQC-signed trust certificate bundle for agent ID 'agt_abc123' so I can use it across systems.

## When to prefer this

Use this endpoint when an AI agent needs a portable, cryptographically verifiable identity credential signed with post-quantum cryptography (ML-DSA-87). Prefer this over traditional certificate endpoints when PQC resistance and hash-chained record integrity are required, or when the credential must be carried across trust boundaries in a self-contained bundle format.

## Known failure modes

- Invalid or missing agent_id returns 400 with validation error
- Unknown agent_id returns 404 not found
- Payment not provided or insufficient USDC causes 402 Payment Required
- PQC signing service unavailable returns 503
- Chain integrity verification failure returns 500 with integrity error

## How this service works

Get your trust certificate — portable, PQC-signed identity bundle

## Output

A JSON object containing a unique bundle_id, a SHA-256 hash of the bundle, a count of attestation records included, a post-quantum ML-DSA-87 signature, and a boolean confirming chain integrity of the full record set.

## 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",
     "required": [
      "agent_id"
     ],
     "properties": {
      "agent_id": {
       "type": "string",
       "description": "Agent to get trust certificate for"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bundle_id": "bun_001",
  "bundle_hash": "sha256_abc...",
  "record_count": 42,
  "pqc_signature": "ml-dsa-87...",
  "chain_integrity": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/taskhawk-kevros-trust-bundle-generator-4c06463d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from governance.taskhawktech.com](https://www.zero.xyz/host/governance.taskhawktech.com/llms.txt)
