/** * Repo command — fetch package information for a GitHub repo from web-ade. * * Hits `GET /api/github/repo/{owner}/{name}/packages` which mirrors the live * package discovery the in-app repo explorer uses (`PackageLayerModule`). * The response is `{ packages: PackageLayer[], summary, treeSha }` where * `summary` carries the monorepo flag, root package name, workspace list, * and aggregated dependency / script counts. * * Resolves a GitHub token locally (gh CLI → git credential helper) and calls * the web-ade API with `Authorization: Bearer `. The token is never * echoed to argv, env, stdout, or stderr. * * Set `PRINCIPAL_ADE_BASE_URL` to point at a non-prod deployment. */ import { Command } from 'commander'; export declare function createRepoCommand(): Command; //# sourceMappingURL=repo.d.ts.map