(category: string)
| 97 | } |
| 98 | |
| 99 | function categoryRank(category: string) { |
| 100 | if (category === "Project Commands") { |
| 101 | return 0 |
| 102 | } |
| 103 | |
| 104 | if (category === "MCP Commands") { |
| 105 | return 1 |
| 106 | } |
| 107 | |
| 108 | return 2 |
| 109 | } |
| 110 | |
| 111 | function subagentStatusLabel(status: FooterSubagentTab["status"]) { |
| 112 | if (status === "completed") { |
no outgoing calls
no test coverage detected