Return stable local CLI capability flags for humans and agents.
()
| 420 | |
| 421 | |
| 422 | def _feature_capabilities() -> dict[str, bool]: |
| 423 | """Return stable local CLI capability flags for humans and agents.""" |
| 424 | return { |
| 425 | "controlled_multi_install_integrations": True, |
| 426 | "integration_use_command": True, |
| 427 | "multi_install_safe_registry_metadata": True, |
| 428 | "integration_upgrade_command": True, |
| 429 | "self_check_command": True, |
| 430 | "workflow_catalog": True, |
| 431 | "bundled_templates": True, |
| 432 | } |
| 433 | |
| 434 | |
| 435 | @app.command() |