MCPcopy Index your code
hub / github.com/CodeGraphContext/CodeGraphContext / load_shortcut

Function load_shortcut

src/codegraphcontext/cli/main.py:745–750  ·  view source on GitHub ↗

Shortcut for 'cgc bundle load

(
    bundle_name: str = typer.Argument(..., help="Bundle name or path to load"),
    clear: bool = typer.Option(False, "--clear", help="Clear existing graph data before loading")
)

Source from the content-addressed store, hash-verified

743
744@app.command("load", rich_help_panel="Bundle Shortcuts")
745def load_shortcut(
746 bundle_name: str = typer.Argument(..., help="Bundle name or path to load"),
747 clear: bool = typer.Option(False, "--clear", help="Clear existing graph data before loading")
748):
749 """Shortcut for 'cgc bundle load'"""
750 bundle_load(bundle_name, clear)
751
752# ============================================================================
753# REGISTRY COMMAND GROUP - Browse and Download Bundles

Callers

nothing calls this directly

Calls 1

bundle_loadFunction · 0.85

Tested by

no test coverage detected