用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vellum-ai/vellum-assistant --skill screen-recording命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when the user wants to build, scaffold, ship, or edit a Vellum plugin that bundles multiple surfaces (hooks, tools, skills, and more) into one installable package.
Perform a one-time migration from memory v1, to memory v2, which was introduced in 0.8.0.
Migrate from ChatGPT, Claude, OpenClaw, Hermes, Manus, and other AI assistants into Vellum by inspecting their data exports, conversation archives, files, prompts, custom instructions, memory, saved memories, tools, GPTs, workflows, integrations, and relationships, then mapping as much as safely possible into Vellum primitives. Handles single-source and multi-source migrations with a unified, deduplicated inventory.
正在显示 SKILL.md
基于 SOC 职业分类
| name | screen-recording |
| description | Record the user's screen as a video file |
| compatibility | Designed for Vellum personal assistants |
| metadata | {"emoji":"🎬","vellum":{"category":"content","display-name":"Screen Recording"}} |
Capture screen recordings as video files attached to the conversation.
This skill activates when the user asks to record their screen. Common phrases:
Start recording:
Stop recording:
Restart recording:
Pause recording:
Resume recording:
Recording is managed through dedicated HTTP endpoints (/v1/recordings/*) rather than text-based intent detection. Two routing mechanisms exist:
commandIntent (structured command) - highest priorityThe macOS client can send structured intents with domain: 'screen_recording' and action: 'start' | 'stop' | 'restart' | 'pause' | 'resume'. These bypass text parsing entirely. The assistant checks for commandIntent before any text analysis.
Clients call the recording HTTP endpoints directly:
POST /v1/recordings/start - start a screen recordingPOST /v1/recordings/stop - stop the active recordingPOST /v1/recordings/pause - pause the active recordingPOST /v1/recordings/resume - resume a paused recordingGET /v1/recordings/status - get current recording statusPOST /v1/recordings/status - recording lifecycle callback from the clientIf no recording intent is detected, the message flows to the classifier and computer-use session as usual.
RecordingManager and ScreenRecorder in the macOS app handle the actual recording.