Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计通过

insta-snapshots即时快照

Agent Skill

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

总安装

1,045

周安装

44

GitHub Stars

20,927

下载量

366
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oxc-project/oxc --skill insta-snapshots

简介

insta-snapshots 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕项目状态和变更进行整理。

  • 适用于开发流程管理、代码审查支持或团队协作事项跟踪等场景。
  • 通过 npx skills add 命令安装,需确认权限范围和是否触发联网或文件读写操作。
  • 建议结合原始 README 核验具体用法,并检查仓库维护状态与安全性。
  • 使用前应评估是否会执行命令或访问外部资源,避免意外行为。

SKILL.md

This skill guides you through working with insta snapshot tests in the Oxc codebase without requiring terminal interaction.

What are Insta Snapshots?

Insta is a snapshot testing library for Rust. Oxc uses it extensively for:

  • Linter rule tests (crates/oxc_linter/src/snapshots/)
  • Semantic analysis tests (crates/oxc_semantic/tests/integration/snapshots/)
  • Other crate-specific snapshot tests

Snapshots track expected test outputs (often failures or errors). When code changes, new snapshots are generated as .snap.new files for review.

Running Tests and Generating Snapshots

Run tests for a specific crate:

cargo test -p <crate_name>

This generates .snap.new files if test outputs have changed.

Reviewing Snapshots Non-Interactively

IMPORTANT: Avoid using cargo insta review (the interactive terminal UI). Instead, follow these steps:

1. List all pending snapshots

cargo insta pending-snapshots
# Or for workspace-wide:
cargo insta pending-snapshots --workspace

This shows all .snap.new files waiting for review.

2. Read the snapshot files directly

New snapshots are stored as .snap.new files next to their corresponding .snap files. You can use cargo insta pending-snapshots to view the changes to the snapshot files.

3. Accept or reject changes

Accept all pending snapshots:

cargo insta accept
# Or workspace-wide:
cargo insta accept --workspace

Accept specific snapshot(s):

cargo insta accept --snapshot <snapshot_name>

Reject all pending snapshots:

cargo insta reject
# Or workspace-wide:
cargo insta reject --workspace

This deletes all .snap.new files.

4. Verify the changes

After accepting, the .snap.new files become .snap files. Check with git:

git diff <path/to/snapshots/>

Common Workflows

After fixing a bug or adding new snapshot tests:

  1. Run tests: cargo test -p oxc_linter (or relevant crate)
  2. Check pending: cargo insta pending-snapshots
  3. Read new snapshots to verify they match expected behavior
  4. Accept if correct: cargo insta accept
  5. Commit the updated .snap files

Working with specific test files:

  1. Run: cargo test -p oxc_linter specific_test_name
  2. Read: cargo insta pending-snapshots - look for specific_test_name.snap.new
  3. Accept: cargo insta accept -p oxc_linter

Snapshot File Formats

  • .snap - Current expected output
  • .snap.new - New output from recent test run (pending review), do not commit if these files are present

Note that .snap.md files are from Vitest, and not Insta. They are used in conformance tests, and are not handled by the instructions in this skill.

Tips

  • Always review snapshots manually before accepting - don't blindly accept all changes
  • Snapshot files are checked into git - they're part of the test suite
  • Large snapshot changes may indicate breaking changes or bugs
  • Use git diff after accepting to see what actually changed
  • Use the CLI commands. DO NOT just copy-paste or manually edit .snap files.

Example: Complete Workflow

# 1. Make a code change to a linter rule
# 2. Run tests
cargo test -p oxc_linter

# 3. See what changed
cargo insta pending-snapshots

# 4. Review specific snapshot (using Read tool)
# Read: crates/oxc_linter/src/snapshots/some_test.snap.new

# 5. Accept if correct
cargo insta accept -p oxc_linter

# 6. Verify with git
git diff crates/oxc_linter/src/snapshots/

# 7. Run tests again to ensure everything passes
cargo test -p oxc_linter

When to use this skill: When tests fail due to snapshot mismatches or after changing code that affects test outputs.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.47%
按下载量换算133

Claude

27.38%
按下载量换算100

Cursor

17.82%
按下载量换算65

Gemini CLI

9.94%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/oxc-project/oxc --skill insta-snapshots 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills