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

# devw remove

> Remove an installed rule or asset

```bash theme={null}
devw remove [category/name]
```

Removes a rule or asset that was installed via `devw add` and recompiles.

## Interactive Mode

Running `devw remove` without arguments shows installed rules and lets you select which to remove.

> Note: interactive mode only lists rules. To remove an asset, use the direct form.

## Direct Mode

```bash theme={null}
# Remove a rule
devw remove typescript/strict

# Remove an asset
devw remove command/spec
devw remove template/feature-spec
devw remove hook/auto-format
```

Removes the file from `.dwf/rules/` or `.dwf/assets/<type>s/` and updates `config.yml`. Recompiles automatically.

## Examples

```bash theme={null}
# Interactive — select rules to remove
devw remove

# Remove a specific rule
devw remove typescript/strict

# Remove a slash command
devw remove command/spec

# Remove an editor hook
devw remove hook/auto-format
```

Rules added manually (not via `devw add`) are not affected.
