一键导入
post-bluesky
Post to Bluesky (AT Protocol). Body from target/value. Returns confirmation Note with post URI in metadata.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Post to Bluesky (AT Protocol). Body from target/value. Returns confirmation Note with post URI in metadata.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fetch standardized financial statements (income, balance sheet, cash flow, earnings, company overview) for a ticker from Alpha Vantage. Returns combined annual+quarterly JSON for analysis.
Aim the ChatterBot head to find and center a target in view — the user, a person, an object, an animal. Runs a closed visual loop (capture, judge where the target is, nudge pan/tilt, repeat) until the target is centered, or reports it could not find the target after searching. Use when the user says point at me, look at me, turn to face someone, find the cat, center on the person. For a one-off snapshot without re-aiming use camera-capture; for a manual fixed angle use head-move.
Capture a still photo from the ChatterBot head camera. The captured frame is attached to your own visual input, so you can SEE it and answer questions about what is in view — whether the user is present, whether there is a cat, what the scene looks like. The camera rides the pan/tilt head, so it shows whatever the head is currently aimed at; aim first with head-move if needed. To also show the photo to the user on screen, follow with the display tool (the observation includes a ready <img> URL). Use when the user asks what you see, to take a picture or snapshot, or to check whether something or someone is in view.
Move the ChatterBot head — aim the pan/tilt camera or play an expressive gesture. The bot is a stationary companion head; this points its gaze, it does NOT drive or navigate. Use when the user asks you to look somewhere, turn toward/away, look up/down, re-center, or nod/shake/scan. Angles are degrees 0-180 with 90 centered (pan 0=full right, 180=full left; tilt 0=down, 180=up, mounting-dependent). Give pan and/or tilt for absolute aim, OR a gesture (not both). Returns the confirmed pose once the head settles.
Return one genuine saying of Ramana Maharshi, drawn verbatim from his recorded talks, with source attribution. Use when delivering an authentic Ramana quote with attribution — not a paraphrase or a synthesized reflection. The returned text is a raw quote; add your own brief framing before presenting it.
Generate an original image from a text description, locally (Bonsai-Image 4B, ternary-quantized, on a long-lived studio server). Use when the user wants a picture, illustration, avatar, or face created from a description that does not already exist on the web. For existing photos of real things, prefer image search instead; for simple diagrams or line drawings, prefer authoring inline SVG.
| name | post-bluesky |
| type | python |
| description | Post to Bluesky (AT Protocol). Body from target/value. Returns confirmation Note with post URI in metadata. |
| schema_hint | {"target":"$variable (post body from prior step, optional)","value":"string (literal post body, optional)","tags":"string or list (optional): comma-separated tags or list, e.g. 'AI,research' or ['AI','research']","out":"$variable (optional)"} |
Post a text message to Bluesky using the AT Protocol. The post body comes from target (a Note or Collection from a prior step) or value (literal text). Returns a confirmation Note with the post URI and CID in metadata.
Body content (one of):
target: Variable or resource ID — content becomes the post body (plain text)value: Literal string — used as the post body directlyOptional:
tags: Hashtags to append to the post. Either a comma-separated string ("AI,research") or a list (["AI", "research"]). Tags are appended as #AI #research and linked as clickable Bluesky tags.Success (status: "success"):
resource_id: Note ID containing confirmation text (e.g., "Posted to Bluesky: Hello world...").get-metadata): uri, cid, timestamp.Failure (status: "failed"):
reason: Error description (e.g., BLUESKY_ACCOUNT_HANDLE and BLUESKY_APP_PASSWORD environment variables required, authentication_failed)BLUESKY_ACCOUNT_HANDLE — Bluesky handle (e.g., alice.bsky.social)BLUESKY_APP_PASSWORD — App Password from Bluesky Settings > App Passwordscom.atproto.server.createSession to obtain an access tokencom.atproto.repo.createRecordPost a simple status update with tags:
{"type":"post-bluesky","value":"Just deployed a new feature! Everything is running smoothly.","tags":"devops,shipping","out":"$posted"}
Post a generated summary:
{"type":"generate-note","prompt":"Write a short tweet-length summary of today's progress","out":"$update"}
{"type":"post-bluesky","target":"$update","out":"$posted"}
Post synthesized research:
{"type":"search-web","query":"latest developments in AI safety 2026","out":"$research"}
{"type":"synthesize","target":"$research","focus":"one key takeaway","format":"brief","out":"$summary"}
{"type":"post-bluesky","target":"$summary","out":"$posted"}