Refactor documents — simplify without losing information, visualize flows with sequenceDiagram.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add sd0xdev/sd0x-harness --skill doc-refactor --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Doc Refactor?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/sd0xdev-doc-refactor-sd0x-harness)More formats (shields.io, HTML) on the badges page.
---
name: doc-refactor
description: "Refactor documents — simplify without losing information, visualize flows with sequenceDiagram."
allowed-tools: Read, Grep, Glob, Edit, Agent
---
# Document Refactoring
## Trigger
- Keywords: refactor doc, simplify document, doc-refactor, condense document
## When NOT to Use
- Code refactoring (use `/simplify` or `/refactor`)
- Document review without changes (use `/codex-review-doc`)
- Writing new documents (use `/tech-spec` or `/create-request`)
## Agent Dispatch
Dispatch to the dedicated `doc-refactor` agent:
```
Agent({
description: "Refactor document — simplify without losing information",
subagent_type: "doc-refactor",
prompt: `Refactor the document at: $ARGUMENTS
Follow the task steps and simplification standards defined in this skill.`
})
```
## Task
For the file specified by `$ARGUMENTS`:
1. **Analyze original content**
- Count lines
- Identify core information vs redundancy
2. **Refactor**
- Long paragraphs -> tables
- Steps -> sequenceDiagram
- Duplicates -> single source
3. **Validate**
- Key information preserved
- Line count reduced
## Simplification Standards
| File Type | Target Lines |
|-----------|-------------|
| CLAUDE.md | < 50 |
| rules/*.md | < 30 |
| agents/*.md | < 50 |
## Output
```markdown
## Refactoring Result
- Original: X lines
- Simplified: Y lines (-Z%)
## Changes
- <summary>
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!