Daily Brief
SkillDev toolsUse this skill when the user asks for a daily briefing, morning summary, executive brief, top priorities, COO strategies, or Eisenhower matrix. Triggers on: 'daily brief', 'morning brief', 'daily summary', 'executive summary', '今日简报', '优先级矩阵', '/v1/briefing', '/v1/briefings', '/v1/briefing/strategies', '/v1/briefing/matrix'.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Daily Brief skill
What this skill tells your AI
The instructions your AI receives, as published by aicoo-team/aicoo-skills in skills/daily-brief/SKILL.md and read by ahel’s review.
Generate an executive daily brief from Aicoo context, then derive top strategies and a matrix view.
Prerequisites
AICOO_API_KEYmust be set- Base URL:
https://www.aicoo.io/api/v1
Endpoints
POST /api/v1/briefingPOST /api/v1/briefing/strategiesPOST /api/v1/briefing/matrixGET /api/v1/briefings
Core Workflow
Step 1: Generate briefing
curl -s -X POST "https://www.aicoo.io/api/v1/briefing" \
-H "Authorization: Bearer $AICOO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"timeDuration":"last 24 hours"}' | jq .
This returns:
statusQuoSummarytodoSummarycalendarSummarynotesSummaryemailAttentionSummarysuggestions[]
Step 2: Get top 3 COO strategies
curl -s -X POST "https://www.aicoo.io/api/v1/briefing/strategies" \
-H "Authorization: Bearer $AICOO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"statusQuoSummary":"...",
"todoSummary":"...",
"calendarSummary":"...",
"notesSummary":"...",
"emailAttentionSummary":"..."
}' | jq .
Step 3: Build Eisenhower matrix
curl -s -X POST "https://www.aicoo.io/api/v1/briefing/matrix" \
-H "Authorization: Bearer $AICOO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"statusQuoSummary":"...",
"todoSummary":"...",
"calendarSummary":"...",
"notesSummary":"...",
"emailAttentionSummary":"..."
}' | jq .
Step 4: Retrieve history
curl -s "https://www.aicoo.io/api/v1/briefings?limit=10" \
-H "Authorization: Bearer $AICOO_API_KEY" | jq .
Claude Code Automation
Use /loop or /routine directly.
/loop example
/loop 24h generate my daily brief from /v1/briefing, then generate /v1/briefing/strategies and /v1/briefing/matrix. Return a concise executive summary with top 3 actions.
/routine example
/routine daily-brief every weekday at 08:30: run /v1/briefing + /v1/briefing/strategies + /v1/briefing/matrix and post concise output.
OpenClaw Automation (CRON)
Use the provided script:
# Every weekday at 08:30
30 8 * * 1-5 /path/to/aicoo-skills/scripts/daily-brief-cron.sh >> /tmp/aicoo-daily-brief.log 2>&1
Optional envs:
PULSE_BRIEF_TIME_DURATION(default:last 24 hours)PULSE_BRIEF_SAVE_NOTE=1(save output to/os/notes)PULSE_BRIEF_NOTE_TITLE_PREFIX(default:Daily Brief)
Output Contract
When you report to user, include:
- Today's focus (2-3 bullets)
- Top 3 strategic priorities
- Eisenhower Q1/Q2 highlights
- Suggested next actions
Keep concise and action-oriented.
Signals
- GitHub stars
- 35
- Forks
- 5
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
daily-brief- Source
- github.com/aicoo-team/aicoo-skills