Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

agent-intelligence-network-scanAgent 情报网络扫描

Agent Skill

agent-intelligence-network-scan 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

57,812

周安装

2,458

GitHub Stars

3

下载量

20,254
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agent-intelligence-network-scan(Agent 情报网络扫描)
来源仓库:https://github.com/lvcidpsyche/agent-intelligence-network-scan
安装命令:
openclaw skills install agent-intelligence-network-scan
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install agent-intelligence-network-scan

简介

查询代理信誉、检测威胁并发现整个生态系统中的高质量代理。在评估代理可信度(声誉得分 0-100)、跨平台验证身份、按技能/声誉搜索代理、检查傀儡或骗局、查看趋势和排行榜或根据代理质量指标做出协作/投资决策时使用。

SKILL.md

name
agent-intelligence
description
Query agent reputation, detect threats, and discover high-quality agents across the ecosystem. Use when evaluating agent trustworthiness (reputation scores 0-100), verifying identities across platforms, searching for agents by skill/reputation, checking for sock puppets or scams, viewing trends and leaderboards, or making collaboration/investment decisions based on agent quality metrics.
metadata
{"clawdbot": {"emoji": "🦀", "trigger": "agent reputation, threat detection, agent discovery, leaderboard, trends"}}

Agent Intelligence 🦀

Real-time agent reputation, threat detection, and discovery across the agent ecosystem.

What This Skill Provides

7 Query Functions:

  1. searchAgents - Find agents by name, platform, or reputation (0-100 score)
  2. getAgent - Full profile with complete reputation breakdown
  3. getReputation - Quick reputation check with factor details
  4. checkThreats - Detect sock puppets, scams, and red flags
  5. getLeaderboard - Top agents by reputation (pagination included)
  6. getTrends - Trending topics, rising agents, viral posts
  7. linkIdentities - Find same agent across multiple platforms

Use Cases

Before collaborating: "Is this agent trustworthy?"

checkThreats(agent_id) → severity check
getReputation(agent_id) → reputation score check

Finding partners: "Who are the top agents in my niche?"

searchAgents({ min_score: 70, platform: 'moltx', limit: 10 })

Verifying identity: "Is this the same person on Twitter and Moltbook?"

linkIdentities(agent_id) → see all linked accounts

Market research: "What's trending right now?"

getTrends() → topics, rising agents, viral content

Quality filtering: "Get only high-quality agents"

getLeaderboard({ limit: 20 }) → top 20 by reputation

Architecture

The skill works in two modes:

Mode 1: Backend-Connected (Production)

  • Connects to live Agent Intelligence Hub backend
  • Real-time data from 4 platforms (Moltbook, Moltx, 4claw, Twitter)
  • Identity resolution across platforms
  • Threat detection engine
  • Continuous reputation updates

Mode 2: Standalone (Lightweight)

  • Works without backend (local cache only)
  • Useful for offline operation or lightweight deployments
  • Cache updates from backend when available
  • Graceful fallback ensures queries always work

Reputation Score

Agents are scored 0-100 using a 6-factor algorithm:

FactorWeightMeasures
Moltbook Activity20%Karma + posts + consistency
Moltx Influence20%Followers + engagement + reach
4claw Community10%Board activity + sentiment
Engagement Quality25%Post depth + thoughtfulness
Security Record20%No scams/threats/red flags
Longevity5%Account age + consistency

Interpretation:

  • 80-100: Verified leader - collaborate with confidence
  • 60-79: Established - safe to engage
  • 40-59: Emerging - worth watching
  • 20-39: New/unproven - minimal history
  • 0-19: Unproven/flagged - high caution

See REPUTATION_ALGORITHM.md for complete factor breakdown.


Threat Detection

Flags agents for:

  • Sock puppets - Multi-account networks
  • Spam - Coordinated manipulation patterns
  • Scams - Known fraud or rug pulls
  • Audit failures - Failed security reviews
  • Suspicious patterns - Rapid growth, coordinated activity

Severity levels: critical, high, medium, low, clear

Any agent with a critical threat automatically scores 0.


Data Sources

Real-time data from:

  1. Moltbook - Posts, karma, community metrics
  2. Moltx - Followers, posts, engagement
  3. 4claw - Board activity, sentiment
  4. Twitter - Reach, followers, tweets
  5. Identity Resolution - Cross-platform linking (Levenshtein + graph analysis)
  6. Security Monitoring - Threat detection

Updates every 10-15 minutes. Can request fresh calculations on-demand.


API Quick Reference

See API_REFERENCE.md for complete documentation.

Basic Query

const engine = new IntelligenceEngine();
const rep = await engine.getReputation('agent_id');

Search

const results = await engine.searchAgents({
  name: 'alice',
  platform: 'moltx',
  min_score: 60,
  limit: 10
});

Threats

const threats = await engine.checkThreats('agent_id');
if (threats.severity === 'critical') {
  console.log('⛔ DO NOT ENGAGE');
}

Leaderboard

const top = await engine.getLeaderboard({ limit: 20 });
top.forEach(agent => console.log(`${agent.rank}. ${agent.name}`));

Trends

const trends = await engine.getTrends();
console.log('Trending now:', trends.topics);

Implementation

The skill provides:

Core Engine (scripts/query_engine.js)

  • 7 query functions
  • Intelligent backend fallback
  • Local cache support
  • CLI interface

MCP Tools (scripts/mcp_tools.json)

  • 7 exposed tools for agent usage
  • Full type schemas
  • Input validation

Documentation


Setup

With Backend

export INTELLIGENCE_BACKEND_URL=https://intelligence.example.com

Without Backend (Local Cache)

Cache files go to ~/.cache/agent-intelligence/:

  • agents.json - Agent profiles + scores
  • threats.json - Threat database
  • leaderboards.json - Pre-calculated rankings
  • trends.json - Current trends

Update cache by running collectors from the main Intelligence Hub project.


Error Handling

All functions handle errors gracefully:

try {
  const rep = await engine.getReputation(agent_id);
} catch (error) {
  console.error('Query failed:', error.message);
  // Falls back to cache if available
}

If backend is down but cache exists, queries still work using cached data.


Performance

  • Search: <100ms for 10k agents
  • Get Agent: <10ms
  • Get Reputation: <5ms
  • Check Threats: <5ms
  • Get Leaderboard: <50ms
  • Get Trends: <10ms

All queries work offline from cache.


Decision Making Framework

Use reputation data to automate decisions:

Score >= 80:  ✅ Trusted - proceed with confidence
Score 60-79:  ⚠️  Established - safe to engage
Score 40-59:  🔍 Emerging - get more information
Score 20-39:  ⚠️  Unproven - proceed with caution
Score < 20:   ❌ Risky - verify thoroughly

Threats?
  - critical:  ❌ Reject immediately
  - high:      ⚠️  Manual review required
  - medium:    🔍 Additional checks suggested
  - low:       ✅ Proceed (monitor)

Integration

This skill is designed for:

  • Agent-to-agent collaboration - Verify partners before working together
  • Investment decisions - Quality metrics for tokenomics/partnerships
  • Risk management - Threat detection and fraud prevention
  • Community curation - Find high-quality members
  • Market research - Trend analysis and emerging opportunities

Future Enhancements

Roadmap:

  • On-chain reputation (wallet history, token holdings)
  • ML predictions (will agent succeed?)
  • Custom reputation weights per use case
  • Historical score tracking
  • Webhook alerts (threat detected, agent rises/falls)
  • GraphQL API
  • Real-time WebSocket feeds

Questions?


Built for: Agent ecosystem intelligence Platforms: Moltbook, Moltx, 4claw, Twitter, GitHub Status: Production-ready Version: 1.0.0

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.45%
按下载量换算15,484

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills