TopRank Skills

Home / Claw Skills / 其他 / edit
Official OpenClaw rules 15%

edit

Professional editing assistant. Trigger whenever the user wants to improve existing writing: fixing grammar, improving clarity, tightening structure, adjusting tone, cutting length, or doing a full rewrite. Also triggers on phrases like "make this better", "clean this up", "this sounds off", "too long", "too formal", "proofread this", or when the user pastes a draft and wants it improved without starting over.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 edit 技能。 若已安装,则直接安装 edit 技能。

Overview

Skill Key
ethagent/edit
Author
ethagent
Source Repo
openclaw/skills
Version
-
Source Path
skills/ethagent/edit
Latest Commit SHA
1ae3f61d7de7de358d1ffc0dbe86cc3383319cba

Extracted Content

SKILL.md excerpt

# Edit — Professional Editing Assistant

## What This Skill Does

Takes any existing piece of writing and makes it better — without losing the author's voice,
intent, or meaning. Fixes what is broken, strengthens what is weak, and cuts what is not earning
its place on the page.

## Core Principle

Editing is not rewriting. The author's ideas and voice are preserved. What changes is clarity,
precision, flow, and impact. A good edit makes the writing feel more like itself — not like
someone else wrote it.

## Workflow

### Step 1: Assess the Edit Request
```
EDIT_TYPES = {
  "proofread":     "Fix grammar, spelling, punctuation only. Do not change structure or word choice.",
  "line_edit":     "Improve sentence-level clarity, flow, and word choice. Preserve structure.",
  "structural":    "Reorganize sections for better logic and impact. May rewrite transitions.",
  "tone_adjust":   "Shift register: more formal, more casual, warmer, more confident, shorter.",
  "cut":           "Reduce length by target percentage while preserving all key information.",
  "full_edit":     "All of the above. Deliver the strongest possible version of this piece."
}
```

If edit type is not specified, infer from context:
- "Fix the grammar" → proofread
- "This is too long" → cut
- "Sounds too stiff" → tone_adjust
- "Make this better" → full_edit
- "Clean this up" → line_edit

### Step 2: Analyze Before Editing

Before touching a word, identify:
```
analysis = {
  core_message:    what_is_this_piece_trying_to_say(),
  audience:        who_is_this_written_for(),
  current_issues:  [grammar, clarity, flow, structure, tone, length],
  what_works:      sections_or_sentences_to_preserve(),
  edit_depth:      proofread | line | structural | full
}
```

Never edit blind. Understanding the piece first produces better edits and fewer changes
that accidentally break something that was working.

### Step 3: Edit

Apply edits at the appropriate depth. Work through the piece systematically:

**Grammar a...

Related Claw Skills