Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

blueskybluesky 搜索

Agent Skill

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

总安装

838

周安装

36

GitHub Stars

41

下载量

294
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/maragudk/skills --skill bluesky

简介

用于查找、检索和筛选相关信息。bluesky 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合基于关键词或线索快速获取候选结果。
  • 建议结合原始 README 核对实际使用方式。
  • 安装前应评估权限范围及潜在的文件访问行为。
  • 兼容 Codex、Claude、Cursor 等宿主生态系统。

SKILL.md

Bluesky

Overview

Post content to the Bluesky social network using the bsky terminal application. This skill enables creating text posts, sharing images and videos with alt text, replying to posts, and quoting posts.

When to Use This Skill

Use this skill in these scenarios:

  1. Explicitly requested - When directly asked to post something to Bluesky
  2. Proactive sharing - When working in public repositories and encountering:

- Completed features or significant milestones worth announcing - Interesting technical insights or discoveries - Major achievements or project releases - Community-relevant updates or announcements

Important: Only suggest posting proactively when in public repositories. Never suggest posting for private or internal work.

Core Capabilities

1. Text Posts

Create simple text posts using the bsky post command:

bsky post "Your message here"

For longer or multi-line posts, use stdin:

echo "Your longer message
with multiple lines" | bsky post --stdin

Best practices:

  • Keep posts concise and engaging
  • Use proper formatting and line breaks for readability
  • Consider adding relevant hashtags at the end
  • URLs must include the https:// protocol prefix -- bare domains like www.example.com/path will NOT be rendered as clickable links. Always use https://www.example.com/path

2. Posts with Images

Include images in posts using the --image or -i flag:

bsky post "Check out this screenshot!" --image /path/to/image.png

Multiple images:

bsky post "Here are several images" \
  --image image1.png \
  --image image2.png \
  --image image3.png

Add alt text for accessibility:

bsky post "New feature screenshot" \
  --image screenshot.png \
  --image-alt "Dashboard showing user analytics with graphs"

Best practices:

  • Always provide alt text using --image-alt for accessibility
  • Alt text should be descriptive and concise
  • Match the order of --image-alt flags to --image flags

3. Posts with Video

Share video content using the --video or -v flag:

bsky post "Demo of the new feature" --video demo.mp4

With alt text:

bsky post "Feature demo" \
  --video demo.mp4 \
  --video-alt "Screen recording showing the login flow with OAuth"

4. Replying to Posts

Reply to existing posts using the -r flag with the AT protocol URI.

Important: The -r flag does NOT work when passing text as a positional argument -- the CLI treats it as part of the post text. Always use --stdin when replying. Also, -r requires an AT protocol URI (at://...), not a Bluesky web URL.

echo "Thanks for sharing!" | bsky post --stdin -r "at://did:plc:xyz/app.bsky.feed.post/abc123"

5. Quote Posts

Quote an existing post using the -q flag:

bsky post "Great point about Go modules!" -q at://did:plc:xyz/app.bsky.feed.post/abc123

Workflow Guidelines

When creating a post:

  1. Determine the content type - Text only, with images, with video, reply, or quote
  2. Prepare the message - Craft clear, concise text that provides context
  3. Prepare media if applicable - Ensure images/videos are accessible and write descriptive alt text
  4. Construct the command - Use appropriate flags based on content type
  5. Execute the post - Run the bsky post command
  6. Verify success - Check command output for confirmation

Content Guidelines

When suggesting or creating posts:

  • Be authentic - Share genuine insights and achievements
  • Provide value - Ensure the post offers something useful to the community
  • Include context - Don't assume everyone has background knowledge
  • Be professional - Maintain appropriate tone for technical social media
  • Respect privacy - Never share sensitive information or private repository details
  • Consider timing - Only suggest sharing when the work is meaningful enough to warrant it

Example Scenarios

Scenario 1: Announcing a New Feature

bsky post "Just shipped a new feature in my Go library: automatic retry logic with exponential backoff!

Makes handling transient failures much easier. Check it out: https://github.com/user/repo" \
  --image feature-screenshot.png \
  --image-alt "Code snippet showing the new retry configuration API"

Scenario 2: Sharing a Technical Insight

echo "TIL: Go's io.Pipe() is incredibly useful for streaming data between goroutines without buffering.

Perfect for processing large files without loading everything into memory.

Example use case: streaming CSV parsing → transformation → JSON encoding" | bsky post --stdin

Scenario 3: Project Milestone

bsky post "Just reached 1,000 stars on my open source project!

Thanks to everyone in the community for the support and contributions. This wouldn't be possible without you!" \
  --image milestone-screenshot.png \
  --image-alt "GitHub repository page showing 1,000 stars"

Scenario 4: Replying to Feedback

When someone shares or comments on your work, reply directly:

echo "Thanks for the detailed feedback! I've opened an issue to track this enhancement." \
  | bsky post --stdin -r "at://did:plc:xyz/app.bsky.feed.post/abc123"

Notes

  • The bsky command uses your authenticated session from previous login
  • If not logged in, run bsky login first
  • Post URIs can be found from other bsky commands like bsky timeline or from the Bluesky web interface
  • Multiple images/alt texts are supported by repeating the flags
  • Images and videos should be local file paths accessible to the command

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.29%
按下载量换算83

Antigravity

22.76%
按下载量换算67

Codex

17.42%
按下载量换算51

Gemini CLI

13.25%
按下载量换算39

OpenCode

8.28%
按下载量换算24

Cursor

3.69%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/maragudk/skills --skill bluesky;npx skills add maragudk/skills --skill "bluesky" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills