|
| 1 | +{ |
| 2 | + "capabilities": [ |
| 3 | + { |
| 4 | + "name": "Save to Skyreader", |
| 5 | + "icon": "https://skyreader.app/icons/icon-512.png", |
| 6 | + "description": "Save an article to your Skyreader reading list (read-it-later). Accepts any web URL. Not for following a source over time; use subscribe for that.", |
| 7 | + "verb": "save", |
| 8 | + "subject": [{ "kind": "uri" }], |
| 9 | + "input": [{ "name": "title", "kind": "string", "required": false }], |
| 10 | + "delivery": "service", |
| 11 | + "endpoint": "https://api.skyreader.app/xrpc/app.skyreader.feed.save", |
| 12 | + "serviceId": "skyreader_api" |
| 13 | + }, |
| 14 | + { |
| 15 | + "name": "Subscribe to feed in Skyreader", |
| 16 | + "icon": "https://skyreader.app/icons/icon-512.png", |
| 17 | + "description": "Subscribe to an RSS/Atom feed by URL so new items appear in your Skyreader reading list. For following an atproto account or publication, this maps to the account-follow capability instead.", |
| 18 | + "verb": "subscribe", |
| 19 | + "subject": [{ "kind": "uri" }], |
| 20 | + "input": [{ "name": "category", "kind": "string", "required": false }], |
| 21 | + "delivery": "service", |
| 22 | + "endpoint": "https://api.skyreader.app/xrpc/app.skyreader.feed.subscribe", |
| 23 | + "serviceId": "skyreader_api" |
| 24 | + }, |
| 25 | + { |
| 26 | + "name": "Follow in Skyreader", |
| 27 | + "icon": "https://skyreader.app/icons/icon-512.png", |
| 28 | + "description": "Follow an atproto account or standard.site publication so its new posts appear in Skyreader. Requires Atmospheric sync to be enabled on the account.", |
| 29 | + "verb": "subscribe", |
| 30 | + "subject": [ |
| 31 | + { "kind": "did", "as": "account" }, |
| 32 | + { "kind": "at-uri", "of": "site.standard.publication" } |
| 33 | + ], |
| 34 | + "produces": ["site.standard.graph.subscription"], |
| 35 | + "delivery": "repo", |
| 36 | + "scope": "repo:site.standard.graph.subscription" |
| 37 | + }, |
| 38 | + { |
| 39 | + "name": "Share to Skyreader linkblog", |
| 40 | + "icon": "https://skyreader.app/icons/icon-512.png", |
| 41 | + "description": "Share a link to your public linkblog with an optional note. The post appears in your portable standard.site linkblog, visible across the Atmosphere.", |
| 42 | + "verb": "share", |
| 43 | + "subject": [{ "kind": "uri" }], |
| 44 | + "input": [ |
| 45 | + { "name": "title", "kind": "string", "required": false }, |
| 46 | + { "name": "note", "kind": "string", "required": false }, |
| 47 | + { "name": "tags", "kind": "string", "required": false } |
| 48 | + ], |
| 49 | + "delivery": "service", |
| 50 | + "endpoint": "https://api.skyreader.app/xrpc/app.skyreader.linkblog.share", |
| 51 | + "serviceId": "skyreader_api" |
| 52 | + } |
| 53 | + ] |
| 54 | +} |
0 commit comments