Agentfal cli
CLI utilities for AI agents - fast Go replacements for common Python tools
npx -y skills add SebastianBoehler/agent-cli-utils --skill agentfal-cliAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
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.
SKILL.md
1.3 KB, 266 tokens by cl100k_base, as published. Nobody here has run it
AgentFal CLI
Use agentfal when a workflow needs a small deterministic wrapper around fal queue requests.
Invoke the Tool
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
Choose Flags
- Use
submitfor new queue requests. - Use
-inputor-payloadto pass JSON or YAML arguments. - Use
status,result, orcancelwith-request. - Use
-logsonstatuswhen the queue endpoint supports log streaming in status responses. - Set
FAL_KEYorFAL_API_KEY,FAL_MODEL, and optionallyFAL_BASE_URLthrough the environment when possible. - Prefer
-format jsonor-format yamlfor downstream agent parsing.
Examples
Submit a request:
go run ./cmd/agentfal -- submit -payload '{"prompt":"hello"}'
Fetch request result:
go run ./cmd/agentfal -- result -request "$REQUEST_ID"
What ships with it: 1 file
217 B alongside SKILL.md
agents/
- openai.yaml217 B