One-shot push
arg upload auto-switches to multipart over 32 MiB and resumes on interrupt — safe to re-run.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
New: the Agent API and Actions guides, plus a fully regenerated API reference. See the changelog.
Mirror a local directory into an arg.ai workspace — one-shot or continuously.
arg upload ~/research/competitor-analysis --to /research/competitor-analysis
arg upload ~/Desktop/diagram.png --to /research/screenshots/diagram.png
arg upload auto-switches to multipart over 32 MiB and resumes on interrupt — safe to re-run.
# macOS — brew install fswatch
fswatch -o ~/inbox | while read -r _; do
arg upload ~/inbox --to /inbox
done
# Linux — apt install inotify-tools
inotifywait -m -r -e close_write,create,move ~/inbox |
while read -r _; do arg upload ~/inbox --to /inbox; done
arg download /research/competitor-analysis --to ~/research/
arg download /reports/Q2.pdf --stdout | less