Agent Skills
› KunAgent/Kun
› automation
automation
GitHub管理Kun定时任务和已保存工作流,支持创建、查看、更新、删除及执行。通过MCP工具操作调度列表和工作流,处理任务依赖关系,确保操作符合用户意图并报告结果。
Trigger Scenarios
需要创建或修改定时任务
需要运行已保存的工作流
需要查询当前调度状态
Install
npx skills add KunAgent/Kun --skill automation -g -y
SKILL.md
Frontmatter
{
"name": "automation",
"description": "Create, inspect, update, delete, and run Kun scheduled tasks or saved workflows."
}
Kun Automation
Copyright (c) 2026 KunAgent. Licensed under the MIT License.
Purpose
Create, inspect, update, delete, and run Kun scheduled tasks or saved workflows.
Tool routing
| Tool or skill | Use |
|---|---|
mcp_gui_schedule_gui_schedule_list |
List current schedules before a mutation. |
mcp_gui_schedule_gui_schedule_create |
Create one-time, daily, or interval schedules. |
mcp_gui_schedule_gui_schedule_update |
Update a schedule by returned task id. |
mcp_gui_schedule_gui_schedule_delete |
Delete only the explicitly selected task. |
mcp_gui_schedule_list_workflows |
Discover user-saved workflows. |
mcp_gui_schedule_run_workflow |
Run a named saved workflow. |
task_graph |
Model dependencies inside the current thread. |
Workflow
- Determine whether the user needs a schedule, a saved workflow, or an in-thread dependency graph.
- Read existing state before updating or deleting.
- For schedules, choose exactly one kind: at, daily, or interval.
- Preserve the conversation execution settings when available.
- Read back the resulting schedule or workflow output.
Completion gates
- Persistent create/update/delete actions require explicit user intent.
- Report the returned task id and effective timing.
- Never claim a scheduled run has executed before observing its result.
Boundaries
- Do not infer recurring intent from a one-time request.
- Do not bypass schedule APIs with OS cron or background shell processes.
Delivery
Lead with the outcome, name the evidence used for verification, and disclose any real limitation that remains.
Version History
- a984912 Current 2026-09-09 01:49


