Daily Report Skill

v1.0.0

Daily report skill - Generate and send daily work summary. Keywords: daily report, work summary, end of day. Use when: End of day reporting, or manually trig...

0· 523·4 current·4 all-time
byraressen@rare

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for rare/daily-report-skill.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Daily Report Skill" (rare/daily-report-skill) from ClawHub.
Skill page: https://clawhub.ai/rare/daily-report-skill
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install daily-report-skill

ClawHub CLI

Package manager switcher

npx clawhub@latest install daily-report-skill
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
Purpose & Capability
The skill claims to generate and send daily reports which legitimately requires reading local notes and calling messaging APIs. However, the package declares no environment credentials or config requirements for authenticating to Feishu/Discord/Slack/Telegram; the provided config example only shows recipient IDs, not API keys or webhook URLs. That mismatch (capability to send messages vs. no declared way to authenticate) is unexplained.
!
Instruction Scope
Runtime instructions tell the agent to read memory/YYYY-MM-DD.md and 'conversation logs, task status (optional)'. Reading conversation logs can expose broad sensitive context; the SKILL.md gives no limits on which logs or how much context to include. Instructions to 'call corresponding message API per channel type' are vague about endpoints and authentication, leaving implementation and data handling decisions unspecified and potentially risky.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so it does not write or execute new artifacts on disk on install — low install-surface risk.
!
Credentials
No required environment variables or primary credential are declared, yet the skill expects to send messages through external services which normally require tokens, webhooks, or bot credentials. The example config does not include credentials or webhook URLs. This under-specification could lead to credentials being added to workspace config in an ad-hoc, insecure way or the agent being configured to use globally available tokens unexpectedly.
Persistence & Privilege
The skill is not always-enabled and does not request special platform privileges. It writes reports into workspace memory paths under its own scope (memory/daily-reports/) and does not claim to modify other skill configs.
What to consider before installing
Before installing, clarify how messaging credentials are supplied and stored (webhook URL, bot token, or platform-specific credentials) and avoid putting secrets in plain workspace files. Confirm exactly which conversation logs/files the agent will read and restrict that to only what's necessary for the report. If the skill will send messages automatically (cron), test it in a sandboxed workspace or with a test recipient to ensure no sensitive data is leaked. Ask the publisher for explicit documentation of required auth fields and recommended secure storage (e.g., secret manager or platform-provided credentials) — the absence of declared credentials in the package is the main gap here.

Like a lobster shell, security has layers — review code before you run it.

latestvk9709wne4y2rr2jqa9hwe08mmh827kcn
523downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Daily Report Skill

Trigger

  • Configure via OpenClaw cron to auto-execute at your preferred time
  • Or manual trigger: "generate daily report"

Workflow

  1. Load config

  2. Collect data

    • Read memory/YYYY-MM-DD.md (today's journal)
    • Read conversation logs, task status (optional)
  3. Generate report

    • Load template: assets/template.md
    • Replace variables: {{date}}, {{time}}, {{recipient}}, {{agent_name}}
    • Fill sections: work, learning, review, suggestions, evolution
  4. Save file

    • Write to memory/daily-reports/YYYY-MM-DD.md
  5. Send notification

    • Iterate through configured channels
    • Call corresponding message API per channel type
    • Supports parallel multi-channel delivery

Configuration

Config file: config/daily-report.json (workspace root, not included in skill package)

Required fields:

  • recipient.name - Report recipient name
  • channels - Notification channels (at least one)
  • agent_name - Agent name

See references/config.example.md for details.

Template

Report template at assets/template.md

Supported variables:

  • {{date}} - Date (YYYY-MM-DD)
  • {{time}} - Time (HH:MM)
  • {{recipient}} - Recipient name
  • {{agent_name}} - Agent name

Manual Invocation

generate daily report

Or with temporary overrides:

generate daily report and send to feishu ou_xxx

Comments

Loading comments...