claudegoodies
Command

pre-edit

From ruvnet

Execute pre-edit validations and agent assignment before file modifications.

Install

/pre-edit

Facts

Repository
ruvnet/ruflo
Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this command runs.

# hook pre-edit

Execute pre-edit validations and agent assignment before file modifications.

## Usage

```bash
npx claude-flow hook pre-edit [options]
```

## Options

- `--file, -f <path>` - File path to be edited
- `--auto-assign-agent` - Automatically assign best agent (default: true)
- `--validate-syntax` - Pre-validate syntax before edit
- `--check-conflicts` - Check for merge conflicts
- `--backup-file` - Create backup before editing

## Examples

### Basic pre-edit hook

```bash
npx claude-flow hook pre-edit --file "src/auth/login.js"
```

### With validation

```bash
npx claude-flow hook pre-edit -f "config/database.js" --validate-syntax
```

### Manual agent assignment

```bash
npx claude-flow hook pre-edit -f "api/users.ts" --auto-assign-agent false
```

### Safe editing with backup

```bash
npx claude-flow hook pre-edit -f "production.env" --backup-file --check-conflicts
```

## Features

### Auto Agent Assignment

- Analyzes file type and content
- Assigns specialist agents
- TypeScript → TypeScript expert
- Database → Data specialist
- Tests → QA engineer

### Syntax Validation

- Pre-checks syntax validity
- Identifies potential errors
- Suggests corrections
- Prevents broken code

### Conflict Detection

- Checks for git conflicts
- Identifies concurrent edits
- Warns about stale files
- Suggests merge strategies

### File Backup

- Creates safety backups
- Ena
View full source on GitHub →

Other slash commands