# crackthe.work Decompose

> crackthe.work Decompose is a paid API for AI agents from wellsyncc-x402.2ng-nhan.workers.dev, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Accepts up to 8 scope documents and returns a contract-grade work breakdown structure (WBS) decomposed into tasks and subtasks.

## Facts

- Endpoint: POST https://wellsyncc-x402.2ng-nhan.workers.dev/v1/decompose
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crackthe-work-decompose-6687325e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z_9-pOVikXu-vUdiR9beK

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 crackthe-work-decompose-6687325e -d '<json body>'
```

Example prompt: Take these two scope documents I'm uploading — the statement of work PDF and the technical requirements doc — and decompose them into a contract-grade work breakdown structure using decompose mode with a $50 budget hint.

## When to prefer this

Choose this endpoint when you need a structured, contract-grade work breakdown from raw scope documents (PDFs, specs, statements of work) rather than a simple task list. It is purpose-built for professional project scoping, contract analysis, and deliverable planning rather than general document summarization or extraction.

## Known failure modes

- Missing or unreadable base64 document data — returns validation error
- More than 8 documents submitted — rejected by maxItems constraint
- Unsupported MIME type for document parsing — may return parse failure
- Budget hint too low to complete full decomposition — may return partial result or error
- Invalid mode value (not 'decompose' or 'extract') — schema validation error
- Payment not completed via x402 protocol — 402 Payment Required response

## How this service works

One decompose call: scope documents in, a contract-grade work breakdown out.

## Output

A contract-grade work breakdown structure derived from the submitted scope documents, organized into hierarchical tasks, subtasks, and deliverables suitable for project planning and contract management.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "docs": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "name",
     "mimeType",
     "dataBase64"
    ],
    "properties": {
     "name": {
      "type": "string"
     },
     "mimeType": {
      "type": "string"
     },
     "dataBase64": {
      "type": "string"
     }
    }
   },
   "maxItems": 8,
   "minItems": 1
  },
  "host": {
   "type": "boolean"
  },
  "mode": {
   "enum": [
    "decompose",
    "extract"
   ],
   "type": "string"
  },
  "budgetHintUsdt": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crackthe-work-decompose-6687325e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wellsyncc-x402.2ng-nhan.workers.dev](https://www.zero.xyz/host/wellsyncc-x402.2ng-nhan.workers.dev/llms.txt)
