From sundial-org-awesome-openclaw-skills-4
CLI for Bluesky (AT Protocol): fetch timelines, post updates, search posts, check notifications, view profiles, delete posts.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Interact with Bluesky/AT Protocol from the command line.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Interact with Bluesky/AT Protocol from the command line.
First-time setup requires an app password from Bluesky:
bsky login --handle yourhandle.bsky.social --password xxxx-xxxx-xxxx-xxxxSecurity: Password is NOT stored. The CLI exports a session token on login, which auto-refreshes. Your app password only exists in memory during login.
# Authentication
bsky login --handle user.bsky.social --password xxxx-xxxx-xxxx-xxxx
bsky whoami
# Timeline
bsky timeline # Show home feed (10 posts)
bsky timeline -n 20 # Show 20 posts
bsky tl # Alias
# Posting
bsky post "Hello world!" # Create a post
bsky p "Short post" # Alias
bsky post "Test" --dry-run # Preview without posting
# Version
bsky --version # Show version
# Delete
bsky delete <post_id> # Delete a post by ID or URL
bsky rm <url> # Alias
# Profiles
bsky profile # Your profile
bsky profile @someone.bsky.social
# Search
bsky search "query" # Search posts
bsky search "offsec" -n 20
# Notifications
bsky notifications # Likes, reposts, follows, mentions
bsky notif -n 30 # Alias with count
Timeline and search results show:
@handle · Jan 25 14:30
Post text (truncated to 200 chars)
❤️ likes 🔁 reposts 💬 replies
🔗 https://bsky.app/profile/handle/post/id
The skill uses a Python virtual environment. On first run:
cd {baseDir}/scripts
python3 -m venv venv
./venv/bin/pip install atproto
Then run commands via:
{baseDir}/scripts/venv/bin/python {baseDir}/scripts/bsky.py [command]
Or use the wrapper script:
{baseDir}/scripts/bsky [command]