โ† All skills
Tencent SkillHub ยท Developer Tools

Corpus

Access a user's Corpus library from OpenClaw. Use when the user asks to search saved content, fetch item details, save links into Corpus, or create reminders...

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

Access a user's Corpus library from OpenClaw. Use when the user asks to search saved content, fetch item details, save links into Corpus, or create reminders...

โฌ‡ 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
SKILL.md, scripts/corpus_api.py

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. 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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

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

Corpus Skill

Use this skill to read and write a user's Corpus data through the Corpus API.

Required environment variables

CORPUS_API_TOKEN: user token for Corpus API access.

Generate CORPUS_API_TOKEN

Install Corpus AI for iPhone: https://apps.apple.com/us/app/corpus-ai/id6748364607 Open the app and sign in. Go to Integrations -> OpenClaw. Create an API token and copy it (the full value is shown once). Set that value as CORPUS_API_TOKEN in your OpenClaw skill env.

Optional environment variables

CORPUS_API_BASE_URL: API base URL (default: https://corpusai.app). CORPUS_TIMEOUT_SECONDS: HTTP timeout in seconds (default: 30).

OpenClaw config example

{ "skills": { "entries": { "corpus": { "path": "/absolute/path/to/skills/corpus", "env": { "CORPUS_API_TOKEN": "csk_live_or_jwt_token_here", "CORPUS_API_BASE_URL": "https://corpusai.app" } } } } }

Commands

Run all commands through: python3 {baseDir}/scripts/corpus_api.py <command> [options] Available commands: profile list-content --limit 20 --cursor <cursor> search --query "<text>" --limit 8 content --user-content-id <id> save-url --url <url> [--user-note "<note>"] create-reminder --title "<title>" --description "<desc>" --scheduled-date-utc "2026-02-18T16:00:00Z" [--user-content-id <id>]

Recommended workflow for implementation tasks

When a user asks for "find items in Corpus and implement": Use search with a focused query. Use content for top hits to collect concrete steps. Produce an implementation plan with explicit file changes. Apply code changes in the current working repository after user confirmation.

Safety rules

Never print or log CORPUS_API_TOKEN. Prefer read operations before write operations. Before write operations (save-url, create-reminder), confirm user intent if the instruction is ambiguous.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/corpus_api.py Scripts