一键导入
xiaoyuzhou-monitor
小宇宙播客数据监控。获取播放量、完播率、订阅变化、评论。 支持 Token 自动刷新。需要主播账号登录凭据。 Triggers on: "小宇宙数据", "播客数据", "播放量", "完播率", "订阅者"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
小宇宙播客数据监控。获取播放量、完播率、订阅变化、评论。 支持 Token 自动刷新。需要主播账号登录凭据。 Triggers on: "小宇宙数据", "播客数据", "播放量", "完播率", "订阅者"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
AI 图片生成。支持豆包 Seedream(火山方舟)和 Pollinations(免费备选)。文生图、图生图、组图生成。
给万物打品味分。基于 Rubrics+ 评分体系,从设计(Design)、原创性(Originality)、工艺(Craft)、功能性(Functionality) 四个维度为任何事物评分(1-4分)。支持动态权重调整。适用于:评价网站、App、产品设计、代码架构、穿搭、家居、食物摆盘、海报、PPT、任何你想打分的东西。触发词:品味打分、taste score、打个分、评分、品味评价、rubrics。
Game design coach — guide users from a one-line idea to a high-quality OpenGame prompt step by step. Trigger when user says "design a game", "game idea", "help me think of a game", "game design", "refine prompt", etc.
AI Development Lifecycle — standardized, version-driven workflow for AI agents developing on codebases. Two modes: (1) Assisted: human drives each phase decision. (2) Autonomous: agent self-directs (declare in task context). On first use, agent analyzes project and generates OPERATIONS.md at root. Each task follows 7 phases: orientation (mandatory summary), design, scratch validation, implementation, testing, documentation, commit. Progress tracked in version log. Use when starting any coding task, refactoring, or bugfix on a codebase.
Analyze and restructure bloated SKILL.md files into a lean three-layer architecture (必读/按需/示例). Use when (1) a SKILL.md exceeds 150 lines or feels cluttered, (2) designing a new skill and wanting the right structure from the start, (3) auditing all skills for context efficiency. Triggers on:skill 瘦身、skill 太长、精简 skill、slim skill、optimize skill structure.
Interact with Jike (即刻) social network — QR login, feed reading, posting, commenting, searching, and user profile lookup. Use when Claude needs to: (1) Log into Jike via QR code scan, (2) Read following/discovery feeds, (3) Create, read, or delete posts, (4) Add or remove comments, (5) Search content or users, (6) Check notifications. Triggers on: "jike", "即刻", "刷即刻", "发即刻", "jike feed", "jike post".
| name | xiaoyuzhou-monitor |
| description | 小宇宙播客数据监控。获取播放量、完播率、订阅变化、评论。 支持 Token 自动刷新。需要主播账号登录凭据。 Triggers on: "小宇宙数据", "播客数据", "播放量", "完播率", "订阅者" |
监控播客在小宇宙的播放数据、订阅者、评论等。
x-jike-access-token 和 x-jike-refresh-token保存到 ~/clawd/secrets/xiaoyuzhou.json:
{
"podcastId": "YOUR_PODCAST_ID",
"accessToken": "YOUR_ACCESS_TOKEN",
"refreshToken": "YOUR_REFRESH_TOKEN"
}
获取 Podcast ID:在小宇宙打开你的播客页面,URL 里的那串 ID 就是。
# 获取单集列表(含播放数据)
python3 scripts/client.py episodes --limit 10
# 获取订阅者
python3 scripts/client.py subscribers --limit 100
# 获取播客信息
python3 scripts/client.py info
# 获取单集评论
python3 scripts/client.py comments --episode-id <eid>
# 手动刷新 token
python3 scripts/client.py refresh
| Command | Description | Key Args |
|---|---|---|
episodes | 单集列表(含 stats) | --limit |
subscribers | 订阅者列表 | --skip, --limit |
info | 播客基本信息 | — |
comments | 单集评论 | --episode-id, --limit |
refresh | 手动刷新 token | — |
小宇宙使用与即刻相同的双 Token 机制:
| Token | 有效期 | 用途 |
|---|---|---|
| Access Token | ~1 小时 | 实际 API 调用 |
| Refresh Token | 几个月 | 换新 Access Token |
脚本内置 401 自动刷新逻辑:
如果 Refresh Token 也过期了,需要重新登录主播后台获取新凭据。
小宇宙有两套 API:
| API | Base URL | 用途 |
|---|---|---|
| 公开 API | https://api.xiaoyuzhoufm.com | 播客内容、评论 |
| 主播 API | https://podcaster-api.xiaoyuzhoufm.com | 订阅者、详细统计 |
主播 API 需要额外的 x-pid Header。
{
"playCount": 123, // 播放次数
"clapCount": 10, // 点赞数
"commentCount": 5, // 评论数
"favoriteCount": 3 // 收藏数
}
注意:完播率(finishRate)需要从主播后台导出的 Excel 获取,API 不提供。
requestsMIT