用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/hairyf/damn-reports --skill cron命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Manage App Workspace collector tools defined in tool.json: read all tools, add or update a single tool definition, inspect a single tool, and execute a tool via exec_tool. Use when you need to maintain or run collectors stored in tool.json in the App Workspace.
Query, sync, and insert records in the Record table. Use when you need to: run SQL queries on record, sync records via sync_records, or add new records with tool='ai'. Use for /record get, /record sync, /record add.
Manage App Workspace data sources defined in source.json: list all sources, add a new source, get a source by id, and update an existing source. Use when you need to maintain the list of collector sources (source.json) in the App Workspace.
正在显示 SKILL.md
| name | cron |
| description | 管理 cron.json 中的定时任务(Hooks):列出、添加、查询、更新、删除。使用 read/write/edit 操作 cron.json。 |
本技能描述如何管理存储在 App Workspace 中 cron.json 的定时任务,以及列出、添加、查询、更新、删除的标准流程。
目标:提供一致的指令用于
cron.json 读取所有定时任务(get_all)所有指令假设你在 App Workspace 上下文中操作。
cron.json:根结构为 JSON 对象,包含 version 和 jobs 数组。
./cron.json。path: "cron.json"。references/schema.md。支持五种 schedule 类型(workday / cron / every / at / reportend)及五种 payload 类型。references/operations.md。read write edit grep理解 Schema
references/schema.md 查看 cron.json 结构和单个任务定义。按操作指令执行
references/operations.md,定义:
保持 cron.json 有效
cron.json 视为 { version: 1, jobs: [...] } 结构。write 写回。edit。内置任务
builtin_daily_report 和 builtin_memory_clear 是系统预置任务。详细步骤见 references/operations.md。