@loggie-ai/cli
v0.1.3
Published
Loggie CLI for discovering integrations and proxying authenticated API requests for agents
Readme
Loggie CLI
Loggie CLI is an agent-first command-line client for discovering available integrations and proxying authenticated API requests through Loggie.
Install
npm install -g @loggie-ai/cliAuthenticate
Initialize the CLI with your Loggie API key:
loggie initOr pass the key directly:
loggie init --api-key "<YOUR_LOGGIE_API_KEY>"API key resolution order:
--api-keyLOGGIE_API_KEY~/.loggie/config.json
Confirm which profile and auth source the CLI is using:
loggie status
loggie whoamiUsage
List available integrations:
loggie discoverInspect one integration:
loggie discover linearFilter discover output:
loggie discover asana --method POST --search tasks --limit 10Fetch full detail for one REST endpoint:
loggie discover asana --endpoint /tasks --method POSTFetch full detail for one GraphQL operation:
loggie discover linear --endpoint / --method POST --graphql-type mutation --operation issueCreateProxy an API request through Loggie:
loggie call linear POST / -d '{"query":"query { issues(first: 1) { nodes { id } } }"}'Pretty-print JSON responses for human debugging:
loggie call linear POST / -d '{"query":"query { viewer { id } }"}' --pretty