# Send BlindOracle - Privacy-First Agent Infrastructure to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "blindoracle",
    "name": "BlindOracle - Privacy-First Agent Infrastructure",
    "source": "tencent",
    "type": "skill",
    "category": "金融交易",
    "sourceUrl": "https://clawhub.ai/craigmbrown/blindoracle",
    "canonicalUrl": "https://clawhub.ai/craigmbrown/blindoracle",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/blindoracle",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=blindoracle",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "handler.py",
      "skill.json",
      "README.md",
      "__init__.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "blindoracle",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T10:26:07.393Z",
      "expiresAt": "2026-04-30T10:26:07.393Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=blindoracle",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=blindoracle",
        "contentDisposition": "attachment; filename=\"blindoracle-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "blindoracle"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/blindoracle"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/blindoracle",
    "downloadUrl": "https://openagent3.xyz/downloads/blindoracle",
    "agentUrl": "https://openagent3.xyz/skills/blindoracle/agent",
    "manifestUrl": "https://openagent3.xyz/skills/blindoracle/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/blindoracle/agent.md"
  }
}
```
## Documentation

### BlindOracle

Privacy-first agent infrastructure providing forecasting, credential verification, settlement, and cross-rail transfers via x402 micropayments.

### Description

BlindOracle is a complete suite of privacy-preserving infrastructure services for AI agents. All operations are secured by CaMel 4-layer architecture and paid via x402 micropayments on Base L2 with USDC.

### Service Tracks

Forecasting Platform - Create and resolve privacy-preserving forecast markets with anonymous position submission
Credential Verification - Decentralized agent identity scoring with anti-synthetic detection
Account & Settlement - Multi-rail balance management and value transfer (instant ~3s, on-ledger ~30s)
Cross-Rail Transfers - Atomic transfers between payment rails with free fee quotes

### Capabilities

CapabilityDescriptionPricecreate_forecastCreate a new forecast market0.001 USDCsubmit_positionSubmit anonymous position0.0005 USDC + 0.1%resolve_forecastResolve forecast and distribute payouts0.002 USDCverify_credentialVerify agent credentials and reputation0.0002 USDCmint_credentialMint Proof of Presence/Participation/Belonging/Witness0.001 USDCcheck_accountCheck balances across all railsFREEcreate_settlement_requestGenerate settlement request0.0001 USDCsettle_instantInstant rail settlement (~3s)0.0005 USDC + 0.1%settle_onchainOn-chain rail settlement (~30s)0.001 USDC + 0.05%transfer_cross_railCross-rail transfer execution0.001 USDC + 0.1%convert_private_to_stableConvert private tokens to stablecoins0.0005 USDC + 0.05%get_transfer_quoteGet fee estimates and route plansFREE

### Usage

// Check account balances (FREE)
const balance = await gateway.invoke("blindoracle", {
  capability: "check_account",
  params: { rail: "all" }
});

// Create a forecast
const forecast = await gateway.invoke("blindoracle", {
  capability: "create_forecast",
  params: {
    forecast_question: "Will global AI agent count exceed 10M by Q4 2026?",
    forecast_deadline: "2026-12-31T23:59:59Z",
    initial_stake_units: 10000,
    resolution_oracle: "chainlink_data_feed"
  },
  payment_proof: { /* x402 proof */ }
});

// Verify agent credentials
const creds = await gateway.invoke("blindoracle", {
  capability: "verify_credential",
  params: {
    agent_public_key: "ba3eefec0e795362230f869461ea16e20b782e11eef6107edeed0d3d19e7651b"
  }
});

### Security

All operations protected by CaMel 4-Layer Security:

Layer 1: Rate limiting (60 req/min) + input sanitization
Layer 2: Byzantine consensus (67% threshold, 80% for high-value)
Layer 3: Anti-persuasion detection (30% deviation threshold)
Layer 4: Authority validation + immutable audit trail

### Privacy

Zero-identity-linkage via guardian federation bridge
Commitment scheme: sha256(secret || stance || amount)
Depositor and position holder are unlinkable
Decentralized credentials without central authority

### API Endpoints

Base URL: https://craigmbrown.com/api/v2
Agent Card: https://craigmbrown.com/a2a/v1
Health: https://craigmbrown.com/api/v2/health

### Payment

All payments via HTTP 402 (x402) micropayment protocol on Base L2 (chain ID 8453) with USDC.

### Requirements

x402-compatible payment client
Base L2 USDC for paid capabilities
No dependencies for free capabilities (check_account, get_transfer_quote)

### Support

Homepage: https://craigmbrown.com/blindoracle
Repository: https://github.com/craigmbrown/blindoracle-docs
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: craigmbrown
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-23T10:26:07.393Z
- Expires at: 2026-04-30T10:26:07.393Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/blindoracle)
- [Send to Agent page](https://openagent3.xyz/skills/blindoracle/agent)
- [JSON manifest](https://openagent3.xyz/skills/blindoracle/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/blindoracle/agent.md)
- [Download page](https://openagent3.xyz/downloads/blindoracle)