Loading...
Loading...
Use when the user uploads a project file and you see `<UploadedFile>` in the message. Use when user says "看看這個專案", "分析程式碼", "check this project", "what's in this upload", or asks about the structure of an uploaded file.
npx skill4agent add zeabur/agent-skills zeabur-fileAlways useto invoke Zeabur CLI. Never usenpx zeabur@latestdirectly or any other installation method. Ifzeaburis not available, install Node.js first.npx
<UploadedFile>upload_id</UploadedFile>upload_id# 1. Pull the uploaded project to a local directory
npx zeabur@latest file pull <upload_id> /tmp/project -i=false
# 2. Explore with standard bash tools
ls /tmp/project
cat /tmp/project/package.json
find /tmp/project -name "*.ts" -o -name "*.js" | head -20# Download all files from an upload to a local directory
npx zeabur@latest file pull <upload_id> [target-dir] -i=false.npx zeabur@latest file pull <upload_id> /tmp/project -i=falsels -la /tmp/projectfind /tmp/project -type fcat /tmp/project/package.jsongo.modrequirements.txtCargo.tomlDockerfilesrc/main.*index.*app.*zeabur-deploy| Tip | Details |
|---|---|
| Binary files are skipped | Images, fonts, archives won't be downloaded |
| Use a temp directory | Pull to |
| Use standard tools | After pulling, |