Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

cross-channel-daily-review跨渠道每日回顾

Agent Skill

cross-channel-daily-review 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,639

周安装

266

GitHub Stars

公开资料未说明

下载量

2,149
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cross-channel-daily-review(跨渠道每日回顾)
来源仓库:https://github.com/panpansirius-cloud/cross-channel-daily-review
安装命令:
openclaw skills install cross-channel-daily-review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install cross-channel-daily-review

简介

创建跨对话界面的日常审核工作流程,汇总原始笔记和生成报告。

  • 适合需要定期整理多来源信息的用户,如会议记录或客户反馈。
  • 支持自动化摘要和分类,提高信息处理效率。cross-channel-daily-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前需授权各渠道读写权限,注意数据隐私保护。
  • 适用于项目经理或分析师每日复盘和知识沉淀的场景。

SKILL.md

name
cross-channel-daily-review
description
Create a simple, repeatable daily review workflow across whatever conversation surfaces are available. Use when a user wants one raw note per source, one merged daily summary, index maintenance, verification, and an optional short management update for a preferred destination. Best for recurring 24-hour review workflows that should stay reusable, channel-agnostic, easy to verify, and safe to publish.

Cross-Channel Daily Review

Overview

Use this skill to run a reusable, channel-agnostic daily review workflow:

  1. Discover or accept a set of channels.
  2. Create one raw review file per channel.
  3. Generate one synthesized cross-channel review.
  4. Update a machine-readable index.
  5. Generate a boss-mode summary for one primary delivery channel.
  6. Verify outputs before claiming success.

Default design:

  • Primary destination: use the configured preferred destination if present
  • Delivery mode: boss-primary
  • Review window: last 24 hours
  • Missing sources: record explicitly; never silently skip them.

When to use this skill

Use this skill when the user asks for any of the following:

  • “做全渠道每日复盘 / daily cross-channel review”
  • “把不同渠道分别复盘,再统一汇总”
  • “老板模式摘要 / boss summary / management summary”
  • “把 raw、synthesized、index 都生成出来”
  • “让这个流程可复用、可发布、可适配不同渠道”
  • “每天固定时间自动复盘并推送”

Workflow

Step 1 — Resolve channels

First decide the channel set:

  • Prefer auto-discovery from available sessions, delivery contexts, or user-provided channel list.
  • If the user explicitly names channels, trust that list.
  • Do not hardcode a small fixed list of apps as the only valid sources.
  • Normalize source names to lowercase slugs that match the environment.

Read references/channel-adapter-spec.md before implementing or extending channel handling.

Step 2 — Collect and normalize channel evidence

For each candidate channel, gather:

  • time window
  • source references (session path, session key, channel id, or equivalent)
  • conversational scope inside the channel (DM / group / thread / room / topic)
  • participant shape (single bot, multi-bot, workflow group chat, etc.) when knowable
  • a concise raw excerpt or evidence summary
  • collection status: active | configured | missing | collection_failed

Normalize each channel into the common object shape described in references/channel-adapter-spec.md.

Important:

  • do not assume one channel has only one bot
  • do not assume one channel maps to one conversation
  • support multiple bots and multiple sessions inside the same channel scope

Step 3 — Write raw review files

Write one file per channel under:

memory/daily-review/raw/YYYY/MM/<channel>_YYYY-MM-DD.md

Use scripts/write_raw_reviews.py with normalized JSON when possible.

Rules:

  • Always write one file per resolved channel.
  • If a channel has no confirmed data, still write a file with 状态:未检出 or failure reason.
  • Include the checked sources. Do not silently omit missing channels.

Template: assets/raw-template.md

Step 4 — Generate the synthesized review

Create exactly one synthesized report for the date:

memory/daily-review/synthesized/YYYY/MM/YYYY-MM-DD.md

The report must cover these 5 dimensions:

  1. ❌ 做错了什么
  2. ⚠️ 没做好的地方
  3. ✅ 做得好的地方
  4. 📝 遗漏事项
  5. 💡 改进建议

Use assets/synthesized-template.md and references/review-dimensions.md.

Step 5 — Update the index

Update or append the record in:

memory/daily-review/index.json

Prefer scripts/update_index.py.

Index records should capture at least:

  • date
  • active channels
  • missing channels
  • synthesized file path
  • boss summary path (if built)
  • verification status

Step 6 — Build boss-mode summary

Build a shorter management summary from the synthesized report.

Default behavior:

  • delivery_mode = boss-primary
  • boss_channel = primary

If the user configured a preferred destination, use it. If that destination is unavailable, fallback to the first verified available destination and state that clearly.

Use scripts/build_boss_summary.py and assets/boss-summary-template.md.

Step 7 — Verify before reporting success

Run verification with scripts/verify_outputs.py before claiming completion.

Minimum checks:

  • raw files exist for all resolved channels
  • synthesized file exists and is non-empty
  • index updated successfully
  • boss summary exists if requested
  • delivery target resolved successfully

Never report “done” without verification output.

Delivery modes

Read references/delivery-modes.md when choosing output behavior.

Supported modes:

  • boss-primary — send only to one primary channel; default
  • broadcast — send to multiple channels
  • generate-only — write outputs but do not push externally

Formatting rules

Read references/formatting-standard.md when generating user-visible summaries.

Hard rules:

  • Keep sections clearly separated.
  • One major numbered point per paragraph block.
  • Do not collapse everything into one dense wall of text.
  • Put the final action checklist in a standalone text code block when needed.

Failure handling

Read references/failure-handling.md when anything is missing or degraded.

Important:

  • Distinguish missing from collection_failed.
  • Distinguish “no recent data” from “channel not configured”.
  • If delivery falls back from a preferred destination to another verified destination, state it explicitly.

Resources

scripts/

  • discover_channels.py — scan real OpenClaw session transcripts and produce channel candidates
  • score_discovery_confidence.py — attach confidence scores to channel/scope inference results
  • normalize_channel_data.py — normalize channel metadata to one schema
  • write_raw_reviews.py — write per-channel raw review markdown files
  • update_index.py — create/update index.json (daily / weekly / monthly)
  • synthesize_review.py — generate one synthesized cross-channel review from normalized scope-aware data
  • render_periodic_summary.py — generate weekly or monthly rollup summaries
  • plan_retention.py — produce retention/archive candidates from index policy
  • verify_retention_readiness.py — check whether a month is ready for archive/cleanup
  • archive_daily_layer.py — archive eligible daily raw / synthesized / boss outputs into archive tree
  • mark_archived_records.py — mark archived daily records inside index metadata
  • render_cron_plan.py — render the recommended cron automation chain for this skill
  • run_retention_cycle.py — run planner + readiness + archive + mark as one lifecycle step
  • build_boss_summary.py — render management summary markdown from synthesized metadata
  • resolve_delivery_target.py — resolve requested destination with safe fallback
  • verify_outputs.py — verify expected outputs exist and are non-empty

references/

  • architecture.md — system model and data flow
  • channel-adapter-spec.md — normalized channel schema and adapter contract
  • review-dimensions.md — criteria for the 5 review dimensions
  • delivery-modes.md — boss-primary / broadcast / generate-only
  • formatting-standard.md — user-visible formatting rules
  • failure-handling.md — status model and fallback behavior
  • lifecycle-automation.md — archive-first lifecycle stages and recommended automation chain
  • release-readiness.md — what is strong now vs what is still pre-release
  • known-limitations.md — current gaps and intentionally disabled behavior
  • validation-report.md — verified behaviors and remaining checks before public upload

assets/

  • raw-template.md
  • synthesized-template.md
  • boss-summary-template.md
  • index-template.json

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.4%
按下载量换算1,943

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills