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"),
)
| 1005 | # Shortcut commands at root level |
| 1006 | @app.command("export", rich_help_panel="Bundle Shortcuts") |
| 1007 | def export_shortcut( |
| 1008 | output: str = typer.Argument(..., help="Output path for the .cgc bundle file"), |
| 1009 | repo: Optional[str] = typer.Option(None, "--repo", "-r", help="Specific repository path to export"), |
| 1010 | no_stats: bool = typer.Option(False, "--no-stats", help="Skip generating statistics in the bundle"), |
| 1011 | context: Optional[str] = typer.Option(None, "--context", "-c", help="Specific context to use"), |
| 1012 | ): |
| 1013 | """Shortcut for 'cgc bundle export'""" |
| 1014 | bundle_export(output, repo, no_stats, context) |
| 1015 | |
| 1016 | @app.command("load", rich_help_panel="Bundle Shortcuts") |
| 1017 | def load_shortcut( |
nothing calls this directly
no test coverage detected