quickly build a sub agent for a given api
once configured with openai api key, just point utility at a url and have a subagent created
cd quick-tool python3 -m venv .venv source .venv/bin/activate pip install -e . # -e = editable, your source edits take effect immediately
To get quick-tool on your PATH globally instead, without activating anything: pipx install quick-tool.
quick-tool --open_ai_key "sk-..." # already set quick-tool --my_api_key "..." # only if the target API needs a credential quick-tool --show-config
quick-tool --url https://api.chucknorris.io/
python quick-tool-engine.py "give me a random dev joke"
The build writes into whatever directory you're standing in (--out DIR to change that): quick-tool-prompt.md, quick-tool-engine.py, quick-tool-spec.json.
python quick-tool-engine.py --functions # list callable functions python quick-tool-engine.py --plan-only "search for coffee jokes" # show calls, don't run python quick-tool-engine.py --calls '[{"get_joke_categories": []}]' # run JSON directly, no model call python quick-tool-engine.py --continue-on-error "..." # don't stop at the first failure