# Send Argus Intelligence 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": "argus",
    "name": "Argus Intelligence",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/sooyoon-eth/argus",
    "canonicalUrl": "https://clawhub.ai/sooyoon-eth/argus",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/argus",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=argus",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "package.json",
      "README.md",
      "skill.json",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "argus",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T21:21:30.193Z",
      "expiresAt": "2026-05-06T21:21:30.193Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=argus",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=argus",
        "contentDisposition": "attachment; filename=\"argus-1.9.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "argus"
      },
      "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/argus"
    },
    "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/argus",
    "downloadUrl": "https://openagent3.xyz/downloads/argus",
    "agentUrl": "https://openagent3.xyz/skills/argus/agent",
    "manifestUrl": "https://openagent3.xyz/skills/argus/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/argus/agent.md"
  }
}
```
## Documentation

### ARGUS Intelligence Skill

Query blockchain intelligence and AI security services.

### Quick Start

export ARGUS_ENDPOINT="https://argus.getfailsafe.com"

# Test with free tier (3 queries/day, 1-min cooldown between queries)
curl -X POST $ARGUS_ENDPOINT/api/v1/free/query \\
  -H "Content-Type: application/json" \\
  -d '{"query": "Is this address safe: 0x742d35Cc...", "agentId": "my-agent"}'

Free quota is tracked per agentId. Check remaining quota:

curl "$ARGUS_ENDPOINT/api/v1/free/status?agentId=my-agent"

### Free Tier (No Payment)

EndpointDescriptionPOST /api/v1/free/query3 intelligence queries/day per agentId (1-min cooldown)GET /api/v1/free/status?agentId=XCheck remaining free queriesGET /api/v1/threatsPublic threat feedGET /api/v1/security/patternsAttack pattern documentation

### Intelligence ($0.42 USDC)

EndpointDescriptionPOST /api/v1/token/analyzeToken risk scoring and market dataPOST /api/v1/address/riskAML/KYT compliance screeningPOST /api/v1/compliance/checkOFAC sanctions and blacklist checksPOST /api/v1/smart-money/trackWhale and institutional trackingPOST /api/v1/entity/investigateEntity forensicsGET /api/v1/market/scanMarket overview

### Prompt Security ($0.10 USDC)

EndpointDescriptionPOST /api/v1/security/prompt-checkDetect prompt injection attacksPOST /api/v1/security/prompt-check/batchBatch checking (10% off for 10+)

### Social Verification ($0.25 USDC)

EndpointDescriptionPOST /api/v1/social/verifyUsername/project legitimacy + threat actor check

Note: verification uses pattern analysis and known threat actor databases.
Response includes data_source: "pattern_analysis_only" for transparency.

### Webhooks ($0.10/month)

EndpointDescriptionPOST /api/v1/webhooks/registerSubscribe to real-time event alertsGET /api/v1/webhooksList your active webhooksDELETE /api/v1/webhooks/:idRemove a webhook

Valid webhook events:
address_activity, token_risk_change, threat_detected, compliance_flag,
whale_movement, liquidity_change, watchlist_alert

Webhook secret is returned once at registration — store it immediately.
Webhooks are disabled after 5 consecutive delivery failures.

### Token Analysis

curl -X POST $ARGUS_ENDPOINT/api/v1/token/analyze \\
  -H "Content-Type: application/json" \\
  -d '{"token": "ETH", "chain": "ethereum"}'

### Address Risk

curl -X POST $ARGUS_ENDPOINT/api/v1/address/risk \\
  -H "Content-Type: application/json" \\
  -d '{"address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e"}'

### Prompt Security

curl -X POST $ARGUS_ENDPOINT/api/v1/security/prompt-check \\
  -H "Content-Type: application/json" \\
  -d '{"prompt": "User input to validate", "context": "defi"}'

Response:

{
  "is_safe": false,
  "risk_score": 75,
  "risk_level": "suspicious",
  "recommendation": "REVIEW",
  "attack_types": ["prompt_injection"],
  "details": "Detected social engineering pattern"
}

is_safe is false whenever attack_types is non-empty, regardless of risk_score.
recommendation is at minimum REVIEW when any attack is detected.

### Social Verification

curl -X POST $ARGUS_ENDPOINT/api/v1/social/verify \\
  -H "Content-Type: application/json" \\
  -d '{"username": "suspicious_user", "platform": "twitter"}'

Response:

{
  "verified": false,
  "risk_level": "high",
  "flags": ["known_threat_actor"],
  "data_source": "pattern_analysis_only",
  "analysis_note": "Username matched known threat actor database"
}

### Register Webhook

curl -X POST $ARGUS_ENDPOINT/api/v1/webhooks/register \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://your-agent.com/argus-events",
    "agentId": "my-agent",
    "events": ["threat_detected", "address_activity"]
  }'

### A2A (Agent-to-Agent)

ARGUS supports the A2A protocol. Query it directly with natural language:

# Discover capabilities
curl https://argus.getfailsafe.com/.well-known/agent.json

# Send an A2A message (blockchain queries are routed automatically)
curl -X POST $ARGUS_ENDPOINT/message \\
  -H "Content-Type: application/json" \\
  -d '{
    "type": "inquiry",
    "content": "Is 0x742d35Cc6634C0532925a3b844Bc454e4438f44e safe?",
    "agentId": "my-agent"
  }'

Free-tier quota applies to A2A blockchain queries. Responses include watermark
with upgrade options.

### Option 1 — Stripe (easiest, no crypto needed)

Buy 20 credits for $9 at buy.stripe.com
Pass X-Stripe-Token: <your-token> header with each request

curl -X POST $ARGUS_ENDPOINT/api/v1/token/analyze \\
  -H "Content-Type: application/json" \\
  -H "X-Stripe-Token: sk_argus_xxxx" \\
  -d '{"token": "0xabc...", "chain": "ethereum"}'

### Option 2 — x402 (USDC on Base)

For paid endpoints, ARGUS returns 402 Payment Required with payment instructions.

Send USDC to treasury on Base network
Create payment proof: base64({"txHash":"0x...","paymentId":"...","from":"0x..."})
Retry with X-Payment-Proof header

Treasury (Base): 0x8518E91eBcb6bE76f478879720bD9759e01B7954
Treasury (Solana): Ntx61j81wkQFLT5MGEKvMtazxH4wh6iXUNMtidgxXYH

### Configuration

export ARGUS_ENDPOINT="https://argus.getfailsafe.com"

### Response Format

All intelligence endpoints return JSON with:

recommendation: ALLOW, REVIEW, BLOCK, or REJECT
risk_score: 0–100 (lower is safer)
confidence: 0–100%
is_safe: boolean — false whenever attack_types is non-empty
Detailed analysis fields

### Rate Limits

30 requests/minute per IP
Free tier: 3 queries/day per agentId, 1-minute cooldown between queries

### Support

Website: https://getfailsafe.com
Capabilities: argus.getfailsafe.com/api/v1/capabilities
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sooyoon-eth
- Version: 1.9.2
## 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-29T21:21:30.193Z
- Expires at: 2026-05-06T21:21:30.193Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/argus)
- [Send to Agent page](https://openagent3.xyz/skills/argus/agent)
- [JSON manifest](https://openagent3.xyz/skills/argus/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/argus/agent.md)
- [Download page](https://openagent3.xyz/downloads/argus)