用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bidewio/better-openclaw --skill nextcloud-files命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | nextcloud-files |
| description | Self-hosted cloud storage and collaboration with Nextcloud |
| version | 1.0.0 |
| tags | ["cloud-storage","files","collaboration","self-hosted"] |
Nextcloud is the #1 self-hosted productivity platform — file sync, sharing, calendars, contacts, and collaborative editing.
| Variable | Description |
|---|---|
{{NEXTCLOUD_URL}} | Base URL of the Nextcloud instance |
{{NEXTCLOUD_USER}} | Username |
{{NEXTCLOUD_PASSWORD}} | App password or user password |
curl -s -u "{{NEXTCLOUD_USER}}:{{NEXTCLOUD_PASSWORD}}" \
-X PROPFIND "{{NEXTCLOUD_URL}}/remote.php/dav/files/{{NEXTCLOUD_USER}}/"
curl -s -u "{{NEXTCLOUD_USER}}:{{NEXTCLOUD_PASSWORD}}" \
-X PUT "{{NEXTCLOUD_URL}}/remote.php/dav/files/{{NEXTCLOUD_USER}}/document.pdf" \
--data-binary @document.pdf
curl -s -u "{{NEXTCLOUD_USER}}:{{NEXTCLOUD_PASSWORD}}" \
-X POST "{{NEXTCLOUD_URL}}/ocs/v2.php/apps/files_sharing/api/v1/shares" \
-H "OCS-APIRequest: true" \
-d "path=/document.pdf&shareType=3"