# Send Valiron 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "valiron-trust-layer",
    "name": "Valiron",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/vatsashah45/valiron-trust-layer",
    "canonicalUrl": "https://clawhub.ai/vatsashah45/valiron-trust-layer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/valiron-trust-layer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=valiron-trust-layer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "assets/payment-interceptor.ts",
      "references/decision-policy.md",
      "references/runtime-requirements.md",
      "references/audit-events.md",
      "references/fallback-modes.md",
      "references/error-handling.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/valiron-trust-layer"
    },
    "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/valiron-trust-layer",
    "downloadUrl": "https://openagent3.xyz/downloads/valiron-trust-layer",
    "agentUrl": "https://openagent3.xyz/skills/valiron-trust-layer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/valiron-trust-layer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/valiron-trust-layer/agent.md"
  }
}
```
## Documentation

### Valiron Payment Interceptor

Add a trust gate in front of outgoing agent payments.

### Runtime requirements

Declare and validate runtime prerequisites before enabling the interceptor:

Node.js runtime compatible with your app and @valiron/sdk.
Installed dependencies:

@valiron/sdk
Your payment rail package(s) (x402 or equivalent) used by the host app.


Configuration/credentials (via secret manager or env vars):

VALIRON_API_KEY (optional today; reserved for authenticated deployments)
VALIRON_BASE_URL (if using non-default endpoint)
VALIRON_TIMEOUT_MS (optional, with safe default)


Policy/config inputs:

Decision policy JSON (route-to-action matrix)
Spend limit defaults and per-route overrides

Fail startup (or fail closed for payment endpoints) when required policy/config inputs are missing. If your deployment enforces SDK auth, treat VALIRON_API_KEY as required.

### Workflow

Extract counterparty identity from the payment request.

Prefer counterpartyAgentId.
Support wallet fallback with getWalletProfile(wallet).


Evaluate trust with Valiron.

Fast path: checkAgent(agentId).
Full path: getAgentProfile(agentId) when you need reasons/signals, pricing, or audit details.


Apply deterministic decision policy from references/decision-policy.md.
Enforce spend controls from references/spend-controls.md.
If allowed, continue to payment initiation (x402 challenge creation or equivalent flow).
If blocked/restricted, return explicit denial/degrade reason.
Log outcome using references/audit-events.md.

### Decision model

Map route decisions to payment actions:

prod: allow payment under normal limits.
prod_throttled: allow with reduced caps/rate limits.
sandbox: allow only test/sandbox payment rail (or deny prod transfer).
sandbox_only: deny outgoing payment.

Never authorize payment using free-form model output alone.

### x402-specific sequencing

For x402-protected purchases or settlement-like flows:

Trust-check counterparty identity.
Evaluate route + spend policy.
If denied, abort before creating payment commitment.
If allowed, generate/send x402 payment payload.
Record authorization decision + amount + result.

### Outage and fallback

Use endpoint-class fallback from references/fallback-modes.md:

High-risk payment actions: fail-closed.
Low-risk/test actions: optional fail-open-guarded with strict caps.

Keep fallback mode explicit and versioned.

### Use bundled resources

Runtime + credential checklist: references/runtime-requirements.md
Decision matrix: references/decision-policy.md
Spend/risk controls: references/spend-controls.md
Fallback guidance: references/fallback-modes.md
Audit schema: references/audit-events.md
Error handling: references/error-handling.md
Interceptor template: assets/payment-interceptor.ts
Policy validator: scripts/validate-payment-policy.mjs
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: vatsashah45
- Version: 1.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/valiron-trust-layer)
- [Send to Agent page](https://openagent3.xyz/skills/valiron-trust-layer/agent)
- [JSON manifest](https://openagent3.xyz/skills/valiron-trust-layer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/valiron-trust-layer/agent.md)
- [Download page](https://openagent3.xyz/downloads/valiron-trust-layer)