> ## Documentation Index
> Fetch the complete documentation index at: https://exosphere-auto-translate-docs-20260626-1023.mintlify.site/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 hook من `settings.json` في Claude Code.

الأسماء البديلة: `failproofai p -u`

## الخيارات

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

## السلوك

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

## أمثلة

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

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

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

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