Use when operating OpenGateway through CLI only: provider inspection, api key inspection, gateway status checks, and future CLI-first control-plane tasks. Keywords: opengateway cli, provider list, api key list, gateway status, no UI, no admin HTTP API.
This skill is for operating OpenGateway through the CLI-based control plane.
This file is intended for GitHub Copilot skill discovery. For repository-wide guidance that other AI agents can also consume, see the root-level AGENTS.md.
cargo run -- provider list --format jsoncargo run -- provider get <id> --format jsoncargo run -- provider create --name <name> --type <type> --config '<json>' --format jsoncargo run -- provider update <id> --priority <n> --enabled true --format jsoncargo run -- api-key list --format jsoncargo run -- api-key get <id> --format jsoncargo run -- api-key create --name <name> --provider-ids 1,2 --protocol openai --strategy Priority --format jsoncargo run -- api-key rotate <id> --format jsoncargo run -- gateway status --format json--database-url <sqlite-or-postgres-url> as a global CLI flag.--format json so downstream agents can parse IDs and full keys.AGENTS.md at the repository root as the cross-agent entrypoint for the same CLI-first rules./api/* admin endpoints.