/** * `remixmate project ...` and `remixmate host probe`. * * `project use` is the low-friction way to keep CLI output out of 「未分类」: * say it once per repo (or once globally) instead of passing --project on every * call — an agent won't pass a flag it wasn't told about. * * `host probe` exists so onboarding an unknown agent shell is a minute's work * rather than a reverse-engineering session: run it inside the new host, read * off the session variable, add one row to HOST_PROVIDERS. */ export declare const PROJECT_VERB = "project"; export declare const HOST_VERB = "host"; export declare function runProjectCommand(argv: string[]): Promise; /** * Report what the CLI can see about its host. Prints variable NAMES only — * an environment dump is a routine way to leak tokens into a chat transcript. */ export declare function runHostCommand(argv: string[]): Promise;