> ## 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.

# 정책 제거

> Claude Code의 설정에서 훅 항목 제거

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

Claude Code의 `settings.json`에서 failproofai 훅 항목을 제거합니다.

별칭: `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
```
