Use Cases

Use these workflows when you need CLI to support day-to-day agent development without writing custom scripts.

1) Validate Environment Before Coding

Use when: A teammate cannot run agents, or you just switched credentials.

aip accounts use <ACCOUNT_NAME>
aip status

Expected result: auth is valid, API is reachable, and resource checks return successfully.

2) Quickly Run an Existing Agent

Use when: You want to validate prompt behavior before changing SDK code.

aip agents list
aip agents run <AGENT_REF> "Summarize this requirement in 5 bullets"

Expected result: streamed output appears in terminal and final response is shown.

3) Capture a Transcript for Debugging

Use when: You need to share reproducible evidence with engineers or PMs.

aip agents run <AGENT_REF> "Investigate tool failure" --save run.md
/transcripts

Expected result: saved file path plus cached run history.

4) Promote MCP Configuration Across Environments

Use when: You move config from staging to production.

Expected result: imported MCP appears in aip mcps list for target environment.

5) Update Agent Attachments (Tools/MCPs)

Use when: You need to test capability changes without redeploying app code.

Expected result: aip agents get <AGENT_REF> shows updated dependencies.

6) Run Interactive Ops from Palette

Use when: You prefer guided selection and quick discovery.

Then use /accounts, /agents, or /transcripts (and inside an agent session: /runs and /schedules).

See Slash palette guidearrow-up-right for details.

Last updated

Was this helpful?