freeze — compétence d'agent d'IA freeze, jerrywu001, community, compétence d'agent d'IA, ide skills, serveur MCP, compétence de Cursor, compétence de Claude Code, compétence de Windsurf, restriction d'édition

v0.1.0

À propos de ce Skill

Parfait pour les agents conscients de la sécurité ayant besoin d'un contrôle d'accès et de restrictions d'édition au niveau du répertoire. Freeze est une compétence qui restreint les éditions à un répertoire spécifique

Fonctionnalités

Restriction des éditions à un répertoire spécifique
Blocage des opérations d'édition en dehors du chemin autorisé
Intégration avec AI Agent Skills
Compatibilité avec Cursor
Prise en charge des opérations d'édition et d'écriture
Sécurité améliorée grâce au blocage des opérations non autorisées

# Core Topics

jerrywu001 jerrywu001
[6]
[2]
Updated: 3/22/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
44
Canonical Locale
en
Detected Body Locale
en

Parfait pour les agents conscients de la sécurité ayant besoin d'un contrôle d'accès et de restrictions d'édition au niveau du répertoire. Freeze est une compétence qui restreint les éditions à un répertoire spécifique

Pourquoi utiliser cette compétence

Permet aux agents de restreindre les éditions à un répertoire spécifique, en utilisant les autorisations du système de fichiers et en bloquant les opérations d'écriture non autorisées, garantissant l'intégrité et la sécurité des données via des protocoles comme Git et l'accès au système de fichiers.

Meilleur pour

Parfait pour les agents conscients de la sécurité ayant besoin d'un contrôle d'accès et de restrictions d'édition au niveau du répertoire.

Cas d'utilisation exploitables for freeze

Restreindre les éditions à des fichiers de configuration sensibles
Bloquer l'accès non autorisé à des répertoires de projets critiques
Mettre en œuvre un contrôle d'accès au niveau du répertoire pour des projets collaboratifs

! Sécurité et Limitations

  • Nécessite un accès au système de fichiers
  • Limité à la granularité au niveau du répertoire
  • Dépendant de la configuration du référentiel Git

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

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 & Installation Steps

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

? Frequently Asked Questions

What is freeze?

Parfait pour les agents conscients de la sécurité ayant besoin d'un contrôle d'accès et de restrictions d'édition au niveau du répertoire. Freeze est une compétence qui restreint les éditions à un répertoire spécifique

How do I install freeze?

Run the command: npx killer-skills add jerrywu001/jerrywu001/freeze. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for freeze?

Key use cases include: Restreindre les éditions à des fichiers de configuration sensibles, Bloquer l'accès non autorisé à des répertoires de projets critiques, Mettre en œuvre un contrôle d'accès au niveau du répertoire pour des projets collaboratifs.

Which IDEs are compatible with freeze?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for freeze?

Nécessite un accès au système de fichiers. Limité à la granularité au niveau du répertoire. Dépendant de la configuration du référentiel Git.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add jerrywu001/jerrywu001/freeze. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use freeze immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

freeze

Découvrez comment restreindre les éditions à un répertoire spécifique avec Freeze, une compétence pour AI Agent Skills qui bloque les opérations d'édition...

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence
<!-- 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

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur