Shortcut for 'cgc bundle export
(
output: str = typer.Argument(..., help="Output path for the .cgc bundle file"),
repo: Optional[str] = typer.Option(None, "--repo", "-r", help="Specific repository path to export"),
no_stats: bool = typer.Option(False, "--no-stats", help="Skip generating statistics in the bundle"),
context: Optional[str] = typer.Option(None, "--context", "-c", help="Specific context to use"),
)
| 908 | # Shortcut commands at root level |
| 909 | @app.command("export", rich_help_panel="Bundle Shortcuts") |
| 910 | def export_shortcut( |
| 911 | output: str = typer.Argument(..., help="Output path for the .cgc bundle file"), |
| 912 | repo: Optional[str] = typer.Option(None, "--repo", "-r", help="Specific repository path to export"), |
| 913 | no_stats: bool = typer.Option(False, "--no-stats", help="Skip generating statistics in the bundle"), |
| 914 | context: Optional[str] = typer.Option(None, "--context", "-c", help="Specific context to use"), |
| 915 | ): |
| 916 | """Shortcut for 'cgc bundle export'""" |
| 917 | bundle_export(output, repo, no_stats, context) |
| 918 | |
| 919 | @app.command("load", rich_help_panel="Bundle Shortcuts") |
| 920 | def load_shortcut( |
nothing calls this directly
no test coverage detected