← Back to Skills Marketplace
xisen-w

Aicoo Daily Brief

by Awassi · GitHub ↗ · v0.2.0 · MIT-0
cross-platform ⚠ pending
47
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install aicoo-daily-brief
Description
Use this skill when the user asks for a daily briefing, morning summary, executive brief, top priorities, COO strategies, or Eisenhower matrix. Triggers on:...
README (SKILL.md)

Daily Brief

Generate an executive daily brief from Aicoo context, then derive top strategies and a matrix view.

Prerequisites

  • AICOO_API_KEY must be set
  • Base URL: https://www.aicoo.io/api/v1

Endpoints

  • POST /api/v1/briefing
  • POST /api/v1/briefing/strategies
  • POST /api/v1/briefing/matrix
  • GET /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:

  • statusQuoSummary
  • todoSummary
  • calendarSummary
  • notesSummary
  • emailAttentionSummary
  • suggestions[]

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:

  1. Today's focus (2-3 bullets)
  2. Top 3 strategic priorities
  3. Eisenhower Q1/Q2 highlights
  4. Suggested next actions

Keep concise and action-oriented.

Capability Tags
requires-sensitive-credentials
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install aicoo-daily-brief
  3. After installation, invoke the skill by name or use /aicoo-daily-brief
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.2.0
Updated with starting loop integration
Metadata
Slug aicoo-daily-brief
Version 0.2.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Aicoo Daily Brief?

Use this skill when the user asks for a daily briefing, morning summary, executive brief, top priorities, COO strategies, or Eisenhower matrix. Triggers on:... It is an AI Agent Skill for Claude Code / OpenClaw, with 47 downloads so far.

How do I install Aicoo Daily Brief?

Run "/install aicoo-daily-brief" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Aicoo Daily Brief free?

Yes, Aicoo Daily Brief is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Aicoo Daily Brief support?

Aicoo Daily Brief is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Aicoo Daily Brief?

It is built and maintained by Awassi (@xisen-w); the current version is v0.2.0.

💬 Comments