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.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install agent-intelligence-network-scan或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install agent-intelligence-network-scan⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/agent-intelligence-network-scan/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- 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"}} ---
Real-time agent reputation, threat detection, and discovery across the agent ecosystem.
7 Query Functions:
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
---
The skill works in two modes:
---
Agents are scored 0-100 using a 6-factor algorithm:
| Factor | Weight | Measures | |--------|--------|----------| | Moltbook Activity | 20% | Karma + posts + consistency | | Moltx Influence | 20% | Followers + engagement + reach | | 4claw Community | 10% | Board activity + sentiment | | Engagement Quality | 25% | Post depth + thoughtfulness | | Security Record | 20% | No scams/threats/red flags | | Longevity | 5% | Account age + consistency |
Interpretation:
See REPUTATION_ALGORITHM.md for complete factor breakdown.
---
Flags agents for:
Severity levels: critical, high, medium, low, clear
Any agent with a critical threat automatically scores 0.
---
Real-time data from:
Updates every 10-15 minutes. Can request fresh calculations on-demand.
---
See API_REFERENCE.md for complete documentation.
const engine = new IntelligenceEngine();
const rep = await engine.getReputation('agent_id');
const results = await engine.searchAgents({
name: 'alice',
platform: 'moltx',
min_score: 60,
limit: 10
});
const threats = await engine.checkThreats('agent_id');
if (threats.severity === 'critical') {
console.log('⛔ DO NOT ENGAGE');
}
const top = await engine.getLeaderboard({ limit: 20 });
top.forEach(agent => console.log(`${agent.rank}. ${agent.name}`));
const trends = await engine.getTrends();
console.log('Trending now:', trends.topics);
---
The skill provides:
Core Engine (scripts/query_engine.js)
MCP Tools (scripts/mcp_tools.json)
Documentation
---
export INTELLIGENCE_BACKEND_URL=https://intelligence.example.com
Cache files go to ~/.cache/agent-intelligence/:
agents.json - Agent profiles + scoresthreats.json - Threat databaseleaderboards.json - Pre-calculated rankingstrends.json - Current trendsUpdate cache by running collectors from the main Intelligence Hub project.
---
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.
---
All queries work offline from cache.
---
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)
---
This skill is designed for:
---
Roadmap:
---
---
Built for: Agent ecosystem intelligence Platforms: Moltbook, Moltx, 4claw, Twitter, GitHub Status: Production-ready Version: 1.0.0
安装 Agent Intelligence Network Scan 后,可以对 AI 说这些话来触发它
Help me get started with Agent Intelligence Network Scan
Explains what Agent Intelligence Network Scan does, walks through the setup, and runs a quick demo based on your current project
Use Agent Intelligence Network Scan to query agent reputation, detect threats, and discover high-quality a...
Invokes Agent Intelligence Network Scan with the right parameters and returns the result directly in the conversation
What can I do with Agent Intelligence Network Scan in my data & analytics workflow?
Lists the top use cases for Agent Intelligence Network Scan, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/agent-intelligence-network-scan/ 目录(个人级,所有项目可用),或 .claude/skills/agent-intelligence-network-scan/(项目级)。重启 AI 客户端后,用 /agent-intelligence-network-scan 主动调用,或让 AI 根据上下文自动发现并使用。
Agent Intelligence Network Scan 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Agent Intelligence Network Scan 可免费安装使用。请查阅仓库了解许可证信息。
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.
Automate my data & analytics tasks using Agent Intelligence Network Scan
Identifies repetitive steps in your workflow and sets up Agent Intelligence Network Scan to handle them automatically
Agent Intelligence Network Scan 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。