/** * daemon/agentish-cli.ts — `aibroker agentish`, so a message can be checked * from a shell rather than trusted by eye. * * `aibroker agentish spec` prints the format itself, so a session that has * never seen AG2 can learn it with one command instead of being handed a * paragraph in the arming text and hoping it read it. * * `check --json` and `spec --json` exist so a team with no AIBroker daemon * can still run this validator as a CI step: parse the JSON, branch on exit * code and on each error's `code`, done. See docs/agentish.md, "Use in CI". * Exit codes are part of that contract and do not move: 0 the message is * valid, 1 it parsed but failed validation, 2 the invocation itself was * wrong (bad usage, a file that could not be read). */ export declare function runAgentish(args: string[]): Promise; //# sourceMappingURL=agentish-cli.d.ts.map