integuru
v0.1.8
Published
Integuru CLI for agent-driven integration workflows
Maintainers
Readme
Integuru CLI
CLI for agent-driven Integuru workflows.
Install
npm install -g integuruOr run without installing:
npx integuru instructionsLogin
integuru loginThis opens a browser confirmation page. Do not type third-party platform credentials into the terminal.
Basic Flow
integuru login
integuru platform list
integuru platform create --name "Example" --base-url "https://example.com"
integuru platform wait --platform-id PLATFORM_ID
integuru integration create --platform-id PLATFORM_ID --prompt "Create an integration that lists patients"
integuru integration wait --run-id RUN_ID
integuru integration inspect --integration-id INTEGRATION_ID --draft
integuru integration docs --integration-id INTEGRATION_ID
integuru integration test --integration-id INTEGRATION_ID --account-id ACCOUNT_ID --draft --input-json '{}'
integuru integration approve --integration-id INTEGRATION_ID
integuru integration curl --integration-id INTEGRATION_ID --account-id ACCOUNT_ID --input-json '{}'integration wait and integration status return the full ordered builder chat
transcript in messages, plus last_agent_message and published integration
metadata. If the status is needs_user_input, read messages, show the human
the latest agent question, then continue with integration respond.
Inspect and test a draft before approval. Only run integration approve after
the human explicitly approves that draft.
Run integuru instructions for the full agent workflow.
Configuration
By default, the npm package uses production:
- API:
https://api.integuru.ai - App:
https://app.integuru.ai
Override with:
export INTEGURU_API_BASE_URL=http://localhost:8000
export INTEGURU_FRONTEND_URL=http://localhost:5173