freeze — for Claude Code freeze, lostark-accessory-viewer, community, for Claude Code, ide skills, <path>, unfreeze, file_path, permissionDecision: "deny", on the freeze directory prevents

v0.1.0

Über diesen Skill

Geeigneter Einsatz: Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --. Lokalisierte Zusammenfassung: 로아 악세서리 품질 뷰어 <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -- <!-- Regenerate: bun run gen:skill-docs -- /freeze — Restrict Edits to a Directory Lock file edits to a specific directory. This AI agent skill supports Claude Code, Cursor, and Windsurf

Funktionen

<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --
<!-- Regenerate: bun run gen:skill-docs --
/freeze — Restrict Edits to a Directory
Lock file edits to a specific directory. Any Edit or Write operation targeting
a file outside the allowed path will be blocked (not just warned).

# Kernthemen

jm199seo jm199seo
[0]
[0]
Aktualisiert: 3/22/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Geeigneter Einsatz: Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --. Lokalisierte Zusammenfassung: 로아 악세서리 품질 뷰어 <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -- <!-- Regenerate: bun run gen:skill-docs -- /freeze — Restrict Edits to a Directory Lock file edits to a specific directory. This AI agent skill supports Claude Code, Cursor, and Windsurf

Warum diese Fähigkeit verwenden

Empfehlung: freeze helps agents <!-- auto-generated from skill.md.tmpl — do not edit directly --. 로아 악세서리 품질 뷰어 <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -- <!-- Regenerate: bun run gen:skill-docs

Am besten geeignet für

Geeigneter Einsatz: Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --.

Handlungsfähige Anwendungsfälle for freeze

Anwendungsfall: Applying <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --
Anwendungsfall: Applying <!-- Regenerate: bun run gen:skill-docs --
Anwendungsfall: Applying /freeze — Restrict Edits to a Directory

! Sicherheit & Einschränkungen

  • Einschraenkung: <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --
  • Einschraenkung: Freeze applies to Edit and Write tools only — Read, Bash, Glob, Grep are unaffected
  • Einschraenkung: Requires repository-specific context from the skill documentation

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs-Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ und Installationsschritte

These questions and steps mirror the structured data on this page for better search understanding.

? Häufige Fragen

Was ist freeze?

Geeigneter Einsatz: Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --. Lokalisierte Zusammenfassung: 로아 악세서리 품질 뷰어 <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -- <!-- Regenerate: bun run gen:skill-docs -- /freeze — Restrict Edits to a Directory Lock file edits to a specific directory. This AI agent skill supports Claude Code, Cursor, and Windsurf

Wie installiere ich freeze?

Führen Sie den Befehl aus: npx killer-skills add jm199seo/lostark-accessory-viewer/freeze. Er funktioniert mit Cursor, Windsurf, VS Code, Claude Code und mehr als 19 weiteren IDEs.

Wofür kann ich freeze verwenden?

Wichtige Einsatzbereiche sind: Anwendungsfall: Applying <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --, Anwendungsfall: Applying <!-- Regenerate: bun run gen:skill-docs --, Anwendungsfall: Applying /freeze — Restrict Edits to a Directory.

Welche IDEs sind mit freeze kompatibel?

Dieser Skill ist mit Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer kompatibel. Nutzen Sie die Killer-Skills CLI für eine einheitliche Installation.

Gibt es Einschränkungen bei freeze?

Einschraenkung: <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --. Einschraenkung: Freeze applies to Edit and Write tools only — Read, Bash, Glob, Grep are unaffected. Einschraenkung: Requires repository-specific context from the skill documentation.

So installieren Sie den Skill

  1. 1. Terminal öffnen

    Öffnen Sie Ihr Terminal oder die Kommandozeile im Projektverzeichnis.

  2. 2. Installationsbefehl ausführen

    Führen Sie aus: npx killer-skills add jm199seo/lostark-accessory-viewer/freeze. Die CLI erkennt Ihre IDE oder Ihren Agenten automatisch und richtet den Skill ein.

  3. 3. Skill verwenden

    Der Skill ist jetzt aktiv. Ihr KI-Agent kann freeze sofort im aktuellen Projekt verwenden.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

freeze

Install freeze, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --> <!-- Regenerate: bun run gen:skill-docs -->

/freeze — Restrict Edits to a Directory

Lock file edits to a specific directory. Any Edit or Write operation targeting a file outside the allowed path will be blocked (not just warned).

bash
1mkdir -p ~/.gstack/analytics 2echo '{"skill":"freeze","ts":"'$(date -u +%Y-%m-%dT%H:%M:%SZ)'","repo":"'$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" 2>/dev/null || echo "unknown")'"}' >> ~/.gstack/analytics/skill-usage.jsonl 2>/dev/null || true

Setup

Ask the user which directory to restrict edits to. Use AskUserQuestion:

  • Question: "Which directory should I restrict edits to? Files outside this path will be blocked from editing."
  • Text input (not multiple choice) — the user types a path.

Once the user provides a directory path:

  1. Resolve it to an absolute path:
bash
1FREEZE_DIR=$(cd "<user-provided-path>" 2>/dev/null && pwd) 2echo "$FREEZE_DIR"
  1. Ensure trailing slash and save to the freeze state file:
bash
1FREEZE_DIR="${FREEZE_DIR%/}/" 2STATE_DIR="${CLAUDE_PLUGIN_DATA:-$HOME/.gstack}" 3mkdir -p "$STATE_DIR" 4echo "$FREEZE_DIR" > "$STATE_DIR/freeze-dir.txt" 5echo "Freeze boundary set: $FREEZE_DIR"

Tell the user: "Edits are now restricted to <path>/. Any Edit or Write outside this directory will be blocked. To change the boundary, run /freeze again. To remove it, run /unfreeze or end the session."

How it works

The hook reads file_path from the Edit/Write tool input JSON, then checks whether the path starts with the freeze directory. If not, it returns permissionDecision: "deny" to block the operation.

The freeze boundary persists for the session via the state file. The hook script reads it on every Edit/Write invocation.

Notes

  • The trailing / on the freeze directory prevents /src from matching /src-old
  • Freeze applies to Edit and Write tools only — Read, Bash, Glob, Grep are unaffected
  • This prevents accidental edits, not a security boundary — Bash commands like sed can still modify files outside the boundary
  • To deactivate, run /unfreeze or end the conversation

Verwandte Fähigkeiten

Looking for an alternative to freeze or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Lokalisierte Zusammenfassung: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Lokalisierte Zusammenfassung: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Lokalisierte Zusammenfassung: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Lokalisierte Zusammenfassung: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Entwickler