con un clic
cron
列出和管理当前群聊的定时任务。当用户想查看、管理、删除定时任务时使用。
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
列出和管理当前群聊的定时任务。当用户想查看、管理、删除定时任务时使用。
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Wait for ALL CI checks and PR review to complete, fix CI failures and review issues, loop until PR is clean
根据 Maker App ID 拉取该应用的 chat 列表,并生成可直接打开的 maker/fuping URL 表格。当用户提供 Maker App ID(UUID 形式,如 99b00f3e-e64a-455a-b000-9ec2c95297d7)并想查看该应用下所有 chat 会话、复盘历史对话、获取带 bypassAuth 的直达链接时使用。默认先查生产,生产无数据时回落到 fuping;也可显式指定 prod/fuping/both。
Commit all changes, push to origin, and create a GitHub pull request
从 CDN 下载指定项目的构建产物,还原为本地可编辑的项目结构,供排查用户问题使用。当用户说"还原项目"、"拉取项目"、"下载项目"、"restore project",或提供了 project_id、game_url、maker/fuping 链接、app_id 等任意项目标识并要求拉取/还原/排查时使用此技能。也应在用户粘贴了 maker.taptap.cn、fuping.agnt.xd.com、*.games.tapapps.cn、*.ipv.taptap-code.org 等链接并希望查看/调试/运行该项目时触发。
Set up or audit documentation health for any repo. Use 'init' to bootstrap a docs/ structure (plans/, design/, research/) with YAML front matter, agent discovery scripts, and anti-rot mechanisms. Use 'audit' to detect stale design docs, undistilled completed plans, broken internal links, and CLAUDE.md drift. Use when: 'set up docs', 'doc health', 'check documentation', 'audit docs', 'bootstrap documentation', 'prevent doc rot'.
Edit PDFs with natural-language instructions using the nano-pdf CLI.
| name | cron |
| description | 列出和管理当前群聊的定时任务。当用户想查看、管理、删除定时任务时使用。 |
| argument-hint | [list | trigger <id> | remove <id> | pause <id> | resume <id>] |
列出和管理当前群聊的 cron 定时任务。
| 命令 | 说明 |
|---|---|
/cron 或 /cron list | 列出当前群聊所有定时任务 |
/cron trigger <id> | 立即触发一次指定任务 |
/cron remove <id> | 删除指定任务 |
/cron pause <id> | 暂停指定任务 |
/cron resume <id> | 恢复指定任务 |
从 $ARGUMENTS 中解析子命令和参数。如果为空或为 list,执行列出操作。
调用 mcp__cron-scheduler__manage_cron 工具,action: "list"。
如果没有任务,回复:"当前群聊没有定时任务。"
如果有任务,用表格展示:
## 定时任务列表
| 状态 | 名称 | 调度 | 下次执行 | ID |
|------|------|------|----------|-----|
| ✅ | 每日汇报 | 每天 09:00 | 2026-03-19 09:00 | abc123... |
| ⏸️ | 周报提醒 | 每周五 18:00 | (已暂停) | def456... |
状态图标:✅ 运行中,⏸️ 已暂停。
表格后附操作提示:
操作: `/cron trigger <id>` 立即执行 | `/cron pause <id>` 暂停 | `/cron remove <id>` 删除
调用 mcp__cron-scheduler__manage_cron,action: "trigger", id: "<id>"。
回复:已触发任务「<名称>」。
调用 mcp__cron-scheduler__manage_cron,action: "remove", id: "<id>"。
回复:已删除任务「<名称>」。
调用 mcp__cron-scheduler__manage_cron,action: "update", id: "<id>", enabled: false(暂停)或 enabled: true(恢复)。
回复:已暂停/恢复任务「<名称>」。