---
description: Remove AI tone from article and save revised version
argument-hint: <file_path>
allowed-tools: Read, Write
context: fork
model: sonnet
---

# De-AI Article Reviser

Remove artificial AI tone from articles and save the humanized version.

## Step 1: Parse Input

Input file path: $ARGUMENTS

If no path provided, ask the user to provide a file path.

## Step 2: Read Original Article

Read the file content using the Read tool with the provided path.

## Step 3: Analyze and Revise

Analyze the article and rewrite it to remove AI characteristics:

**AI characteristics to remove:**
- Overly formal or robotic language
- Repetitive sentence structures
- Excessive use of transition words ("Moreover", "Furthermore", "Additionally")
- Generic phrases ("It's worth noting that", "It's important to understand")
- Lack of personal voice or authentic emotion
- Over-explanation of obvious points
- Artificial enthusiasm or politeness
- Perfect grammar that lacks natural variation

**Humanizing techniques:**
- Use varied sentence lengths (mix short and long)
- Include occasional contractions and colloquialisms
- Add personal observations or subtle opinions
- Use more specific, concrete examples
- Embrace minor imperfections in structure
- Add natural transitions and flow
- Use active voice and direct language
- Include rhetorical questions where appropriate

**Important:**
- Preserve the original meaning and key information
- Maintain the same general structure and format
- Keep any code blocks, lists, or formatting intact
- Don't change technical terms or proper nouns
- Preserve the original language (Chinese/English)

## Step 4: Generate Revised Filename

From the original file path, generate the revised filename:
- Extract directory, filename, and extension
- Add `-Revised` before the extension
- Example: `/path/to/article.md` → `/path/to/article-Revised.md`

## Step 5: Save Revised Version

Write the humanized content to the new file path.

## Step 6: Confirmation

Output a success message showing:
- Original file path
- Revised file path
- Brief summary of main changes made

## Example Usage

```
/deai ~/Documents/my-article.md
```

```
/deai ./blog/posts/2024-01-15-ai-trends.md
```

## Output Format

```
================================================================================
✨ Article Revised - AI Tone Removed
================================================================================

📄 Original: /path/to/article.md
💾 Revised:  /path/to/article-Revised.md

🎯 Main Changes:
- Simplified overly formal language
- Varied sentence structures
- Removed generic transition phrases
- Added more natural flow

✅ Done! Check the revised version.
================================================================================
```
