vvip-educare

vvip-educare is a skill for Claude Code, Codex from zhangdszq/teamclaw. It costs 0 tokens per session (1,674 once invoked), scanned A, original, Apache-2.0.

A knowledge guide for VVIP EduCare that documents API operations for Zoom and Feishu. Zoom is a video-meeting service, while Feishu is a workplace platform with documents and file storage.

In plain words
What is it for?
Use it to create Zoom course meetings, retrieve cloud recordings, obtain server-to-server OAuth tokens, create Feishu folders and documents, and upload lesson recordings.
Why use it?
It gives developers the request formats and authentication details needed to create recurring lessons, retrieve recordings, and store course materials. It also distinguishes ordinary uploads from large-file, chunked uploads.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create Zoom course meetings, retrieve cloud recordings, obtain server-to-server OAuth tokens, create Feishu folders and documents, and upload lesson recordings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zhangdszq/teamclaw/vvip-educare
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zhangdszq/teamclaw --skill vvip-educare
Clone the repo
git clone --depth 1 https://github.com/zhangdszq/teamclaw

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vvip-educare

README.md
[![agentmods](https://agentmods.dev/badge/skills/zhangdszq/teamclaw/vvip-educare/github.svg)](https://agentmods.dev/skills/zhangdszq/teamclaw/vvip-educare)
Your own site
<a href="https://agentmods.dev/skills/zhangdszq/teamclaw/vvip-educare"><img src="https://agentmods.dev/badge/skills/zhangdszq/teamclaw/vvip-educare/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vvip-educare

Your own site · 80×15
<a href="https://agentmods.dev/skills/zhangdszq/teamclaw/vvip-educare"><img src="https://agentmods.dev/badge/skills/zhangdszq/teamclaw/vvip-educare.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,674 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01674
Opus 5 $0.00000 $0.00837
Sonnet 5 $0.00000 $0.00335
Haiku 4.5 $0.00000 $0.00167

Measured 10d ago against content hash a8f5f8f0e26c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

vvip-educare scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

hands/vvip-educare/SKILL.md · 192 lines

How it starts

The opening of the file, as written. The whole thing — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.

VVIP EduCare 领域知识库

1. Zoom API 操作参考

创建固定课程链接(Recurring Meeting, No Fixed Time)

POST https://api.zoom.us/v2/users/me/meetings
Authorization: Bearer {access_token}

{
  "topic": "{student_name} - VK VVIP English Course",
  "type": 3,  // Recurring meeting with no fixed time
  "settings": {
    "join_before_host": true,
    "waiting_room": false,
    "auto_recording": "cloud",
    "meeting_authentication": false
  }
}

获取云端录制

GET https://api.zoom.us/v2/meetings/{meetingId}/recordings

录制文件下载需使用 download_url + ?access_token={token},token 有效期 24 小时。

Server-to-Server OAuth Token 获取

POST https://zoom.us/oauth/token?grant_type=account_credentials&account_id={ZOOM_ACCOUNT_ID}
Authorization: Basic base64({ZOOM_CLIENT_ID}:{ZOOM_CLIENT_SECRET})

2. 飞书文档 API 操作参考

创建文件夹

POST https://open.feishu.cn/open-apis/drive/v1/files/create_folder
{
  "name": "{student_name} VVIP 学习档案",
  "folder_token": "{parent_folder_token}"
}

上传文件(课程回放)

分片上传适用于大文件(>20MB 的视频回放):

  1. POST /open-apis/drive/v1/medias/upload_all (小文件)
  2. POST /open-apis/drive/v1/medias/upload_prepareupload_partupload_finish (大文件)

创建文档

POST https://open.feishu.cn/open-apis/docx/v1/documents
{
  "title": "2026年3月 月度学习报告 - {student_name}",
  "folder_token": "{monthly_report_folder_token}"
}

3. 教材体系参考

Cambridge Unlock 系列

级别 CEFR 适合年级 核心能力
Unlock 1 A1 G4-G5 基础听说读写
Unlock 2 A2 G5-G6 日常交际
Unlock 3 B1 G7-G8 学术英语入门、批判性思维
Unlock 4 B2 G8-G9 学术写作、演讲逻辑
Unlock 5 C1 G10+ 高阶学术英语

课程单元结构(以 Unlock 3 为例)

每单元包含:

  • Watch and Listen — 视频导入
  • Reading — 学术阅读 + 阅读策略
  • Critical Thinking — 思维框架练习
  • Grammar — 语法点(与单元主题整合)
  • Writing — 学术写作任务
  • Vocabulary — 核心词汇 + 学术词汇表(AWL)

4. 标化考试对标

雅思分数与能力矩阵

雅思 CEFR 典型能力描述
5.0-5.5 B1+ 能应对日常话题但学术场景吃力
6.0-6.5 B2 能理解复杂文本,参与学术讨论
7.0-7.5 C1 流利准确表达,处理高阶学术任务
8.0+ C2 接近母语水平

Read the full file on GitHub · 192 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 192 lines · 0 tokens per session scan A a8f5f8f0e26c

Subscribe to this mod's changes

vvip-educare is a skill published in the GitHub repository zhangdszq/teamclaw (113 stars, last pushed 5mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,674 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

feature-flag-policy

Cargo feature flags for crates/xberg — ORT-incompatible targets (WASM, Android x8664 emulator), type-only and tract inference companion features, WASM/Android-safe variants, PDF backend, mutually-exclusive ORT variants, platform-conditional deps, aggregate feature sets, and build profiles. Load when adding, wiring, or…

xberg-io/xberg · 98 tokens

ocr-pipeline-and-quality

Change or evaluate Xberg OCR backends, preprocessing, caching, page acceptance, geometry, hOCR structure, table reconstruction, or cross-backend quality. Load for OCR behavior and A/B quality work, not ordinary PDF text extraction.

xberg-io/xberg · 53 tokens

pdf-backends

Change or diagnose Xberg PDF extraction, native/Pdfium backend selection, PDF rendering sessions, encrypted documents, OCR fallback, or backend-specific capability gaps. Load for PDF engine work, not generic image OCR.

xberg-io/xberg · 46 tokens

add-sharepoint

Adds SharePoint Online connector to a Power Apps code app. Use when reading lists, managing documents, or integrating with SharePoint sites. Can also create new SharePoint lists.

microsoft/power-platform-skills · 39 tokens

using-the-mcp-server

Use when converting HTML to Markdown or extracting metadata and tables through the html-to-markdown MCP server's tools, rather than shelling out to the CLI. Covers the tool surface, the auto-installing launcher, and when MCP beats the CLI or SDK.

xberg-io/html-to-markdown · 57 tokens

nw-diagram

Generates C4 architecture diagrams (context, container, component) in Mermaid or PlantUML. Use when creating or updating architecture visualizations.

nWave-ai/nWave · 33 tokens