claude up some atproto stuff
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove jq dependency from curl examples

plugin users may not have jq (or python3) installed. the curl examples
work fine without pretty-printing and the response shape comments
already document the structure.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz d18f8c81 07961ff1

+3 -6
+1 -2
skills/constellation/SKILL.md
··· 41 41 42 42 **Explore all link types** — `/links/all?target={did}`: 43 43 ```bash 44 - curl "https://constellation.microcosm.blue/links/all?target=did:plc:hdhoaan3xa3jiuq4fg4mefid" | jq . 45 - # shows every collection+path linking to this DID with counts 44 + curl "https://constellation.microcosm.blue/links/all?target=did:plc:hdhoaan3xa3jiuq4fg4mefid"# shows every collection+path linking to this DID with counts 46 45 ``` 47 46 48 47 **Distinct DIDs** — `/links/distinct-dids` (legacy; XRPC `getBacklinkDids` is in source but not yet deployed). Uses dot-prefixed paths (`.subject.uri`) and `target` param.
+2 -4
skills/slingshot/SKILL.md
··· 15 15 16 16 **Resolve identity** — DID, handle, PDS URL, signing key in one call: 17 17 ```bash 18 - curl "https://slingshot.microcosm.blue/xrpc/blue.microcosm.identity.resolveMiniDoc?identifier=zzstoatzz.io" | jq . 19 - ``` 18 + curl "https://slingshot.microcosm.blue/xrpc/blue.microcosm.identity.resolveMiniDoc?identifier=zzstoatzz.io"``` 20 19 21 20 **Fetch record by AT-URI:** 22 21 ```bash 23 - curl "https://slingshot.microcosm.blue/xrpc/blue.microcosm.repo.getRecordByUri?at_uri=at://did:plc:.../app.bsky.actor.profile/self" | jq . 24 - ``` 22 + curl "https://slingshot.microcosm.blue/xrpc/blue.microcosm.repo.getRecordByUri?at_uri=at://did:plc:.../app.bsky.actor.profile/self"``` 25 23 26 24 **Fetch record (standard atproto API)** — `repo` accepts handles or DIDs: 27 25 ```bash