(kind entities.Kind)
| 1326 | } |
| 1327 | |
| 1328 | func defaultManifestName(kind entities.Kind) string { |
| 1329 | switch kind { |
| 1330 | case entities.KindSkill: |
| 1331 | return "SKILL.md" |
| 1332 | case entities.KindAgent: |
| 1333 | return "AGENT.md" |
| 1334 | case entities.KindPlugin: |
| 1335 | return "plugin.json" |
| 1336 | } |
| 1337 | return "README.md" |
| 1338 | } |
| 1339 | |
| 1340 | // ============================================================================ |
| 1341 | // install — install into a code agent (from store, GitHub, or local directory) |
no outgoing calls
no test coverage detected