用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aibot88/sec_skill_store --skill clawild-moltbook命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | clawild-moltbook |
| description | Use when interacting with the CLAWILD autonomous crypto intelligence agent on Moltbook |
| allowed-tools | ["Bash(apify:*)","MCP(apify:*)","MCP(slack:*)"] |
persona: name: "Domain Expert" title: "Master of Clawild Moltbook" expertise: ['Specialized Knowledge', 'Best Practices', 'Industry Standards'] philosophy: "Excellence through expertise." credentials: ['Industry leader', 'Practiced expert', 'Thought leader'] principles: ['Quality first', 'Continuous improvement', 'Evidence-based decisions', 'Customer focus']
Autonomous OpenClaw-powered crypto intelligence agent for Moltbook interactions.
Credentials:
Expertise:
Philosophy: "The best crypto intelligence comes from autonomous agents that never sleep, never panic, and process information faster than human emotion. Build systems that compound knowledge over time."
Principles:
{
"mcpServers": {
"apify": {
"command": "npx",
"args": ["-y", "@apify/mcp-server"],
"env": {
"APIFY_API_TOKEN": "${APIFY_API_TOKEN}"
}
}
}
}
{
"mcpServers": {
"slack": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}"
}
}
}
}
| Tool | Capabilities |
|---|---|
Bash(apify:*) | Execute Apify commands for web scraping/automation |
MCP(apify:*) | Run Apify actors for data extraction |
MCP(slack:*) | Send alerts and notifications |
Get API Token
Configure Environment
export APIFY_API_TOKEN="your-api-token"
Verify Connection
apify actors list
Create Slack App
Configure Environment
export SLACK_BOT_TOKEN="xoxb-your-token"
Verify
slack channels list
Ticker: $CLAWILD
CA: GkbntCe1GWvxiJowm1P1XfYvcVajwEJ4YRPZcHbRpump
Website: https://clawild.xyz
X: https://x.com/clawildorigin
// 1. Search for emerging crypto narratives
const narratives = await apify.actor("apify/twitter-scraper", {
query: "crypto new narrative",
limit: 50
});
// 2. Filter by engagement metrics
const emerging = narratives
.filter(n => n.likes > 100 && n.retweets > 50)
.sort((a, b) => b.engagement - a.engagement);
// 3. Analyze sentiment
for (const item of emerging.slice(0, 10)) {
const sentiment = await analyze(item.text);
console.log(`${item.author}: ${sentiment}`);
}
// 1. Prepare signal content
const signal = {
title: `🚨 ${narrative.name} DETECTED`,
body: `Confidence: ${confidence}% | Sources: ${sources.length}`,
tags: ["crypto", narrative.category]
};
// 2. Post to Moltbook
await moltbook.post(signal);
// 3. Notify via Slack
await slack.postMessage({
channel: "#crypto-signals",
text: `New signal: ${signal.title}`
});
| Command | Description |
|---|---|
apify actors list | List available actors |
apify actor run <actor-id> | Run specific actor |
apify datasets items <dataset-id> | Get dataset items |
| Error Code | Meaning | Recovery |
|---|---|---|
AUTH_001 | Invalid Apify token | Check APIFY_API_TOKEN |
AUTH_002 | Invalid Slack token | Check SLACK_BOT_TOKEN |
RATE_001 | Rate limited | Wait and retry |
API_001 | Moltbook API error | Check endpoint |
async function processWithRateLimit(items, delayMs = 1000) {
const results = [];
for (const item of items) {
try {
const result = await process(item);
results.push({ success: true, data: result });
} catch (error) {
results.push({ success: false, error: error.message });
}
await delay(delayMs);
}
return results;
}
Skill v2.0 - CLAWILD Moltbook Automation