# Send Briefing (Calendar Agenda, Weather, Pending To-Dos) to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "briefing",
    "name": "Briefing (Calendar Agenda, Weather, Pending To-Dos)",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/lstpsche/briefing",
    "canonicalUrl": "https://clawhub.ai/lstpsche/briefing",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/briefing",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=briefing",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/briefing"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/briefing",
    "downloadUrl": "https://openagent3.xyz/downloads/briefing",
    "agentUrl": "https://openagent3.xyz/skills/briefing/agent",
    "manifestUrl": "https://openagent3.xyz/skills/briefing/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/briefing/agent.md"
  }
}
```
## Documentation

### Briefing

Compose a daily briefing using companion skills. Each source is optional — skip it if the skill is not available.

### Sources

Three companion skills. Skip any that are not in the available skills list:

Calendar — gcalcli-calendar
Todos — todo-management
Weather — openmeteo-sh-weather-simple (requires a default city/country in session context)

If none of the three are available — tell the user you have nothing to build a briefing from and stop. Do not fabricate a briefing.

### Briefing day

Decide whether the user's day is effectively over based on current time and today's remaining calendar events.

Day still active -> briefing covers today.
Day winding down -> briefing covers tomorrow.

Todos are not date-bound — always show active items.

### Gather

For each available source, read its SKILL.md before calling any commands.

### Calendar

Read gcalcli-calendar SKILL.md.
Fetch the briefing day's agenda.
If no events — note it.

### Todos

Read todo-management SKILL.md.
List active/pending items.
If none — note it.

### Weather

Get the briefing day's conditions and forecast. Use the user's default city/country from session context.
Commands (always use --llm):

Today: openmeteo weather --current --forecast-days=1 --city="{city}" --llm
Tomorrow: openmeteo weather --current --forecast-days=2 --forecast-since=2 --city="{city}" --llm

### On errors

If a command fails, skip that section and mention the failure briefly. Do not retry more than once. Never fabricate data.

### Compose

Build a single message. Include only sections whose skill was available. If a skill returned no data, still include the section with a one-line note.

### Structure

Title line — compact: date, day-of-week, time. E.g. Брифинг 14.02 (пт, 8:12). If briefing day is tomorrow, say so.
Weather — 1–2 lines: temperature, sky, anything notable.
Calendar — briefing day's events, chronologically. Format: HH:MM — Title. All-day events first. If empty: one line noting no events.
Upcoming — next 2-3 days' notable events (if any), one line per day. Omit if nothing notable.
Todos — active items, briefly. Higher priority first if supported. If empty: one line noting no todos.

### Example output

Follow this format exactly in the user's language:

Briefing 14.02 (Sat, 8:12)

**🌤 Weather (London, UK)**
+2°C, cloudy, wind 11 km/h. Daytime to -3°C, light rain.

**📅 Calendar**
09:00 — Standup
14:00 — Sprint review
18:30 — Driving school

**🔜 Upcoming**
• 15.02: Free day.
• 16.02: Daily standup 12:00, Driving school 18:30.

**✅ Todos**
• [work] Debug feature X.
• [personal] Book a doctor's appointment.

Note: bold header → content immediately on next line (zero blank lines); one blank line between sections; no trailing question or CTA.

### Formatting rules (strict)

These rules are critical for readability on mobile. Follow them exactly.

Between sections: exactly one empty line.
Between a section header and its content: zero empty lines. Content starts on the very next line.
Right:

**Calendar**
09:00 — Standup
14:00 — Review

Wrong:

**Calendar**

09:00 — Standup
14:00 — Review

When briefing day is tomorrow, calendar and weather headers should reflect that.
Do not shorten the user's city name.
Match the language of the user's request.
Simple formatting — optimize for mobile chat. Bold section headers, short lines.
Concise, skimmable, no filler.

### Strict prohibitions

No preamble — dive straight in.
No call to action or question at the end. The briefing ends after the last section. No "What's next?", "What's first?", or similar.
Never invent events, todos, or weather data. Only report what tools returned.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lstpsche
- Version: 2.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/briefing)
- [Send to Agent page](https://openagent3.xyz/skills/briefing/agent)
- [JSON manifest](https://openagent3.xyz/skills/briefing/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/briefing/agent.md)
- [Download page](https://openagent3.xyz/downloads/briefing)