this repo has no description
0
fork

Configure Feed

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

at main 28 lines 912 B view raw
1feeds: 2- uri: "ATURI" 3 name: "My Stuff" 4 description: "My activity and activity about my activity." 5 matchers: 6 # Matches likes of your posts 7 - path: "$.commit.record.subject.uri" 8 value: "at://DID/app.bsky.feed.post/" 9 type: prefix 10 aturi: "$.commit.record.subject.uri" 11 # Matches posts where you are the author. 12 - path: "$.did" 13 value: "DID" 14 # Matches posts that are replies to your posts. 15 - path: "$.commit.record.reply.parent.uri" 16 value: "at://DID/app.bsky.feed.post/" 17 type: prefix 18 - path: "$.commit.record.reply.root.uri" 19 value: "at://DID/app.bsky.feed.post/" 20 type: prefix 21 # Matches posts that mention you. 22 - path: "$.commit.record.facets[*].features[?(@['$type'] == 'app.bsky.richtext.facet#mention')].did" 23 value: "DID" 24 type: equal 25 # Matches posts that quote you. 26 - path: "$.commit.record.embed.record.uri" 27 value: "at://DID/" 28 type: prefix