freeze — for Claude Code freeze, community, for Claude Code, ide skills, ai-agents, ai-ops, claude-code, cybersecurity, devsecops, open-source

v0.1.0

À propos de ce Skill

Scenario recommande : Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --. Resume localise : Open-source AI operations platform built on Claude Code. It covers ai-agents, ai-ops, claude-code workflows.

Fonctionnalités

<!-- 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).

# Sujets clés

CarbeneAI CarbeneAI
[3]
[1]
Mis à jour: 4/22/2026

Skill Overview

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

Scenario recommande : Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --. Resume localise : Open-source AI operations platform built on Claude Code. It covers ai-agents, ai-ops, claude-code workflows.

Pourquoi utiliser cette compétence

Recommandation : freeze helps agents <!-- auto-generated from skill.md.tmpl — do not edit directly --. Open-source AI operations platform built on Claude Code.

Meilleur pour

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

Cas d'utilisation exploitables for freeze

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

! Sécurité et Limitations

  • Limitation : <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --
  • Limitation : Freeze applies to Edit and Write tools only — Read, Bash, Glob, Grep are unaffected
  • Limitation : 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.

Démo Labs

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 et étapes d’installation

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

? Questions fréquentes

Qu’est-ce que freeze ?

Scenario recommande : Ideal for AI agents that need <!-- auto-generated from skill.md.tmpl — do not edit directly --. Resume localise : Open-source AI operations platform built on Claude Code. It covers ai-agents, ai-ops, claude-code workflows.

Comment installer freeze ?

Exécutez la commande : npx killer-skills add CarbeneAI/Forge/freeze. Elle fonctionne avec Cursor, Windsurf, VS Code, Claude Code et plus de 19 autres IDE.

Quels sont les cas d’usage de freeze ?

Les principaux cas d’usage incluent : Cas d'usage : Applying <!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --, Cas d'usage : Applying <!-- Regenerate: bun run gen:skill-docs --, Cas d'usage : Applying /freeze — Restrict Edits to a Directory.

Quels IDE sont compatibles avec freeze ?

Cette skill est compatible avec 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. Utilisez la CLI Killer-Skills pour une installation unifiée.

Y a-t-il des limites pour freeze ?

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

Comment installer ce skill

  1. 1. Ouvrir le terminal

    Ouvrez le terminal ou la ligne de commande dans le dossier du projet.

  2. 2. Lancer la commande d’installation

    Exécutez : npx killer-skills add CarbeneAI/Forge/freeze. La CLI détectera automatiquement votre IDE ou votre agent et configurera la skill.

  3. 3. Commencer à utiliser le skill

    Le skill est maintenant actif. Votre agent IA peut utiliser freeze immédiatement dans le projet.

! 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

Compétences associées

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

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Resume localise : 🦞 # 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.

widget-generator

Logo of f
f

Resume localise : 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, Cursor, and

flags

Logo of vercel
vercel

Resume localise : 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
Navigateur

pr-review

Logo of pytorch
pytorch

Resume localise : 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
Développeur