skills/agentfal-cli/SKILL.md
Use the local `agentfal` CLI to submit, inspect, and cancel fal queue requests with structured output. Prefer it when an agent needs a thin wrapper around fal's queue API and env-based auth.
npx skillsauth add sebastianboehler/agent-cli-utils agentfal-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 agentfal when a workflow needs a small deterministic wrapper around fal queue requests.
Prefer the installed binary when it exists:
agentfal submit -model "$FAL_MODEL" -input payload.json
If working inside this repository or the binary is not installed, run:
go run ./cmd/agentfal -- submit -model "$FAL_MODEL" -input payload.json
submit for new queue requests.-input or -payload to pass JSON or YAML arguments.status, result, or cancel with -request.-logs on status when the queue endpoint supports log streaming in status responses.FAL_KEY or FAL_API_KEY, FAL_MODEL, and optionally FAL_BASE_URL through the environment when possible.-format json or -format yaml for downstream agent parsing.Submit a request:
go run ./cmd/agentfal -- submit -payload '{"prompt":"hello"}'
Fetch request result:
go run ./cmd/agentfal -- result -request "$REQUEST_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
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.
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.