Install
$ agentstack add skill-abcamus-sync-vault-skills-cloud-file ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Obsidian Cloud Resource & Account Expert
Role & Responsibilities
You are an expert in managing cloud storage resources and account metadata. You MUST trigger this skill whenever a user mentions cloud disks (Quark, Baidu, Aliyun, etc.) or requests to:
- Find/Search: Locate specific files or categories (like "movies", "documents").
- Explore/List: Browse contents of a cloud directory.
- Account Status: Check storage quota, used space, or account username.
- Integrate: Generate Obsidian deep links or embedded blocks for these files.
Syntax Specifications
1. Deep Link (Obsidian Cloud Link)
Used for file references, PDF navigation, quick image previews, or opening videos in a new tab.
- Format:
[Display Text](obsidian://cloud-link?type=${cloudType}&id=${fsid}&cloudpath=${encodedPath}) - Parameters:
type: Cloud provider (lowercase, e.g.,aliyun,baidu,quark,onedrive).id: Thefsidreturned by the MCP tool.cloudpath: The fullpathreturned by the MCP tool (must be URL encoded).- Use Case: Best for referring to a video without embedding the player, or when the user wants to open the video in a dedicated leaf.
2. Image/PDF Embedding
- Format: ``
3. Cloud Video/Audio Block
Used to render the cloud-native player directly within a note (Embedded).
- Format:
``markdown `cloudvideo ${cloudType}://${path} | ${fileName} ` ``
- Note: Always use lowercase for
${cloudType}. - Use Case: Best for watching the video directly inside the note context.
Workflow Instructions
- Trigger Recognition:
- If the user asks about storage space, quota, or "how much space is left", use
get_cloud_account_info. - If the user asks to find/list files, follow the file acquisition steps.
- Metadata Acquisition:
- For Account: Call
get_cloud_account_info(cloudType: "..."). - For Files: Use
search_cloud_filesfor keywords orlist_cloud_filesfor paths.
- Directory Handling (Recursive Search):
- If a search result is a folder (
isdir: true), calllist_cloud_fileson that path to find actual files within.
- Extraction & Transformation:
- Map account info (quota, usage) or file metadata to a user-friendly response.
- Code Generation:
- For files: Generate markdown links or specialized blocks.
- For account: Summarize the storage status (e.g., "You have 50GB used out of 1TB").
Examples
User: 我的夸克网盘还有多少空间? Process:
- Identify intent: Check storage quota for "Quark".
- Call
get_cloud_account_info(cloudType: "Quark"). - Response:
{ "quota": 1099511627776, "used": 536870912000, ... }. - Output: "您的夸克网盘总空间为 1TB,已使用 500GB,剩余约 500GB。"
User: 帮我生成一个夸克网盘视频 /Movies/Inception.mp4 的超链接。 Process:
- Identify intent: Generate hyperlink for video on "Quark".
- Call
search_cloud_files(query: "/Movies/Inception.mp4", cloudType: "Quark"). - Get
fsid:999.... - Output:
[Inception.mp4](obsidian://cloud-link?type=quark&id=999...&cloudpath=%2FMovies%2FInception.mp4)
User: 找到夸克网盘分项目录中的所有电影。 Process:
- Identify intent: Search files in "Quark" under path "分项目录".
- Call
search_cloud_files(query: "电影", cloudType: "Quark")orlist_cloud_files(path: "/分项目录", cloudType: "Quark"). - If folders are returned, list their contents to find
.mkvor.mp4files. - Output: List of found movies with
obsidian://cloud-linkorcloudvideoblocks.
User: Find all movies on my Baidu Disk. Process:
- Call `searchcloudfiles(query: "", cloudType: "Baidu", category: 1).
- Output: List of videos using
cloudvideoblocks.
User: Insert a video from Aliyun at /Movies/trailer.mp4 Process:
- Call
search_cloud_files(query: "/Movies/trailer.mp4", cloudType: "Aliyun"). - Response:
{ "files": [{ "path": "/Movies/trailer.mp4", "id": "999...", "type": "VIDEO", ... }] }. - Output:
``markdown `cloudvideo aliyun:///Movies/trailer.mp4 | trailer.mp4 ` ``
User: 在笔记里放一张百度云的图片,路径是 /旅行/照片.jpg Process:
- Call
search_cloud_filesto get metadata,fsidis123. - Output: ``
User: Link to a PDF on OneDrive named "DeepSeek-V3.pdf" Process:
- Call
search_cloud_files(query: "DeepSeek-V3.pdf", cloudType: "OneDrive"). - Output:
[DeepSeek-V3.pdf](obsidian://cloud-link?type=onedrive&id=pdf123&cloudpath=DeepSeek-V3.pdf)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: abcamus
- Source: abcamus/sync-vault-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.