โ† All skills
Tencent SkillHub ยท Content Creation

EVC Team Relay

Read and write Obsidian notes stored in EVC Team Relay collaborative vault. Use when agent needs to: read note content from a shared Obsidian vault, create o...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Read and write Obsidian notes stored in EVC Team Relay collaborative vault. Use when agent needs to: read note content from a shared Obsidian vault, create o...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, scripts/upsert-file.sh, scripts/read-file.sh, scripts/read.sh, scripts/create-file.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 18 sections Open source page

EVC Team Relay

REST API skill for reading and writing collaborative Obsidian vault documents via EVC Team Relay.

Environment variables

VariableRequiredDescriptionRELAY_CP_URLyesControl plane URL, e.g. https://cp.tr.entire.vcRELAY_EMAILyesUser email for authenticationRELAY_PASSWORDyesUser passwordRELAY_TOKENnoJWT token (set via export RELAY_TOKEN=$(scripts/auth.sh))

Quick start

# 1. Authenticate โ€” get a JWT token (stored in env var, not visible in ps) export RELAY_TOKEN=$(scripts/auth.sh) # 2. List shares to find available documents scripts/list-shares.sh # 3. Read a file from a folder share BY PATH (most common) scripts/read-file.sh <folder_share_id> "Marketing/plan.md" # 4. Create or update a file in a folder share scripts/upsert-file.sh <folder_share_id> "note.md" "# Content" # 5. List all files in a folder share scripts/list-files.sh <folder_share_id> # 6. Delete a file from a folder share scripts/delete-file.sh <folder_share_id> "old-note.md" # 7. Read a doc share (single document, share_id = doc_id) scripts/read.sh <share_id> # 8. Write to a doc share scripts/write.sh <share_id> <share_id> "# Updated content" All scripts accept the token via RELAY_TOKEN env var (preferred) or as the first CLI argument (backward-compatible).

Two kinds of shares

Doc shareFolder shareContainsSingle documentMultiple filesdoc_idSame as share_idEach file has its own doc_id (in folder metadata)Readread.sh <share_id>read-file.sh <share_id> "path/to/file.md"Writewrite.sh <share_id> <share_id> <content>upsert-file.sh <share_id> "path" <content>DeleteN/Adelete-file.sh <share_id> "path" Most shares are folder shares. Use read-file.sh and upsert-file.sh โ€” they handle path resolution automatically. Warning: write.sh does NOT work for folder shares โ€” it writes content but does not register the file in folder metadata, so Obsidian will never see it. The script detects folder shares and refuses with an error.

Scripts reference

ScriptPurposeArgsauth.shGet JWT tokenโ€”list-shares.shList all shares[kind] [owned_only]list-files.shList files in folder share<share_id>read-file.shRead file by path (folder share)<share_id> <file_path>read.shRead by doc_id (low-level)<share_id> [doc_id]upsert-file.shCreate/update file (folder share)<share_id> <file_path> <content>write.shWrite by doc_id (doc shares only)<share_id> <doc_id> <content>delete-file.shDelete file from folder share<share_id> <file_path>create-file.shCreate new file (low-level)<share_id> <file_path> <content> Bold = recommended for most use cases. All scripts use RELAY_TOKEN env var (or accept token as first arg).

Authentication

All API calls require a Bearer JWT token. Get one via login: curl -s -X POST "$RELAY_CP_URL/v1/auth/login" \ -H "Content-Type: application/json" \ -d '{"email": "'$RELAY_EMAIL'", "password": "'$RELAY_PASSWORD'"}' \ | jq -r '.access_token' Response: { "access_token": "eyJ...", "refresh_token": "...", "token_type": "bearer", "expires_in": 3600 } Use the access_token as Authorization: Bearer <token> header on all subsequent requests. When the token expires (1 hour), refresh it: curl -s -X POST "$RELAY_CP_URL/v1/auth/refresh" \ -H "Content-Type: application/json" \ -d '{"refresh_token": "'$REFRESH_TOKEN'"}'

Listing shares

Shares are the access units โ€” each share maps to a document or folder in the Obsidian vault. curl -s "$RELAY_CP_URL/v1/shares" \ -H "Authorization: Bearer $TOKEN" | jq Response (array): [ { "id": "a1b2c3d4-...", "kind": "doc", "path": "Projects/meeting-notes.md", "visibility": "private", "is_owner": true, "user_role": null, "web_published": false }, { "id": "e5f6g7h8-...", "kind": "folder", "path": "Projects/", "visibility": "private", "is_owner": false, "user_role": "editor" } ] Key fields: id โ€” share UUID, used as share_id in all operations kind โ€” doc (single file) or folder (directory) path โ€” Obsidian vault-relative path user_role โ€” viewer (read-only), editor (read-write), or null (owner) Filter options: ?kind=doc, ?owned_only=true, ?member_only=true, ?skip=0&limit=50.

Listing files in a folder share

scripts/list-files.sh <share_id> Response: { "doc_id": "e5f6g7h8-...", "files": { "meeting-notes.md": {"doc_id": "abc123-...", "type": "markdown"}, "project-plan.md": {"doc_id": "def456-...", "type": "markdown"} } } Each key is the file's path within the folder. The doc_id field is the document identifier used for content operations. The share_id for content requests is always the folder share's ID. Note: The API response uses id as the field name. This is the same as doc_id โ€” use it wherever doc_id is needed.

By path (recommended for folder shares)

scripts/read-file.sh <folder_share_id> "Marketing/plan.md" This resolves the path to a doc_id internally and returns: { "doc_id": "abc123-...", "content": "# Marketing Plan\n\nContent here...", "format": "text", "path": "Marketing/plan.md" }

By doc_id (low-level)

scripts/read.sh <share_id> [doc_id] [key] For doc shares, omit doc_id (defaults to share_id). For folder shares, pass the file's doc_id from list-files.sh.

Folder shares โ€” use upsert-file.sh

# Create or update โ€” auto-detects which operation is needed scripts/upsert-file.sh <folder_share_id> "note.md" "# Updated content" # Pipe content from stdin echo "# Content" | scripts/upsert-file.sh <folder_share_id> "note.md" - Response includes an operation field: "created" or "updated".

Doc shares โ€” use write.sh

scripts/write.sh <share_id> <share_id> "# Updated Notes" write.sh refuses folder shares โ€” if you accidentally pass a folder share_id as doc_id, it detects this and exits with an error directing you to upsert-file.sh.

Read a specific note by path (most common)

# If you know the folder share_id: scripts/read-file.sh <folder_share_id> "Marketing/docs/plan.md" # If you need to find the share first: scripts/list-shares.sh # find the folder share scripts/read-file.sh <share_id> "path/to/file.md"

Create or update a file

# Always works, whether the file exists or not scripts/upsert-file.sh <folder_share_id> "note.md" "# Content"

Delete a file

scripts/delete-file.sh <folder_share_id> "old-note.md"

Error codes

StatusMeaning400Invalid share_id format401Missing or expired token โ€” re-authenticate403Insufficient permissions (viewer trying to write, or non-member)404Share or file not found (check path spelling, use list-files.sh to verify)422Missing required field (share_id, content)502Relay server unavailable โ€” retry later

Terminology

TermMeaningshare_idUUID of a share (doc or folder). Used for ACL checks in all requests.doc_idUUID of an individual document. For doc shares, equals share_id. For folder shares, each file has its own doc_id.idSame as doc_id โ€” the API response field name. Use interchangeably.file_pathRelative path within a folder share (e.g. "Marketing/plan.md").

References

references/api.md โ€” full API reference with all endpoints

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts2 Docs
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/create-file.sh Scripts
  • scripts/read-file.sh Scripts
  • scripts/read.sh Scripts
  • scripts/upsert-file.sh Scripts