Claude-skill-registry edit
Run line-level editing across chapters. Catches spelling, grammar, awkward phrasing, and word echoes.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/edit" ~/.claude/skills/majiayu000-claude-skill-registry-edit && rm -rf "$T"
manifest:
skills/data/edit/SKILL.mdsource content
Run the editor agent to polish your manuscript at the line level.
What This Does
- Processes chapters looking for mechanical issues
- Flags spelling, grammar, awkward phrasing, word echoes
- Identifies manuscript-wide patterns (overused words, crutch phrases)
- Offers to apply mechanical fixes automatically
- Updates
with findingsprogress.md
Usage
/fiction:edit # Edit most recent chapter /fiction:edit 5 # Edit chapter 5 /fiction:edit all # Edit all drafted chapters /fiction:edit 3-7 # Edit chapters 3 through 7
If arguments provided: $ARGUMENTS
Parallel Processing (Important for Large Manuscripts)
When editing multiple chapters ("all" or a range), spawn editor agents in parallel for efficiency:
- Identify all chapters to process
- Launch one editor agent per chapter simultaneously using the Task tool
- Each agent processes its chapter independently
- After all complete, aggregate manuscript-wide patterns from all reports
- Update
with combined findingsprogress.md
Example parallel approach for
with 20 chapters:/fiction:edit all
- Spawn 20 editor agents in a single message (one Task call per chapter)
- Agents run concurrently, each producing its own report
- Main conversation aggregates: common crutch words, repeated issues across chapters
- Total time ~ time for 1 chapter instead of 20x
What It Catches
- Spelling & typos — Including wrong-word errors (their/there)
- Grammar — Agreement, punctuation, comma splices
- Awkward phrasing — Confusing syntax, unclear references
- Word echoes — Repetition in close proximity
- Overused words — Filter words, weak verbs, crutch words
- Formatting — Inconsistent dashes, ellipses, quotes
Output
A report per chapter with:
- Issues by category with line numbers
- Suggested fixes
- Manuscript-wide patterns (when editing multiple chapters)
When to Use
- After completing a chapter draft
- Before sending to beta readers
- During revision passes
- After
addresses story issues/fiction:review
Workflow
Recommended order for polishing:
— Fix story/craft issues first/fiction:review
— Then line-level polish/fiction:edit
agent — Check cross-chapter consistencycontinuity
— Final literary assessment (if complete)/fiction:critique
Related Commands
— Story and craft feedback (run first)/fiction:review
— Full manuscript literary review/fiction:critique
— Project structure audit/fiction:reconcile