Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

social-media-dashboard社交媒体仪表板

Agent Skill

social-media-dashboard 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,711

周安装

315

GitHub Stars

公开资料未说明

下载量

2,470
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:social-media-dashboard(社交媒体仪表板)
来源仓库:https://github.com/luduoxin/social-media-dashboard
安装命令:
openclaw skills install social-media-dashboard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install social-media-dashboard

简介

social-media-dashboard 聚合并展示头条号及其他平台的粉丝、阅读和收益数据。

  • 适用于自媒体运营的数据可视化和报告生成场景。
  • 提供多平台数据整合,辅助运营决策和效果分析。
  • 安装方式:openclaw skills install social-media-dashboard,宿主为 OpenClaw。
  • 使用前请确认权限范围和维护状态,注意可能涉及数据读取和网络访问。

SKILL.md

Social Media Dashboard

多平台自媒体数据看板 - 一键聚合各平台粉丝、阅读、收益数据,生成可视化报表。

功能

  • 整理头条号粉丝数、阅读量、收益数据
  • 整理 CSDN 作品数据、收益数据、粉丝数据
  • 整理知乎内容数据、收益数据
  • 生成数据看板和趋势报告
  • 支持多平台扩展(公众号、小红书、B站、抖音等)

支持的浏览器

浏览器AppleScript 支持执行 JS需要权限推荐度
Chrome✅ 完整支持需手动开启⭐⭐⭐ 推荐
Safari✅ 完整支持需手动开启⭐⭐⭐ 推荐
Firefox❌ 不支持-不适用

使用方法

选择平台

根据用户请求选择对应平台的数据整理流程:

平台触发词数据页面
头条号头条号、头条mp.toutiao.com
CSDNCSDN、博客mp.csdn.net
知乎知乎、知乎创作zhihu.com/creator

当用户请求查看头条号或 CSDN 数据时,必须按照以下流程执行

步骤 1:检测可用浏览器

优先检测 Chrome,其次 Safari:

# 检测 Chrome
osascript -e 'tell application "System Events" to return exists application process "Google Chrome"' 2>/dev/null || echo "NOT_INSTALLED"

# 检测 Safari
osascript -e 'tell application "System Events" to return exists application process "Safari"' 2>/dev/null || echo "NOT_INSTALLED"

情况 A:没有支持的浏览器

如果 Chrome 和 Safari 都不可用:

你的电脑上没有支持的浏览器。本 skill 支持 Chrome 或 Safari。 解决方案: 1. 安装 Chrome 或使用系统自带的 Safari 2. 或者手动提供数据:在浏览器中打开头条号后台,复制页面数据给我

步骤 2:选择浏览器并检测权限

根据可用浏览器,使用对应的检测脚本:

Chrome 权限检测

osascript <<'EOF'
tell application "Google Chrome"
    try
        set windowCount to count of windows
        return "PERMISSION_OK"
    on error
        return "PERMISSION_DENIED"
    end try
end tell
EOF

Safari 权限检测

osascript <<'EOF'
tell application "Safari"
    try
        set docCount to count of documents
        return "PERMISSION_OK"
    on error
        return "PERMISSION_DENIED"
    end try
end tell
EOF

情况 B:权限未开启

Chrome 开启步骤:

  1. 打开 Chrome 浏览器
  2. 点击顶部菜单「Chrome」→「视图」→「开发者」
  3. 勾选「允许来自 Apple Events 的 JavaScript」

Safari 开启步骤:

  1. 打开 Safari 浏览器
  2. 点击顶部菜单「Safari」→「偏好设置」→「高级」
  3. 勾选「在菜单栏中显示开发菜单」
  4. 然后点击「开发」→勾选「允许来自 Apple Events 的 JavaScript」
检测到浏览器未开启 AppleScript 执行权限。 请按上述步骤开启权限后告诉我「好了」。

步骤 3:检测登录状态

使用已授权的浏览器访问头条号:

Chrome 整理脚本

osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://mp.toutiao.com/profile_v4/"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

Safari 整理脚本

osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://mp.toutiao.com/profile_v4/"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

情况 C:未登录头条号

检测到你还未登录头条号,请先登录: 1. 我已为你打开头条号登录页面 2. 在浏览器中完成登录(扫码或账号密码) 3. 登录成功后告诉我「登录好了」

步骤 4:数据整理

所有条件满足后,执行完整数据整理:

Chrome 完整整理

# 首页
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://mp.toutiao.com/profile_v4/"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 收益数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://mp.toutiao.com/profile_v4/analysis/income-overview"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 作品数据-文章
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://mp.toutiao.com/profile_v4/analysis/works-single/article"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 粉丝数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://mp.toutiao.com/profile_v4/analysis/fans/overview"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

Safari 完整整理

# 首页
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://mp.toutiao.com/profile_v4/"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 收益数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://mp.toutiao.com/profile_v4/analysis/income-overview"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 作品数据-文章
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://mp.toutiao.com/profile_v4/analysis/works-single/article"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 粉丝数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://mp.toutiao.com/profile_v4/analysis/fans/overview"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

数据整理页面

页面URL数据内容
首页/profile_v4/账号信息、粉丝数、总阅读、累计收益
收益数据/analysis/income-overview日收益明细、收益趋势、可提现金额
作品数据-全部/analysis/works-overall/all整体展现量、阅读量、点赞评论
作品数据-文章/analysis/works-overall/article文章整体数据
作品数据-微头条/analysis/works-overall/weitoutiao微头条整体数据
单篇作品-文章/analysis/works-single/article每篇文章详细数据
单篇作品-微头条/analysis/works-single/weitoutiao每条微头条详细数据
粉丝数据/analysis/fans/overview粉丝变化、活跃度、粉丝画像

步骤 5:生成报告

从页面文本中提取数据,生成 Markdown 格式的数据看板。


错误处理流程图

用户请求查看头条号数据
        ↓
    检测可用浏览器
     ↓         ↓
  Chrome/Safari  无 → 提示安装或手动提供数据
     ↓
    权限已开启?
     ↓        ↓
    是        否 → 引导用户开启权限
     ↓
   已登录?
     ↓        ↓
    是        否 → 引导用户登录
     ↓
  来源资料 → 生成报告

触发词

查看我的头条号数据
查看我的头条号详细数据
获取头条号粉丝统计
头条号收益查询
查看我的 CSDN 数据
查看 CSDN 博客数据
获取 CSDN 粉丝统计
CSDN 收益查询
查看我的知乎数据
知乎内容数据分析
知乎收益查询
知乎创作数据
生成自媒体数据周报
我的自媒体数据

CSDN 数据整理

当用户请求查看 CSDN 数据时,执行以下流程:

步骤 1:检测登录状态

Chrome 登录检测

osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://mp.csdn.net/"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    if pageText contains "登录" then
        return "NOT_LOGGED_IN"
    else
        return "LOGGED_IN"
    end if
end tell
EOF

Safari 登录检测

osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://mp.csdn.net/"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    if pageText contains "登录" then
        return "NOT_LOGGED_IN"
    else
        return "LOGGED_IN"
    end if
end tell
EOF

未登录处理

检测到你还未登录 CSDN,请先登录: 1. 我已为你打开 CSDN 创作者中心 2. 在浏览器中完成登录(扫码或账号密码) 3. 登录成功后告诉我「登录好了」

步骤 2:整理 CSDN 数据

Chrome 完整整理

# 作品数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://mp.csdn.net/mp_blog/analysis/article/all"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 收益数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://mp.csdn.net/mp_others/analysis/rewardall"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 粉丝数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://mp.csdn.net/mp_others/analysis/fans/dataOverview"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

Safari 完整整理

# 作品数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://mp.csdn.net/mp_blog/analysis/article/all"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 收益数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://mp.csdn.net/mp_others/analysis/rewardall"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 粉丝数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://mp.csdn.net/mp_others/analysis/fans/dataOverview"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

CSDN 数据整理页面

页面URL数据内容
作品数据/mp_blog/analysis/article/all文章总数、阅读量、点赞、评论、收藏
收益数据/mp_others/analysis/rewardall累计收益、可提现、昨日收益、本月收益
粉丝数据/mp_others/analysis/fans/dataOverview粉丝总数、新增粉丝、活跃度

支持平台

平台状态数据类型
头条号✅ 已支持粉丝、阅读、收益
CSDN✅ 已支持作品、收益、粉丝
知乎✅ 已支持内容、收益
公众号🚧 开发中粉丝、阅读、用户画像
小红书📋 计划中粉丝、笔记数据
B站📋 计划中粉丝、播放、互动
抖音📋 计划中粉丝、视频、直播

知乎数据整理

当用户请求查看知乎数据时,执行以下流程:

步骤 1:检测登录状态

Chrome 登录检测

osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://www.zhihu.com/creator"
    delay 3
    set pageText to execute active tab of front window javascript "document.body.innerText"
    if pageText contains "登录" or pageText contains "注册" then
        return "NOT_LOGGED_IN"
    else
        return "LOGGED_IN"
    end if
end tell
EOF

Safari 登录检测

osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://www.zhihu.com/creator"
    delay 3
    set pageText to do JavaScript "document.body.innerText" in front document
    if pageText contains "登录" or pageText contains "注册" then
        return "NOT_LOGGED_IN"
    else
        return "LOGGED_IN"
    end if
end tell
EOF

未登录处理

检测到你还未登录知乎,请先登录: 1. 我已为你打开知乎创作者中心 2. 在浏览器中完成登录(扫码或账号密码) 3. 登录成功后告诉我「登录好了」

步骤 2:整理知乎数据

Chrome 完整整理

# 内容总览
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://www.zhihu.com/creator/analytics/work/all"
    delay 4
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 回答数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://www.zhihu.com/creator/analytics/work/answer"
    delay 4
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 文章数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://www.zhihu.com/creator/analytics/work/article"
    delay 4
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 想法数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://www.zhihu.com/creator/analytics/work/pin"
    delay 4
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 视频数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://www.zhihu.com/creator/analytics/work/zvideo"
    delay 4
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

# 收益数据
osascript <<'EOF'
tell application "Google Chrome"
    set URL of active tab of front window to "https://www.zhihu.com/creator/income-analysis"
    delay 4
    set pageText to execute active tab of front window javascript "document.body.innerText"
    return pageText
end tell
EOF

Safari 完整整理

# 内容总览
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://www.zhihu.com/creator/analytics/work/all"
    delay 4
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 回答数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://www.zhihu.com/creator/analytics/work/answer"
    delay 4
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 文章数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://www.zhihu.com/creator/analytics/work/article"
    delay 4
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 想法数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://www.zhihu.com/creator/analytics/work/pin"
    delay 4
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 视频数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://www.zhihu.com/creator/analytics/work/zvideo"
    delay 4
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

# 收益数据
osascript <<'EOF'
tell application "Safari"
    set URL of front document to "https://www.zhihu.com/creator/income-analysis"
    delay 4
    set pageText to do JavaScript "document.body.innerText" in front document
    return pageText
end tell
EOF

知乎数据整理页面

页面URL数据内容
内容总览/creator/analytics/work/all综合数据、播放量、阅读量、互动
回答数据/creator/analytics/work/answer回答阅读、点赞、评论、收藏
想法数据/creator/analytics/work/pin想法浏览、互动数据
文章数据/creator/analytics/work/article文章阅读、点赞、评论、收藏
视频数据/creator/analytics/work/zvideo视频播放、点赞、评论、分享
收益数据/creator/income-analysis累计收益、可提现、昨日收益、本月收益

注意事项

  • 请勿频繁请求,避免被平台限流(每次请求间隔 ≥ 3 秒)
  • 首次使用需要登录授权
  • 数据仅供个人分析参考
  • 不要分享登录凭证

文件说明

social-media-dashboard/
├── SKILL.md              # 本文件
├── platforms/
│   ├── toutiao.md       # 头条号接口说明
│   ├── csdn.md          # CSDN 接口说明
│   └── zhihu.md         # 知乎接口说明
├── templates/
│   ├── dashboard.md     # 数据看板模板
│   └── daily-report.md  # 日报模板
└── scripts/
    └── fetch-toutiao.sh # 数据整理脚本

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.67%
按下载量换算2,141

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills