Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

share-reading分享阅读

Agent Skill

share-reading 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,257

周安装

95

GitHub Stars

90

下载量

790
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:share-reading(分享阅读)
来源仓库:https://github.com/sugarforever/01coder-agent-skills
仓库路径:skills/share-reading
安装命令:
npx skills add https://github.com/sugarforever/01coder-agent-skills --skill share-reading
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sugarforever/01coder-agent-skills --skill share-reading

简介

share-reading 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或代码变更进行整理。
  • 通过 npx skills add 命令安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 当前无额外底部简介内容,可参考来源仓库进一步了解功能细节。

SKILL.md

Share Reading

Help draft social media posts for sharing valuable readings, articles, tools, or resources. Generates multiple candidate posts with appropriate tone and style, ready for publishing on X, Substack, or 知识星球.

Workflow

Step 1: Process Input

Determine the input type and extract content accordingly:

If input is a URL:

  • Use WebFetch to retrieve the page content
  • Extract: title, author, key points, publication date
  • Preserve the original URL for inclusion in the post

If input is a file path:

  • Use Read to load the file
  • Extract the same metadata from frontmatter or content

If input is direct text/notes:

  • Use the provided content as-is
  • Ask for the source URL if not included

Step 2: Understand Context

Before writing, consider:

  • What makes this worth sharing? (insight, practical value, novelty, controversy)
  • Who would care about this? (developers, AI enthusiasts, general tech audience)
  • What's the user's likely angle? (recommendation, commentary, discussion)

If the intent is unclear, ask briefly:

这篇内容你想从什么角度分享?比如:
- 推荐给大家(觉得很有价值)
- 分享某个观点/发现
- 提出讨论/问题
- 其他想法?

Step 3: Generate Candidates

Produce 2-3 candidate posts with varying approaches. Each candidate should:

  1. Include the source link — always present, naturally placed
  2. Be self-contained — readers should understand the value without clicking
  3. Match the platform tone — see Platform Guidelines below

Candidate Approaches (pick 2-3 that fit)

  • Summary + takeaway: Concise summary with a personal takeaway or opinion
  • Key highlight: Pull out the most striking point or quote, add brief context
  • Question/discussion: Frame a question around the content to spark engagement
  • Practical angle: Focus on actionable value — "if you're doing X, read this because Y"
  • Contrarian/fresh take: Offer a perspective the article didn't cover

Step 4: Present to User

Present candidates clearly labeled, e.g.:

## 候选 1:总结推荐型

{content}

## 候选 2:观点提炼型

{content}

## 候选 3:讨论引导型

{content}

Ask user to pick one, or mix elements from multiple candidates.

Platform Guidelines

X (Twitter)

  • Keep main post concise (under 280 chars for single tweet, or use thread format)
  • Front-load the hook — first line matters most
  • Use line breaks for readability
  • Hashtags: 1-3 relevant ones, placed at the end or naturally inline
  • Link can be in the main tweet or a reply

Substack Notes / 知识星球

  • Can be longer and more conversational
  • Add more personal commentary and context
  • Structure with short paragraphs
  • OK to include bullet points for key takeaways

General Style

  • Write in the same language as the source content (Chinese article → Chinese post, English → English)
  • If the user has a personal-writing-style skill, follow those preferences
  • Avoid hype words ("revolutionary", "game-changing") — be genuine
  • Be specific rather than vague ("reduces build time by 40%" > "makes things faster")

Examples

Example 1: User shares a link

User: 分享一下这个 https://example.com/article-about-rust-in-linux

Claude: Fetches the page, reads the content, generates candidates:

候选 1:总结推荐型

Rust 正式进入 Linux 6.12 内核的网络子系统。这意味着内核中最关键、也最容易出内存安全问题的模块,开始用 Rust 重写了。

文章详细讲了迁移策略:不是一刀切,而是新模块用 Rust 写,老代码逐步替换。最实际的一点 - 已经在生产环境跑了 3 个月,零内存安全 bug。

https://example.com/article-about-rust-in-linux

候选 2:观点提炼型

"我们不是要用 Rust 重写 Linux,而是让新代码不再产生旧问题。"

Linux 网络子系统开始引入 Rust,最值得关注的不是语言之争,而是他们的渐进式迁移策略 - 这对所有大型 C 项目都有参考价值。

https://example.com/article-about-rust-in-linux

候选 3:讨论引导型

Linux 内核的网络子系统开始用 Rust 了。跑了 3 个月,零内存安全 bug。

但评论区有个好问题:Rust 的编译时间和学习曲线,对内核贡献者社区的影响会有多大?快速迭代和安全保障之间,怎么平衡?

https://example.com/article-about-rust-in-linux

Example 2: User shares with a specific angle

User: share this, really interesting approach to prompt engineering https://example.com/prompt-patterns

Claude: Fetches the page, generates candidates focused on the user's angle (interesting approach):

Candidate 1: Highlight

This is the clearest framework I've seen for systematic prompt engineering. Instead of trial-and-error, the author breaks it down into 5 composable patterns you can mix and match.

The "constraint layering" pattern alone is worth the read — it's how they got GPT-4 to consistently output valid JSON without schema enforcement.

https://example.com/prompt-patterns

Candidate 2: Practical

If you're writing prompts for production (not just ChatGPT conversations), this is worth 10 minutes of your time.

Key insight: treat prompts like function signatures — define inputs, expected output shape, and edge case handling upfront. The author shares 5 patterns with before/after examples.

https://example.com/prompt-patterns

Example 3: User provides notes directly

User: 帮我写个分享帖,关于我今天试用了 Cursor 的新 Background Agent 功能,感觉很惊艳,可以后台自动完成任务

Claude: No URL to fetch, works with the provided notes, asks:

要附上 Cursor 官方的介绍链接吗?或者你有截图/录屏想一起分享?

Then generates candidates based on the user's first-hand experience.

Critical Rules

  1. Always include the source link — never omit it
  2. Don't fabricate content — only reference what's actually in the article
  3. Match source language — Chinese content gets Chinese posts, English gets English
  4. Multiple candidates — always offer 2-3 options, not just one
  5. No auto-publishing — only generate text, don't execute any publishing
  6. Genuine tone — avoid marketing speak and excessive superlatives

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.63%
按下载量换算281

Claude

28.26%
按下载量换算223

Cursor

18.16%
按下载量换算143

Gemini CLI

9.46%
按下载量换算75

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills