files
File operations in your workspace
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
File operations in your workspace
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Calendar operations with CalDAV
Git repository management, GitLab merge requests, and GitHub pull requests
Location tracking, place recognition, visit history, and calendar attendance
Persistent memory writes — USER.md (behavioral) and the knowledge graph (facts).
Accounting operations (ledger, invoicing, transactions, work log, investment portfolio) — runs in-process via the vendored money package
Send a push notification to the user's configured ntfy device(s). One-way (bot to phone), no reply channel.
| name | files |
| description | File operations in your workspace |
| always_include | true |
| env | [{"var":"NC_URL","from":"config","config_path":"nextcloud.url"},{"var":"NC_USER","from":"config","config_path":"nextcloud.username"},{"var":"NC_PASS","from":"config","config_path":"nextcloud.app_password","sensitive":true}] |
Your workspace files live under {workspace}. Use standard filesystem operations:
# List files
ls {workspace}/path/to/folder/
# Read a file
cat {workspace}/path/to/file.txt
# Write to a file
echo "content" > {workspace}/path/to/file.txt
# Create a directory
mkdir -p {workspace}/path/to/newfolder/
# Copy/move files within your workspace
cp {workspace}/source.txt {workspace}/dest.txt
mv {workspace}/old.txt {workspace}/new.txt
# Delete a file (use with caution!)
rm {workspace}/path/to/file.txt
Changes are saved directly to your workspace. No need to download files to a temp directory first.
Attachment troubleshooting: If a shared file isn't at the expected path, it may not have reached your workspace inbox yet. On a Nextcloud-backed deployment this usually means the user hasn't shared their Talk attachments folder (e.g. Talk/ or Talk (2)/) with the bot user, or there's a short delay (~2 minutes) after sharing before files become accessible — let them know so they can share the folder.