Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计提醒

claude-typerClaude typer 命令行

Agent Skill

claude-typer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,854

周安装

280

GitHub Stars

383

下载量

2,218
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:claude-typer(Claude typer 命令行)
来源仓库:https://github.com/vibe-motion/skills
仓库路径:skills/claude-typer
安装命令:
npx skills add https://github.com/vibe-motion/skills --skill claude-typer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/vibe-motion/skills --skill claude-typer

简介

Claude Typer 将提示词转换为动画打字效果演示脚本。

  • 提取文本并按指定尺寸与缩放比例渲染为可播放视频片段。
  • 适用于教程制作或演示场景,增强内容表现力与观赏性。
  • 输出为独立脚本文件,需额外工具合成最终视频格式。
  • claude-typer 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Claude Typer

Workflow

  1. Extract the text that should be typed in the animation as prompt.
  2. Run:

- skill_dir="" for base in "${AGENTS_HOME:-$HOME/.agents}" "${CLAUDE_HOME:-$HOME/.claude}" "${CODEX_HOME:-$HOME/.codex}"; do if [-d "$base/skills/claude-typer"]; then skill_dir="$base/skills/claude-typer" break fi done [-n "$skill_dir"] || {echo "claude-typer skill not found under ~/.agents, ~/.claude, or ~/.codex"; exit 1;} /usr/local/bin/python3 "$skill_dir/scripts/render_claude_typer.py" "<prompt>" - Example with explicit size and scale: /usr/local/bin/python3 "$skill_dir/scripts/render_claude_typer.py" \ "claude-typer skill可以让智能体做出提示词打字机动效视频,快来试试吧" \ --video-width 1080 \ --video-height 600 \ --claude-width 600 \ --scale 2 - Example matching custom runner + remotion params passthrough: /usr/local/bin/python3 "$skill_dir/scripts/render_claude_typer.py" \ "vibe-motion/skills:一个面向智能体的MG动画/视频技能仓库." \ --runner-prefix "npx -y -p @remotion/cli@4.0.440 -p @remotion/tailwind-v4@4.0.440 remotion" \ --composition Typer30fps \ --output-file Typer30fps.mov \ --codec prores \ --prores-profile 4444 \ --pixel-format yuva444p10le \ --image-format png \ --audio-codec aac \ --video-width 1080 \ --video-height 1080 \ --claude-width 880

  1. Return the generated video path in the current working directory.

Rendering Behavior

  • Render remote composition Typer30fps from https://www.laosunwendao.com.
  • Use @remotion/cli (not remotion package name).
  • Prefer bunx @remotion/cli first.
  • Fall back to npx -y -p @remotion/cli@4.0.440 -p @remotion/tailwind-v4@4.0.440 remotion if bunx is unavailable.
  • Keep transparent MOV defaults:

- --fps=30 - --codec=prores - --prores-profile=4444 - --pixel-format=yuva444p10le - --image-format=png - --scale=2

  • Keep defaults for stability:

- --timeout=300000 - --concurrency=1 - Auto-detect local Chrome/Chromium and pass --browser-executable when found.

  • Keep default props from the project; replace prompt, and allow overriding videoWidth / videoHeight / claudeWidth through script args.
  • Unknown CLI args are passed through to remotion render directly (for advanced flags).
  • --runner-prefix lets you fully control the runner command (for pinned versions, global resolution behavior, etc.).
  • Exposed Remotion props for this skill are scalar fields only: prompt, typingSpeedMs, model, videoWidth, videoHeight, claudeWidth, tiltStartX, tiltStartY, tiltEndX, tiltEndY, tiltDurationRatio.

Output File Naming

  • Save into the current directory as xxx.mov.
  • Build xxx by condensing the prompt:

- Remove common request wrappers like 帮我, , 做一个, 生成一个, 制作, 创建 at the start. - Remove illegal filename characters. - Keep Chinese/English letters and digits. - If result is empty, use claude-typer.

  • Example:

- Prompt: 帮我做一个web画板 - Output: web画板.mov

Notes

  • On a clean machine, Node.js + npx is enough for this fallback path, as long as network access to npm and https://www.laosunwendao.com is available.
  • If both bunx and npx are unavailable, install one of them and retry.
  • If the output name already exists, Remotion overwrite behavior applies.
  • If you hit delayRender() timeout, keep --concurrency=1 and raise --timeout-ms as needed.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.16%
按下载量换算846

Claude

32.14%
按下载量换算713

Cursor

18.06%
按下载量换算401

Gemini CLI

8.51%
按下载量换算189

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills