โ† All skills
Tencent SkillHub ยท Developer Tools

Bluesky

Complete Bluesky CLI: post, reply, like, repost, follow, block, mute, search, threads, images. Everything you need to engage on Bluesky from the terminal.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Complete Bluesky CLI: post, reply, like, repost, follow, block, mute, search, threads, images. Everything you need to engage on Bluesky from the terminal.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, requirements.txt, scripts/bsky.py, tests/__init__.py, tests/conftest.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.6.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 19 sections Open source page

Bluesky CLI

Full-featured CLI for Bluesky/AT Protocol.

Agent Instructions

First: Check if logged in bsky whoami If shows handle โ†’ ready to use commands below If "Not logged in" โ†’ guide user through Setup section Common tasks: "Post to Bluesky" โ†’ bsky post "text" "Check my timeline" โ†’ bsky timeline "Like this post" โ†’ bsky like <url> "Follow someone" โ†’ bsky follow @handle

Setup

If user isn't logged in (bsky whoami shows "Not logged in"), guide them through setup:

Getting an App Password

Tell the user: Go to bsky.app โ†’ click your avatar โ†’ Settings โ†’ Privacy and Security โ†’ App Passwords โ†’ Add App Password. Name it "OpenClaw" and copy the password (like xxxx-xxxx-xxxx-xxxx). You'll only see it once!

Logging In

Once they have the app password, run: bsky login --handle THEIR_HANDLE.bsky.social --password THEIR_APP_PASSWORD Example: bsky login --handle alice.bsky.social --password abcd-1234-efgh-5678 Security: Password is used once to get a session token, then immediately discarded. Never stored on disk. Session auto-refreshes.

Quick Reference

ActionCommandView timelinebsky timeline or bsky tlPostbsky post "text"Post with imagebsky post "text" --image photo.jpg --alt "description"Replybsky reply <url> "text"Quote-postbsky quote <url> "text"View threadbsky thread <url>Create threadbsky create-thread "Post 1" "Post 2" "Post 3" or bsky ctLikebsky like <url>Repostbsky repost <url>Followbsky follow @handleBlockbsky block @handleMutebsky mute @handleSearchbsky search "query"Notificationsbsky notifications or bsky nDelete postbsky delete <url>

Timeline

bsky timeline # 10 posts bsky timeline -n 20 # 20 posts bsky timeline --json # JSON output

Posting

bsky post "Hello world!" # Basic post bsky post "Check this!" --image pic.jpg --alt "A photo" # With image bsky post "Test" --dry-run # Preview only

Reply & Quote

bsky reply <post-url> "Your reply" bsky quote <post-url> "Your take on this"

Thread View

bsky thread <post-url> # View conversation bsky thread <url> --depth 10 # More replies bsky thread <url> --json # JSON output

Create Thread

bsky create-thread "First post" "Second post" "Third post" # Create a thread bsky ct "Post 1" "Post 2" "Post 3" # Short alias bsky create-thread "Hello!" "More thoughts" --dry-run # Preview only bsky create-thread "Look!" "Nice" --image pic.jpg --alt "A photo" # Image on first post

Engagement

bsky like <post-url> # โค๏ธ Like bsky unlike <post-url> # Remove like bsky repost <post-url> # ๐Ÿ” Repost (aliases: boost, rt) bsky unrepost <post-url> # Remove repost

Social Graph

bsky follow @someone # Follow user bsky unfollow @someone # Unfollow user bsky profile @someone # View profile bsky profile --json # JSON output

Moderation

bsky block @someone # ๐Ÿšซ Block user bsky unblock @someone # Unblock bsky mute @someone # ๐Ÿ”‡ Mute user bsky unmute @someone # Unmute

Search & Notifications

bsky search "query" # Search posts bsky search "topic" -n 20 # More results bsky notifications # Recent notifications bsky n -n 30 # More notifications

Delete

bsky delete <post-url> # Delete your post bsky delete <post-id> # By ID

JSON Output

Add --json to read commands for structured output: bsky timeline --json bsky search "topic" --json bsky notifications --json bsky profile @someone --json bsky thread <url> --json

Error Handling

ErrorFix"Session expired"Run bsky login again"Not logged in"Run bsky login --handle ... --password ..."Post is X chars (max 300)"Shorten text"Image too large"Use image under 1MB

Notes

All <url> parameters accept either https://bsky.app/... URLs or at:// URIs Handles auto-append .bsky.social if no domain specified Image posts require --alt for accessibility (Bluesky requirement) Session tokens auto-refresh; password never stored

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts2 Docs1 Files
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/bsky.py Scripts
  • tests/__init__.py Scripts
  • tests/conftest.py Scripts
  • requirements.txt Files