> ## Documentation Index
> Fetch the complete documentation index at: https://docs.befailproof.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove policies

title: إلغاء تثبيت السياسات
description: "إزالة إدخالات الخطاف من إعدادات Claude Code"
----------------------------------------------------------

```bash theme={null}
failproofai policies --uninstall [policy-names...] [options]
```

يزيل إدخالات خطاف failproofai من `settings.json` الخاص بـ Claude Code.

الأسماء المختصرة: `failproofai p -u`

## الخيارات

| الراية            | الوصف                                   |
| ----------------- | --------------------------------------- |
| `--scope user`    | الإزالة من الإعدادات العامة (الافتراضي) |
| `--scope project` | الإزالة من إعدادات المشروع              |
| `--scope local`   | الإزالة من الإعدادات المحلية            |
| `--scope all`     | الإزالة من جميع النطاقات في نفس الوقت   |
| `--custom` / `-c` | مسح `customPoliciesPath` من التكوين     |

## السلوك

* **بدون أسماء سياسات** - يزيل جميع إدخالات خطاف failproofai من ملف الإعدادات
* **أسماء محددة** - يعطل تلك السياسات لكن يحافظ على الخطافات المثبتة

## أمثلة

```bash theme={null}
# إزالة جميع الخطافات عالمياً
failproofai policies --uninstall

# تعطيل سياسة محددة (مع الحفاظ على الخطافات المثبتة)
failproofai policies --uninstall block-sudo

# إزالة الخطافات من كل النطاقات
failproofai policies --uninstall --scope all

# مسح مسار السياسات المخصصة
failproofai policies --uninstall --custom
```
