/install ftp-client-zc
FTP Client Skill (ZC)
Skill ID: ftp-client-zc
Description: Provides basic FTP operations (list, upload, download, delete, rename) for a configured FTP server. All operations are performed via the Node.js basic-ftp library. Credentials are obtained from OpenClaw's secret store (key ftp-client-zc/cred) or, as a fallback, from a local creds.json file (which is excluded from publishing).
Parameters
| Action | Required args | Optional args | Description |
|---|---|---|---|
list |
host (or use stored) |
path (remote directory, default /) |
List files/directories in the given remote path. |
upload |
localPath, remotePath |
host |
Upload a local file (or directory) to the FTP server. |
download |
remotePath, localPath |
host |
Download a remote file (or directory) to local filesystem. |
delete |
remotePath |
host |
Delete a remote file or empty directory. |
rename |
oldPath, newPath |
host |
Rename or move a remote file/directory. |
If host, user, and password are omitted, the skill will first try to read them from the OpenClaw secret ftp-client-zc/cred; if not found, it falls back to the local creds.json (which should not be published).
Usage Examples
# List root directory (uses stored credentials)
openclaw skill run ftp-client-zc list
# Upload a file, overriding host
openclaw skill run ftp-client-zc upload --host 47.119.167.86 --user test --password zhangchong --localPath "C:\path\file.txt" --remotePath "/uploads/file.txt"
Security
- Credentials are never logged.
- All network actions require explicit user approval via
/approvebefore execution. - When using the local
creds.jsonfallback, ensure the file is protected by filesystem permissions and is excluded from the published npm package via.npmignore.
Created by 张小龙🦞
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ftp-client-zc - After installation, invoke the skill by name or use
/ftp-client-zc - Provide required inputs per the skill's parameter spec and get structured output
What is ftp-client-zc?
Performs basic FTP operations like list, upload, download, delete, and rename using stored or provided credentials with Node.js basic-ftp. It is an AI Agent Skill for Claude Code / OpenClaw, with 57 downloads so far.
How do I install ftp-client-zc?
Run "/install ftp-client-zc" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is ftp-client-zc free?
Yes, ftp-client-zc is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does ftp-client-zc support?
ftp-client-zc is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created ftp-client-zc?
It is built and maintained by 张翀 (@openclawzhangchong); the current version is v1.0.0.