← 返回 Skills 市场
sooyoon-eth

Argus Intelligence

作者 sooyoon-eth · GitHub ↗ · v1.9.3 · MIT-0
cross-platform ✓ 安全检测通过
743
总下载
0
收藏
0
当前安装
9
版本数
在 OpenClaw 中安装
/install argus
功能描述
Free onchain intel and risk scanner. Basically free for most users with 35 free queries a day, then only costs $0.03/query. Token analysis, address risk, sma...
使用说明 (SKILL.md)

ARGUS Intelligence Skill

Free onchain intel and risk scanner.

Quick Start

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

# Test with free tier (35 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"

Services

Free Tier (No Payment)

Endpoint Description
POST /api/v1/free/query 35 intelligence queries/day per agentId (1-min cooldown)
GET /api/v1/free/status?agentId=X Check remaining free queries
GET /api/v1/threats Public threat feed
GET /api/v1/security/patterns Attack pattern documentation

Intelligence ($0.03 USDC)

Endpoint Description
POST /api/v1/token/analyze Token risk scoring and market data
POST /api/v1/address/risk AML/KYT compliance screening
POST /api/v1/compliance/check OFAC sanctions and blacklist checks
POST /api/v1/smart-money/track Whale and institutional tracking
POST /api/v1/entity/investigate Entity forensics
GET /api/v1/market/scan Market overview

Prompt Security ($0.03 USDC)

Endpoint Description
POST /api/v1/security/prompt-check Detect prompt injection attacks
POST /api/v1/security/prompt-check/batch Batch checking (10% off for 10+)

Social Verification ($0.03 USDC)

Endpoint Description
POST /api/v1/social/verify Username/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.03/month)

Endpoint Description
POST /api/v1/webhooks/register Subscribe to real-time event alerts
GET /api/v1/webhooks List your active webhooks
DELETE /api/v1/webhooks/:id Remove 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.

Usage Examples

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.

Payment

Option 1 — Stripe (easiest, no crypto needed)

  1. Buy 20 credits for $9 at https://buy.stripe.com/4gM28r6zseQlbJp72d4F202
  2. Pass X-Stripe-Token: \x3Cyour-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.

  1. Send USDC to treasury on Base network
  2. Create payment proof: base64({"txHash":"0x...","paymentId":"...","from":"0x..."})
  3. 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

安全使用建议
This skill appears internally consistent, but before installing: 1) Verify ARGUS_ENDPOINT is the official https://argus.getfailsafe.com (check TLS cert and homepage) to avoid pointing your agent to an attacker-controlled host. 2) Do not embed or expose secret payment tokens to endpoints you haven't verified; prefer short‑lived tokens and treat X-Stripe-Token/X-Payment-Proof as sensitive. 3) Only register webhooks to endpoints you control; store the returned webhook secret securely and rotate it if leaked. 4) Understand that agentId and webhook URLs you provide will be sent to the remote service. 5) Optionally review the linked GitHub repo and privacy/terms on getfailsafe.com for additional trust signals before use.
功能分析
Type: OpenClaw Skill Name: argus Version: 1.9.3 The Argus skill is a blockchain intelligence and risk assessment tool that interfaces with an external API (argus.getfailsafe.com). It provides endpoints for token analysis, address risk screening, and prompt injection detection using standard curl commands. The skill's behavior is consistent with its stated purpose, and no indicators of data exfiltration, malicious execution, or harmful prompt injection were found in the documentation or metadata files (SKILL.md, README.md).
能力评估
Purpose & Capability
Name/description describe onchain intel, and the skill only requires curl and ARGUS_ENDPOINT to call remote ARGUS API endpoints (token analysis, address risk, prompt-check, webhooks, etc.). These requirements are appropriate for the stated purpose.
Instruction Scope
SKILL.md instructs the agent to send requests (including agentId) to the configured ARGUS_ENDPOINT, to register webhooks (and store the returned webhook secret), and to optionally supply payment headers (X-Stripe-Token / X-Payment-Proof). These actions are consistent with a remote SaaS integration, but they do involve sharing agentId and receiving/storing a webhook secret — the user should ensure webhook endpoints and any tokens are handled securely and that the ARGUS_ENDPOINT is legitimate.
Install Mechanism
Instruction-only skill with no install spec or extracted downloads. No code is written to disk by an installer. This is low risk and appropriate for a wrapper that documents curl usage.
Credentials
Only ARGUS_ENDPOINT (and the curl binary) are required. ARGUS_ENDPOINT is the service endpoint and not a secret by itself; payment tokens are optional and supplied per-request. The requested env var is proportional to the skill's purpose. Note: because ARGUS_ENDPOINT controls where requests go, ensure it points to the official service before installation.
Persistence & Privilege
Skill is not forced-always, does not request any special agent-wide privileges, and contains no instructions to modify other skills or system-wide agent settings. Autonomous invocation is allowed (platform default) and is expected for this kind of integration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install argus
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /argus 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.9.3
- Free daily query limit increased from 3 to 35 per agentId. - Most paid endpoints now reduced to $0.03 USDC per query. - Webhook and social verification pricing dropped to $0.03. - Skill name and description updated to highlight free access and lower pricing. - Rate limits table for free tier updated to reflect new quota.
v1.9.2
- Added Stripe credits as a new payment option alongside x402 for paid intelligence queries. - Introduced webhooks for real-time event alerts, including endpoint registration and subscription management. - Added social verification endpoint to check username/project legitimacy and flag known threat actors. - Updated free tier: now 3 queries/day per agentId with a 1-minute cooldown between queries. - Improved documentation with usage examples, webhook event types, agent-to-agent (A2A) protocol, and detailed response format. - Expanded supported tags and streamlined payment and integration instructions.
v1.5.4
fix version inconsistencies on agentcard and endpoints
v1.5.3
- Added new file: skill.json. - No changes to functionality or documentation.
v1.5.2
- Added README.md for user documentation and quick reference. - Added package.json for dependency and project metadata management.
v1.5.1
No changes detected in this release. - Version bumped from 1.5.0 to 1.5.1 with no updates to documentation or code files.
v1.5.0
ARGUS 1.5.0 — streamlining & update - Modernized and shortened service descriptions, endpoints, and usage instructions - Removed legacy, verbose documentation and deprecated A2A protocol details - Clarified free and paid service tiers with new endpoint tables - Emphasized payment flow using x402 protocol with clearer examples - Updated branding and tags for compliance and AML focus - Added concise response formats, new rate limits, and contact information
v1.4.0
ARGUS v1.4.0 brings agent-to-agent (A2A) communication and inbox features: - Added A2A Message Inbox (`POST /message`) for direct agent-to-agent communication. - Enabled two-way A2A protocol support, including context-aware responses and conversation tracking. - Monitors Moltbook for mentions and replies, providing contextual notifications. - Improved error logging with detailed A2A failure categorization for easier debugging. - All previous intelligence and security services remain available, with no change to pricing or core functionality.
v1.0.0
ARGUS v1.3.0 is a major upgrade introducing new threat detection, security integrations, and conservative safety controls: - Original threat hunting: ARGUS can now detect and report novel (not just relayed) security threats. - Two-way PromptIntel integration: Real-time sync with the MoltThreats feed for sharing and consuming threat intelligence. - Security audit service: Free, public security assessments for ClawHub skills and AI agents. - Enhanced agent discovery: Identifies security-related agents via social media signals. - Stricter anti-hallucination safeguards: 90%+ confidence and multi-pattern verification required before reporting threats. - Design philosophy: Maintains a conservative, trust-oriented security posture.
元数据
Slug argus
版本 1.9.3
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 9
常见问题

Argus Intelligence 是什么?

Free onchain intel and risk scanner. Basically free for most users with 35 free queries a day, then only costs $0.03/query. Token analysis, address risk, sma... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 743 次。

如何安装 Argus Intelligence?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install argus」即可一键安装,无需额外配置。

Argus Intelligence 是免费的吗?

是的,Argus Intelligence 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Argus Intelligence 支持哪些平台?

Argus Intelligence 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Argus Intelligence?

由 sooyoon-eth(@sooyoon-eth)开发并维护,当前版本 v1.9.3。

💬 留言讨论