Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

asciinema-recorderasciinema 记录器

Agent Skill

asciinema-recorder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,996

周安装

84

GitHub Stars

38

下载量

699
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/terrylica/cc-skills --skill asciinema-recorder

简介

asciinema-recorder 用于生成录制 Claude Code 会话的命令,自动生成带时间戳的文件名。

  • 它简化了终端录制流程,支持动态路径与日期命名,便于文档与演示制作。
  • 适用于 macOS 和 Linux,需 asciinema CLI,可集成到工作流中实现自动化。
  • 安装来自 GitHub,注意 CLI 安装与认证配置,确保录制权限正常。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

asciinema-recorder

Generate ready-to-copy commands for recording Claude Code sessions with asciinema. Dynamically creates filenames based on workspace and datetime.

Platform: macOS, Linux (requires asciinema CLI)
Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

When to Use This Skill

Use this skill when:

  • Starting a new terminal recording session
  • Creating demos or documentation recordings
  • Capturing Claude Code sessions for review or sharing
  • Generating workspace-specific recording filenames

Why This Skill?

This skill generates ready-to-copy recording commands with:

  • Dynamic workspace-based filename
  • Datetime stamp for uniqueness
  • Saves to project's tmp/ folder (gitignored)

Requirements

ComponentRequiredInstallation
asciinema CLIYesbrew install asciinema

Workflow Phases

Phase 0: Preflight Check

Purpose: Verify asciinema is installed.

# Check asciinema CLI
which asciinema && asciinema --version

If asciinema is NOT installed, use AskUserQuestion:

  • question: "asciinema not found. How would you like to proceed?" header: "Setup" multiSelect: false options:

- label: "Install asciinema (Recommended)" description: "Run: brew install asciinema (macOS) or apt install asciinema (Linux)" - label: "Show manual instructions" description: "Display installation commands for all platforms" - label: "Cancel" description: "Exit without recording"

Based on selection:

  • "Install asciinema" → Run appropriate install command based on OS: # macOS brew install asciinema # Linux (apt) sudo apt install asciinema # Linux (pip) pip install asciinema Then proceed to Phase 1.0.
  • "Show manual instructions" → Display the commands above, then exit skill.
  • "Cancel" → Exit skill without action.

Phase 1.0: Recording Location

Purpose: Let user choose where to save the recording.

Use AskUserQuestion:

  • question: "Where should the recording be saved?" header: "Location" multiSelect: false options:

- label: "$PWD/tmp/ (Recommended)" description: "Project tmp directory (gitignored)" - label: "~/asciinema/" description: "Global recordings directory" - label: "Custom path" description: "Specify your own directory"

Based on selection:

  • "$PWD/tmp/" → Set OUTPUT_DIR="$PWD/tmp"
  • "~/asciinema/" → Set OUTPUT_DIR="$HOME/asciinema" and create if missing: mkdir -p ~/asciinema
  • "Custom path" → Use user's "Other" input as OUTPUT_DIR

Phase 1.1: Recording Options

Purpose: Let user configure recording behavior.

Use AskUserQuestion:

  • question: "Which recording options would you like?" header: "Options" multiSelect: true options:

- label: "Add title/description" description: "Include session title in recording metadata (-t flag)" - label: "Disable idle time limit" description: "Keep full pauses instead of 2s max (--idle-time-limit 0)" - label: "Quiet mode" description: "Suppress asciinema status messages (-q flag)"

Based on selections, build command flags:

  • "Add title" → Continue to title selection question, add -t "title" flag
  • "Disable idle time limit" → Add --idle-time-limit 0 flag
  • "Quiet mode" → Add -q flag

If "Add title" was selected, follow up with:

  • question: "Enter a title for this recording:" header: "Title" multiSelect: false options:

- label: "Use workspace name" description: "Title: ${WORKSPACE}" - label: "Use workspace + datetime" description: "Title: ${WORKSPACE} ${DATETIME}" - label: "Custom title" description: "Enter your own title"

Based on title selection:

  • "Use workspace name" → Set TITLE="${WORKSPACE}"
  • "Use workspace + datetime" → Set TITLE="${WORKSPACE} ${DATETIME}"
  • "Custom title" → Use user's "Other" input as TITLE

Phase 1.2: Detect Context & Generate Command

Purpose: Generate a copy-paste ready recording command.

Step 1.2.1: Detect Workspace

Extract workspace name from $PWD:

/usr/bin/env bash << 'SKILL_SCRIPT_EOF'
WORKSPACE=$(basename "$PWD")
echo "Workspace: $WORKSPACE"
SKILL_SCRIPT_EOF

Step 1.2.2: Generate Datetime

/usr/bin/env bash << 'SKILL_SCRIPT_EOF_2'
DATETIME=$(date +%Y-%m-%d_%H-%M)
echo "Datetime: $DATETIME"
SKILL_SCRIPT_EOF_2

Step 1.2.3: Ensure Output Directory Exists

Create the output directory selected in Phase 1.0:

mkdir -p "${OUTPUT_DIR}"

Step 1.2.4: Construct Command

Build the recording command using:

  • OUTPUT_DIR from Phase 1.0 (location selection)
  • Flags from Phase 1.1 (options selection)
  • TITLE if "Add title" was selected
# Base command
CMD="asciinema rec"

# Add flags from Phase 1.1 options
# (Claude builds this based on user selections)

# Final command format:
asciinema rec ${FLAGS} "${OUTPUT_DIR}/${WORKSPACE}_${DATETIME}.cast"

Example outputs:

# Default (no options selected):
asciinema rec /home/user/projects/my-app/tmp/my-app_2025-12-21_14-30.cast

# With title + quiet mode:
asciinema rec -t "my-app Demo" -q /home/user/projects/my-app/tmp/my-app_2025-12-21_14-30.cast

# With all options:
asciinema rec -t "my-app 2025-12-21 14:30" -q --idle-time-limit 0 ~/asciinema/my-app_2025-12-21_14-30.cast

Phase 2: User Guidance

Purpose: Explain the recording workflow step-by-step.

Present these instructions:

## Recording Instructions

1. **Exit Claude Code** - Type `exit` or press `Ctrl+D`
2. **Copy the command** shown above
3. **Paste and run** in your terminal (starts a recorded shell)
4. **Run `claude`** to start Claude Code inside the recording
5. Work normally - everything is captured
6. **Exit Claude Code** - Type `exit` or press `Ctrl+D`
7. **Exit the recording shell** - Type `exit` or press `Ctrl+D` again

Your recording will be saved to:
`$PWD/tmp/{workspace}_{datetime}.cast`

Phase 3: Additional Info

Purpose: Provide helpful tips for after recording.

## Tips

- **Environment variable**: `ASCIINEMA_REC=1` is set during recording
- **Playback**: Use `asciinema-player` skill or `asciinema play file.cast`
- **Upload (optional)**: `asciinema upload file.cast` (requires account)
- **Markers**: Add `asciinema marker` during recording for navigation points

TodoWrite Task Templates

Template: Record Claude Code Session

1. [Preflight] Check asciinema CLI installed
2. [Preflight] Offer installation if missing
3. [Context] Detect current workspace from $PWD
4. [Context] Generate datetime slug
5. [Context] Ensure tmp/ directory exists
6. [Command] Construct full recording command
7. [Guidance] Display step-by-step instructions
8. [Guidance] Show additional tips (playback, upload)
9. Verify against Skill Quality Checklist

Post-Change Checklist

After modifying this skill:

  1. Command generation still uses $PWD (no hardcoded paths)
  2. Guidance steps remain clear and platform-agnostic
  3. TodoWrite template matches actual workflow
  4. README.md entry remains accurate
  5. Validate with quick_validate.py

CLI Options Reference

OptionFlagDescription
Title-tRecording title (for asciinema.org)
Quiet-qSuppress status messages
Append-aAppend to existing recording

Troubleshooting

"Cannot record from within Claude Code"

Cause: asciinema must wrap the program, not be started from inside.

Fix: Exit Claude Code first, then run the generated command.

"Recording file too large"

Cause: Long sessions produce large files.

Fix:

  • Use asciinema upload to store online instead of locally
  • Split long sessions into smaller recordings

"Playback shows garbled output"

Cause: Terminal size mismatch.

Fix: Use -r flag during playback to resize terminal.


Reference Documentation

Post-Execution Reflection

After this skill completes, reflect before closing the task:

  1. Locate yourself. — Find this SKILL.md's canonical path before editing.
  2. What failed? — Fix the instruction that caused it.
  3. What worked better than expected? — Promote to recommended practice.
  4. What drifted? — Fix any script, reference, or dependency that no longer matches reality.
  5. Log it. — Evolution-log entry with trigger, fix, and evidence.

Do NOT defer. The next invocation inherits whatever you leave behind.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

31.74%
按下载量换算222

OpenCode

22.7%
按下载量换算159

Gemini CLI

16.98%
按下载量换算119

Antigravity

13.6%
按下载量换算95

Codex

8.18%
按下载量换算57

windsurf

3.42%
按下载量换算24

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills