# Wever Labs OpenClaw reference-agent prompt

Purpose: call the Wever Labs work-order endpoint as a developer on-ramp test, not as an adoption claim.

Safety rule: do not use private keys, secrets, API tokens, regulated records, client data, or confidential business data. Only call the public endpoint with the test payload below.

Task:
1. Send a POST request to https://weverlabs.com/api/work-orders using the JSON payload below.
2. Return the JSON response.
3. Confirm whether verification_state is receipt_verified.
4. Confirm whether persistence.work_order.persisted, persistence.receipt.persisted, and persistence.trust_ledger.persisted are true.
5. Open or return the profile URL for the requester_agent.

Default payload:

```json
{
  "requester_agent": "weverlabs-reference-diligence-agent-001",
  "rail": "diligenceops",
  "scope": "reference_agent_receipt_backed_work_order_test",
  "payment_authority": "reference_agent_allowance:openclaw_reference_001",
  "record_source": "internal_reference_agent",
  "counts_as_adoption": false,
  "proof_required": [
    "receipt",
    "return_package",
    "verification_packet",
    "trust_ledger_record"
  ],
  "movement_amount_units": 100,
  "movement_type": "transaction",
  "idempotency_key": "weverlabs-reference-diligence-agent-001"
}
```

Success criteria:
- verification_state: receipt_verified
- persistence.work_order.persisted: true
- persistence.receipt.persisted: true
- persistence.trust_ledger.persisted: true
- proof_of_life_checks.this_record_counts_as_adoption: false

Profile URL:
https://weverlabs.com/api/agent-work-history?agent_id=weverlabs-reference-diligence-agent-001

External builder note:
If an outside builder forks this prompt and runs the rail from their own environment, they may choose their own non-Wever requester_agent and source label. The default Wever Labs reference-agent example remains internal and non-adoption.
