A vibe coded tangled fork which supports pijul.
at sl/knotmirror 44 lines 1.0 kB view raw
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.git.temp.listBranches", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": ["repo"], 10 "properties": { 11 "repo": { 12 "type": "string", 13 "format": "at-uri", 14 "description": "AT-URI of the repository" 15 }, 16 "limit": { 17 "type": "integer", 18 "description": "Maximum number of branches to return", 19 "minimum": 1, 20 "maximum": 100, 21 "default": 50 22 }, 23 "cursor": { 24 "type": "string", 25 "description": "Pagination cursor" 26 } 27 } 28 }, 29 "output": { 30 "encoding": "*/*" 31 }, 32 "errors": [ 33 { 34 "name": "RepoNotFound", 35 "description": "Repository not found or access denied" 36 }, 37 { 38 "name": "InvalidRequest", 39 "description": "Invalid request parameters" 40 } 41 ] 42 } 43 } 44}