← back to Daily Reporting
skill.json
35 lines
{
"name": "daily-reporting",
"version": "1.0.0",
"description": "Comprehensive daily reporting system for DW-Agents hierarchy with morning standup and end-of-day reports",
"author": "DW-Agents Team",
"triggers": ["daily report", "morning standup", "eod report", "agent status"],
"capabilities": [
"Automated morning standup reports (6:00 AM)",
"End-of-day summary reports (5:00 PM)",
"Hierarchical agent data collection",
"Slack channel integration",
"Executive summary generation",
"Issue detection and escalation",
"Q&A readiness metrics",
"Agent health monitoring"
],
"cron_schedules": [
{
"name": "morning-standup",
"schedule": "0 6 * * *",
"description": "Morning standup report at 6:00 AM daily"
},
{
"name": "end-of-day",
"schedule": "0 17 * * *",
"description": "End-of-day summary at 5:00 PM daily"
}
],
"slack_config": {
"channel": "morning-report",
"webhook_url_env": "SLACK_WEBHOOK_URL",
"mention_channel_on_issues": true
}
}