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

chrome-gif-recorderChrome gif 录音机

Agent Skill

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

总安装

285

周安装

12

GitHub Stars

1

下载量

1
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dawiddutoit/custom-claude --skill chrome-gif-recorder

简介

录制带标注的浏览器操作流程为高质量 GIF 动图。

  • 自动捕获点击、拖拽动作并优化输出画质。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 适用于教程制作、支持工单与培训材料生成。
  • 不涉及视频流处理,聚焦关键帧与注释叠加。
  • chrome-gif-recorder 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Chrome GIF Recorder

Overview

Record browser workflows as annotated GIFs with visual indicators for clicks, drags, and actions. Produces professional documentation-ready GIFs with automatic frame capture, action annotations, and quality optimization.

When to Use This Skill

Use when asked to:

  • Create visual documentation of browser workflows ("record this as a GIF tutorial")
  • Generate step-by-step tutorials for web applications
  • Capture user flows for support tickets or bug reports
  • Document repetitive processes for training materials
  • Create annotated screen recordings with click indicators

Do NOT use when:

  • User needs static screenshots (use screenshot tool instead)
  • Recording requires audio narration (this is visual-only)
  • User needs long-form video (GIFs are best under 60 seconds)

Workflow

1. Get Tab Context

Always start by getting tab context to identify available tabs:

tabs_context_mcp with createIfEmpty: true

This ensures you have a valid tabId for all subsequent operations.

2. Present Plan to User

Use update_plan to show the user what domains you'll visit and what actions you'll take:

update_plan with:
  domains: ["example.com", "app.example.com"]
  approach: [
    "Navigate to login page",
    "Fill in credentials",
    "Click submit button",
    "Navigate to dashboard"
  ]

Wait for user approval before proceeding.

3. Start Recording

Begin GIF recording immediately before workflow execution:

gif_creator with:
  action: "start_recording"
  tabId: <tab-id>

4. Capture First Frame (CRITICAL)

Immediately after starting recording, take a screenshot to capture the initial state:

computer with:
  action: "screenshot"
  tabId: <tab-id>

This ensures the GIF has a proper first frame showing the starting state.

5. Execute Workflow Steps

Perform the documented workflow using browser automation tools:

  • navigate - Navigate to URLs
  • computer with left_click - Click elements
  • form_input - Fill form fields
  • computer with type - Type text
  • computer with scroll - Scroll pages
  • computer with wait - Pause between actions

Timing guidance:

  • Add 1-2 second waits between major actions for clarity
  • Keep total workflow under 60 seconds for optimal GIF size
  • Use natural pacing (not too fast, not too slow)

6. Capture Last Frame (CRITICAL)

Immediately before stopping recording, take a screenshot to capture the final state:

computer with:
  action: "screenshot"
  tabId: <tab-id>

This ensures the GIF has a proper last frame showing the end result.

7. Stop Recording

Stop the recording after capturing the last frame:

gif_creator with:
  action: "stop_recording"
  tabId: <tab-id>

8. Export with Annotations

Export the GIF with visual enhancements enabled:

gif_creator with:
  action: "export"
  tabId: <tab-id>
  download: true
  filename: "workflow-tutorial-<timestamp>.gif"
  options: {
    showClickIndicators: true,
    showDragPaths: true,
    showActionLabels: true,
    showProgressBar: true,
    showWatermark: true,
    quality: 10
  }

Quality settings:

  • quality: 5 - Fastest encoding, larger file (good for quick previews)
  • quality: 10 - Balanced (recommended default)
  • quality: 20 - Higher quality, slower encoding
  • quality: 30 - Best quality, slowest encoding

9. Confirm Download

The GIF will be downloaded to the user's default downloads folder. Confirm the filename and location with the user.

Best Practices

Frame Capture Anti-Pattern

CRITICAL: Always capture screenshots immediately after start_recording and immediately before stop_recording.

Why: The gif_creator tool requires explicit screenshots to create GIF frames. Without these critical screenshots:

  • First frame may be missing or incorrect
  • Last frame may not show final state
  • GIF may appear incomplete or broken

Correct pattern:

1. gif_creator start_recording
2. computer screenshot  ← CRITICAL: First frame
3. [workflow actions]
4. computer screenshot  ← CRITICAL: Last frame
5. gif_creator stop_recording
6. gif_creator export

Incorrect pattern (DO NOT USE):

1. gif_creator start_recording
2. [workflow actions]  ← Missing first frame!
3. gif_creator stop_recording  ← Missing last frame!
4. gif_creator export

Recording Duration

  • Recommended: 30-60 seconds for most tutorials
  • Maximum: 90 seconds (longer GIFs become unwieldy)
  • Minimum: 10 seconds (shorter workflows may need fewer screenshots)

Filename Conventions

Use descriptive, timestamped filenames:

  • login-workflow-2025-12-20.gif
  • checkout-process-tutorial.gif
  • admin-dashboard-navigation.gif

Annotation Options

Enable by default:

  • showClickIndicators: true - Orange circles at click locations
  • showActionLabels: true - Black text labels describing actions
  • showProgressBar: true - Orange progress bar at bottom

Optional:

  • showDragPaths: true - Red arrows for drag operations (disable if no dragging)
  • showWatermark: true - Claude logo (disable for client deliverables)

Quality vs. Speed Trade-offs

Use CaseQuality SettingEncoding SpeedFile Size
Quick preview5FastLarge
Documentation10ModerateMedium
Polished tutorial20SlowSmall
Final deliverable30Very slowSmallest

Common Workflows

Simple Page Navigation

1. tabs_context_mcp (get tabId)
2. update_plan (domains + approach)
3. gif_creator start_recording
4. computer screenshot (first frame)
5. navigate to page
6. computer wait (2 seconds)
7. computer screenshot (last frame)
8. gif_creator stop_recording
9. gif_creator export (download: true, quality: 10)

Form Submission Workflow

1. tabs_context_mcp
2. update_plan
3. gif_creator start_recording
4. computer screenshot (first frame)
5. navigate to form
6. form_input (fill fields)
7. computer left_click (submit button)
8. computer wait (page load)
9. computer screenshot (last frame)
10. gif_creator stop_recording
11. gif_creator export

Multi-Page Tutorial

1. tabs_context_mcp
2. update_plan (multiple domains)
3. gif_creator start_recording
4. computer screenshot (first frame)
5. navigate to page 1
6. computer left_click (action 1)
7. computer wait (1 second)
8. navigate to page 2
9. computer left_click (action 2)
10. computer wait (1 second)
11. computer screenshot (last frame)
12. gif_creator stop_recording
13. gif_creator export

Troubleshooting

GIF appears empty or has no frames

Cause: Missing screenshot calls after start_recording or before stop_recording

Solution: Always call computer screenshot immediately after starting and before stopping recording

GIF encoding takes too long

Cause: Quality setting too high or recording too long

Solution:

  • Reduce quality to 5-10 for faster encoding
  • Keep workflows under 60 seconds
  • Remove unnecessary wait times

Annotations not visible

Cause: Annotation options set to false

Solution: Enable options in export call:

options: {
  showClickIndicators: true,
  showActionLabels: true,
  showProgressBar: true
}

File size too large

Cause: Low quality setting or long recording duration

Solution:

  • Increase quality setting to 20-30 for better compression
  • Reduce recording duration
  • Remove unnecessary frames/actions

Resources

This skill uses only MCP tools and requires no bundled resources. The example directories created during initialization can be deleted:

  • scripts/ - Not needed (no automation scripts required)
  • references/ - Not needed (workflow documented in SKILL.md)
  • assets/ - Not needed (GIFs are generated, not templated)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.55%
按下载量换算0

Claude

29.4%
按下载量换算0

Cursor

19.65%
按下载量换算0

Gemini CLI

8.87%
按下载量换算0

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills