Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Snapshot

ASecurity

Crea y restaura checkpoints del estado de configuración de Jarvis y del proyecto activo. Activar con: /snapshot create, /snapshot list, /snapshot restore <id>, /snap create — o antes de cualquier operación destructiva. Inspirado en el sistema snapshot/rollback de Hermes Agent.

3 stars
0 votes
0 copies
1 views
Added 9/19/2026
toolsgobashgitapi

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add Ignvvcio254/Jarvis-254-Agent --skill snapshot --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Snapshot?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Snapshot
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ignvvcio254-snapshot/badge)](https://www.skillsdirectory.com/skills/ignvvcio254-snapshot)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: snapshot
description: "Crea y restaura checkpoints del estado de configuración de Jarvis y del proyecto activo. Activar con: /snapshot create, /snapshot list, /snapshot restore <id>, /snap create — o antes de cualquier operación destructiva. Inspirado en el sistema snapshot/rollback de Hermes Agent."
allowed-tools: Bash, Read, Write, Glob, Grep
---

# Snapshot — Checkpoints de Estado

> Inspirado en el sistema `/snapshot` + `/rollback` de Hermes Agent (NousResearch).
> Safety net antes de operaciones riesgosas. Nunca borra snapshots automáticamente.

---

## ¿Cuándo crear un snapshot?

Crear automáticamente (sin que el usuario lo pida) antes de:
- Modificar `~/.claude/CLAUDE.md` o `~/.claude/settings.json`
- Ejecutar curator o fusiones de skills
- Migraciones de base de datos o cambios de schema
- Force-push o rebase en branches compartidos
- Cualquier operación marcada como destructiva

---

## Comandos

### `/snapshot create [nombre]` o `/snap`

```
1. Generar ID: YYYY-MM-DD-HH-MM-SS (timestamp UTC)
2. Crear directorio: ~/.claude/snapshots/<id>/
3. Capturar archivos de configuración:
   - ~/.claude/CLAUDE.md
   - ~/.claude/settings.json
   - ~/.claude/goals.md (si existe)
   - ~/.claude/cerebro/index.md
   - ~/.claude/cerebro/log.md
4. Capturar estado git del proyecto activo:
   - git log --oneline -10 > git-log.txt
   - git diff HEAD > git-diff.txt
   - git status > git-status.txt
5. Crear metadata.json
6. Confirmar: "📸 Snapshot creado: <id>"
```

**Estructura del snapshot:**
```
~/.claude/snapshots/YYYY-MM-DD-HH-MM-SS/
├── metadata.json
├── CLAUDE.md
├── settings.json
├── goals.md
├── cerebro-index.md
├── cerebro-log.md
├── git-log.txt
├── git-diff.txt
└── git-status.txt
```

### `/snapshot list`

```
1. Glob ~/.claude/snapshots/*/metadata.json
2. Mostrar tabla: ID | Fecha | Proyecto | Razón
3. Ordenar por más reciente primero
```

### `/snapshot restore <id>`

```
⚠️ Confirmar con el usuario antes de ejecutar

1. Verificar que el snapshot existe
2. Mostrar qué se va a restaurar
3. Esperar confirmación explícita
4. Al confirmar:
   a. Crear snapshot del estado ACTUAL primero (pre-restore backup)
   b. Copiar archivos de config al destino
   c. Informar: "✅ Restaurado desde <id>"
```

### `/snapshot prune [--keep N]`

```
1. Por defecto mantener los últimos 30 snapshots
2. Eliminar los más antiguos que excedan el límite
3. NUNCA eliminar snapshots con "pinned": true en metadata.json
```

---

## metadata.json — Estructura

```json
{
  "id": "YYYY-MM-DD-HH-MM-SS",
  "timestamp": "YYYY-MM-DDTHH:MM:SSZ",
  "project": "nombre-del-proyecto",
  "project_path": "/ruta/absoluta/proyecto",
  "reason": "descripcion de por que se creo",
  "pinned": false,
  "files_captured": ["CLAUDE.md", "settings.json", "goals.md"]
}
```

---

## `/rollback [N]` — Git rollback

```
/rollback         → muestra últimos 10 commits con opción de restaurar
/rollback 3       → muestra qué se pierde al hacer git reset --soft HEAD~3
/rollback apply N → ejecuta git reset --soft HEAD~N (confirmar antes)
```

**Regla:** `/rollback apply` siempre crea un snapshot antes de ejecutar.

---

## Límites de seguridad

- Snapshots nunca se borran automáticamente
- `restore` siempre hace pre-restore backup antes de restaurar
- No incluir tokens ni API keys en snapshots (sanitizar automáticamente)
- Máximo 50 snapshots antes de requerir `/snapshot prune`

Attribution

Ignvvcio254Ignvvcio254
View sourceMore from Ignvvcio254 →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

ucoz-landing-skill

Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...

107 votes

Paperclip

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

805541 votes

Daw Music

Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.

761 votes

Instantly Rdsthomas Mission Control

Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.

761 votes

Caveman Compress

Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md. Trigger: /caveman-compress FILEPATH or "compress memory file"

1066600 votes
View all in tools →