Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

daily-medium每日媒体

Agent Skill

daily-medium 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,414

周安装

262

GitHub Stars

公开资料未说明

下载量

2,054
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install daily-medium

简介

从Gmail中提取Medium Daily Digest邮件并生成摘要与Freedium链接。

  • 帮助用户绕过付费墙快速阅读精选文章,提升信息获取效率。
  • 输出包含原文链接与精简摘要,兼顾便捷性与版权尊重。
  • 安装命令:openclaw skills install daily-medium。
  • 使用前需授权Gmail访问权限,并注意反爬虫策略可能带来的延迟。

SKILL.md

name
daily-medium
description
Fetch and summarize Medium Daily Digest emails from Gmail. Extracts article URLs, generates Freedium links to bypass paywalls, and provides article summaries. Use when the user wants to check their Medium Daily Digest, read Medium articles without paywall, or get summaries of Medium content from their email.

Daily Medium Skill

Fetch Medium Daily Digest emails from Gmail and extract article information with paywall-free links.

Overview

This skill connects to Gmail via IMAP, retrieves the latest Medium Daily Digest email, extracts article URLs, and provides Freedium mirror links to bypass Medium's paywall.

Prerequisites

Environment Variables Required:

  • EMAIL_ADDRESS - Gmail address (e.g., user@gmail.com)
  • EMAIL_PASSWORD - Gmail App Password (not regular password)

How to get Gmail App Password:

  1. Go to Google Account → Security → 2-Step Verification
  2. At the bottom, click "App passwords"
  3. Select "Mail" and your device
  4. Copy the 16-character password

Usage

Basic Usage

from scripts.fetch_medium import fetch_medium_digest

# Fetch today's Medium digest
result = fetch_medium_digest()

if result:
    print(f"Digest: {result['digest_title']}")
    for article in result['articles']:
        print(f"- {article['title']}")
        print(f"  Freedium: {article['freedium_url']}")

With Custom Credentials

result = fetch_medium_digest(
    email_address="user@gmail.com",
    password="xxxx xxxx xxxx xxxx"
)

Output Format

The fetch_medium_digest() function returns:

{
    'digest_date': 'Mon, 16 Feb 2026 12:30:00 +0000',
    'digest_title': '10 OpenClaw Use Cases for a Personal AI Assistant | Balazs Kocsis',
    'articles': [
        {
            'title': 'Article Title Here',
            'author': 'username',
            'url': 'https://medium.com/@username/article-slug',
            'freedium_url': 'https://freedium-mirror.cfd/https://medium.com/@username/article-slug'
        },
        # ... more articles
    ]
}

Article Summaries

To generate article summaries, fetch the content via Freedium and summarize:

import requests
from bs4 import BeautifulSoup

def summarize_article(freedium_url):
    response = requests.get(freedium_url)
    soup = BeautifulSoup(response.content, 'html.parser')
    text = soup.get_text(separator=' ', strip=True)
    # Return first 300 chars as summary
    return text[:300] + "..."

Notes

  • Maximum 15 articles returned by default (configurable via max_articles parameter)
  • Requires IMAP access enabled in Gmail settings
  • Uses Freedium (freedium-mirror.cfd) to bypass Medium's paywall
  • Only fetches the most recent Medium Daily Digest email

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.56%
按下载量换算1,860

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills