skills/agentrunpod-cli/SKILL.md
Use the local `agentrunpod` CLI to submit, inspect, and cancel RunPod serverless jobs with structured output. Prefer it when an agent needs an env-configurable wrapper around the RunPod HTTP API instead of ad hoc curl commands.
npx skillsauth add sebastianboehler/agent-cli-utils agentrunpod-cliInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use agentrunpod when a workflow needs a small deterministic wrapper around RunPod endpoint execution.
Prefer the installed binary when it exists:
agentrunpod submit -endpoint "$RUNPOD_ENDPOINT_ID" -input payload.json
If working inside this repository or the binary is not installed, run:
go run ./cmd/agentrunpod -- submit -endpoint "$RUNPOD_ENDPOINT_ID" -input payload.json
submit for new jobs.-sync to hit RunPod's synchronous runsync path.-input or -payload to pass JSON or YAML input.-raw-body only when the payload already contains the full RunPod request body.status, result, or cancel with -request.RUNPOD_API_KEY, RUNPOD_ENDPOINT_ID, and optionally RUNPOD_BASE_URL through the environment when possible.-format json or -format yaml for downstream agent parsing.Submit a job:
go run ./cmd/agentrunpod -- submit -payload '{"prompt":"hello"}'
Fetch job status:
go run ./cmd/agentrunpod -- status -request "$JOB_ID"
tools
Use the local `company` CLI for German Handelsregister, OffeneRegister, and OpenCorporates company lookup with structured output. Prefer it when an agent needs registry-backed company research before lead scoring, outreach, or CRM/database updates.
tools
Send or validate SMTP mail flows with the `agentsmtp` CLI. Use when an agent needs a small SMTP submission tool with provider presets for Gmail or Google Workspace, structured output, and configurable auth through password or app-password.
tools
Execute shell commands with the local `agentrun` CLI. Use when an agent needs timeout control, bounded stdout and stderr capture, or structured command results instead of direct raw process execution.
tools
Query and convert JSON or YAML with the local `agentq` CLI. Use when a task needs field extraction, format conversion, or machine-readable structured data filtering in this repository or from an installed `agentq` binary.