Source profileQuality 79/100Review permissions

sonichi/sutando/skills/morning-briefing/SKILL.md

morning-briefing

Generate a daily morning briefing: email, calendar, Discord, and news — delivered via voice or Discord DM.

Source repository stars
359
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Generate a prioritized daily briefing from all your channels.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/sonichi/sutando --skill "skills/morning-briefing"
    Safe inspection promptEditorial

    Inspect the Agent Skill "morning-briefing" from https://github.com/sonichi/sutando/blob/6a8f0fccd32e5aa620a3572c8885544f144bb6fe/skills/morning-briefing/SKILL.md at commit 6a8f0fccd32e5aa620a3572c8885544f144bb6fe. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      How to deliver

      src/morning-briefing.py already writes results/proactive-.txt (spoken by voice) and sends a Discord DM for the base data. If you gathered email or insight in steps 1–4, append them as a follow-up proactive file:

      src/morning-briefing.py already writes results/proactive-.txt (spoken by voice) and sends a Discord DM for the base data. If you gathered email or insight in steps 1–4, append them as a follow-up proactive file:
    2. 02

      What to gather

      Step 0 — Base data (canonical, always run first):

      Email — Run gws gmail +triage to get unread inbox. Summarize top 5 by priority. Flag anything urgent.GWS Calendar — If the user uses Google Calendar (not just macOS Calendar), run gws calendar +agenda --today. List any meetings not already covered by the macOS Calendar output above.Daily insight — Run python3 src/daily-insight.py. If it produces an insight, include it at the end of the briefing as "💡 Insight: ..."
    3. 03

      Scheduling

      The canonical daily schedule calls the script directly (same code path):

      The canonical daily schedule calls the script directly (same code path):Calling /morning-briefing manually runs the same script plus GWS/insight augmentation.

    Permission review

    Static risk signals and limitations

    Runs scripts

    medium · line 15

    The documentation asks the agent to run terminal commands or scripts.

    python3 src/morning-briefing.py

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score79/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars359SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    sonichi/sutando
    Skill path
    skills/morning-briefing/SKILL.md
    Commit
    6a8f0fccd32e5aa620a3572c8885544f144bb6fe
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    Morning Briefing

    Generate a prioritized daily briefing from all your channels.

    Usage: /morning-briefing

    ARGUMENTS: $ARGUMENTS

    What to gather

    Step 0 — Base data (canonical, always run first):

    WORKSPACE="$(bash scripts/sutando-config.sh workspace)"
    python3 src/morning-briefing.py
    

    src/morning-briefing.py is the single source of truth for core briefing data: weather (Open-Meteo), macOS Calendar, macOS Reminders, overnight Discord DMs, pending questions, and system health. It writes output to results/proactive-<ts>.txt and sends a Discord DM directly. Review its output before composing the full briefing — do NOT re-fetch those sources manually.

    Then augment with the following if configured (skip if not available):

    1. Email — Run gws gmail +triage to get unread inbox. Summarize top 5 by priority. Flag anything urgent.

    2. GWS Calendar — If the user uses Google Calendar (not just macOS Calendar), run gws calendar +agenda --today. List any meetings not already covered by the macOS Calendar output above.

    3. Daily insight — Run python3 src/daily-insight.py. If it produces an insight, include it at the end of the briefing as "💡 Insight: ..."

    4. Friction check — Run python3 src/friction-detector.py. If friction items found, include as "⚠️ Friction: [count] items need attention" with the top 3.

    How to deliver

    src/morning-briefing.py already writes results/proactive-<ts>.txt (spoken by voice) and sends a Discord DM for the base data. If you gathered email or insight in steps 1–4, append them as a follow-up proactive file:

    echo "📧 Email: [count] unread. [summary]
    💡 Insight: [insight text]" > "$WORKSPACE/results/proactive-$(date +%s).txt"
    

    Scheduling

    The canonical daily schedule calls the script directly (same code path):

    {
      "name": "morning-briefing",
      "cron": "57 6 * * *",
      "prompt": "Run python3 src/morning-briefing.py to deliver the daily morning briefing (weather, calendar, reminders, overnight Discord, pending questions, health). Speak the result if voice is connected, send as Discord DM otherwise."
    }
    

    Calling /morning-briefing manually runs the same script plus GWS/insight augmentation.