()
| 305 | |
| 306 | |
| 307 | def list_platforms() -> None: |
| 308 | print("Available platforms:\n") |
| 309 | print(f" {'Name':<16} {'Instruction File':<48} {'Format'}") |
| 310 | print(f" {'-'*15} {'-'*47} {'-'*10}") |
| 311 | for key, p in PLATFORMS.items(): |
| 312 | print(f" {key:<16} {p.instruction_path:<48} {p.format}") |
| 313 | print(f"\nUse --platform <name> to generate, or --platform all for everything.") |
| 314 | print(f"Claude Code users: use the plugin marketplace instead (no generation needed).") |
| 315 | |
| 316 | |
| 317 | def main() -> None: |