Install
openclaw skills install @thcjp/daily-plan-orchestrator每日计划编排器,daily_plan表PG持久化,从task_template实例化每日计划,carryover上限30天(R72.5保护),每日0:00 DRR状态重置+熔断HALF_OPEN,跨日Pipeline支持。触发:daily-plan-generator Cron每日0:00/手动生成计划。不触发:单次任务执行(用task-dispatcher)
openclaw skills install @thcjp/daily-plan-orchestrator版本: v1.0.0 | 优先级: P0(任务编排核心) | 所属层: 产品层(Layer 2计划层)
python scripts/orchestrator.py --plan-date 2026-07-08加载激活的任务模板
实例化daily_plan
carryover处理(R72.5保护: 上限30天)
DRR状态重置
熔断状态扫描
{
"plan_date": "2026-07-08",
"tenant_filter": null,
"trigger": "cron"
}
{
"success": true,
"data": {
"plans_created": 5,
"tenants_served": ["tenant-1", "tenant-2"],
"carryover_count": 3,
"deferred_count": 1,
"expired_count": 0,
"drr_reset": true,
"circuit_breaker_reset": 2
},
"error": null,
"code": null
}
# Cron触发(每日0:00)
python skills/daily-plan-orchestrator/scripts/orchestrator.py --trigger cron --plan-date 2026-07-08
# 手动生成指定租户
python skills/daily-plan-orchestrator/scripts/orchestrator.py --plan-date 2026-07-08 --tenant tenant-1
本Skill属于R72.1保护的8个核心编排Cron之一(daily-plan-generator),禁止删除。 daily_plan表属于R72.2保护的20张PG表之一,禁止删除。 carryover上限30天属于R72.5保护,禁止改回3天。