用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/changzhi777/SpideHarness --skill spide-schedule命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
飞书 Bot 集成 — 通过飞书事件回调(webhook)执行 spide 命令, 支持自然语言指令解析(crawl/analyze/track/export/batch)。 当用户需要在飞书群中触发热搜采集、AI 分析、定时任务时使用此技能。
AI 分析 — 趋势分析、内容摘要、情感分析、智能采集策略。 当用户要求分析热搜趋势、生成摘要、获取采集建议时使用。
适配器自动修复 — 当 opencli 命令因网站 DOM/API 变更而失败时,自动诊断、修复适配器并重试。 当 opencli 命令失败时使用此 skill。
基于 SOC 职业分类
正在显示 SKILL.md
| name | spide-schedule |
| description | 定时调度 — Cron-like 定时采集任务,支持自定义间隔和运行次数。 当用户要求定时采集、自动刷新热搜、周期性抓取时使用。 |
| category | automation |
用户要求设置定时采集任务、自动刷新热搜或周期性数据抓取时自动激活。
# 启动默认调度(微博/百度/知乎 每5分钟)
spide schedule start
# 自定义调度配置
spide schedule start -c schedule.yaml
# 限制运行时长(秒)
spide schedule start -d 3600
# 查看调度状态
spide schedule status
# 停止调度
spide schedule stop
默认调度任务:
| 数据源 | 间隔 | 说明 |
|---|---|---|
| 微博热搜 | 5 分钟 | 实时热搜 |
| 百度热搜 | 5 分钟 | 热门搜索 |
| 知乎热榜 | 5 分钟 | 热门问答 |
自定义配置文件 schedule.yaml 示例:
jobs:
- source: weibo
interval_seconds: 300
max_runs: 10
enabled: true
- source: baidu
interval_seconds: 300
enabled: true
- source: douyin
interval_seconds: 180
enabled: true
| 参数 | 说明 | 默认值 |
|---|---|---|
-c | 调度配置文件路径 | 内置默认 |
-d | 最大运行时长(秒) | 无限制 |
--save | 自动保存采集结果 | false |
spide schedule start 启动调度spide schedule status 查看运行状态spide schedule stop 停止调度--save 自动保存采集结果