plugins marketplace
← All plugins

draft-review-kit

v0.1.0

A focused kit of feedback-first writing review skills for stress-testing drafts, arguments, pacing, clarity, and line-level prose.

CodexClaude Code13 skills

by Katie ParrottMIT78updated 2 months ago

Source

git clone https://github.com/EveryInc/draft-review-kit

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

draft-review-kit/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/asshole/SKILL.md
├── skills/debate/SKILL.md
├── skills/dev-edit/SKILL.md
├── skills/eli5/SKILL.md
├── skills/guardrails/SKILL.md
├── skills/hemingway/SKILL.md
├── skills/hitchcock/SKILL.md
├── skills/line-edit/SKILL.md
├── skills/mom/SKILL.md
├── skills/panel/SKILL.md
├── skills/sedaris/SKILL.md
├── skills/sorkin/SKILL.md
└── skills/vonnegut/SKILL.md

Skills13

assholeskills/asshole/SKILL.md

Reads your writing through the meanest, least-charitable lens. Challenges every claim, questions every assumption, pokes holes in the logic. Use for later drafts when you want hard feedback.

debateskills/debate/SKILL.md

Run a multi-round deliberation between reviewers. Unlike /panel (which synthesizes), /debate has reviewers respond to each other's arguments across rounds until tensions resolve or reach acknowledged stalemate.

dev-editskills/dev-edit/SKILL.md

Review a draft for big-picture issues—argument, structure, stakes, and payoff. Invoke with /dev-edit after drafting or with any draft the user provides.

eli5skills/eli5/SKILL.md

Checks writing for clarity and accessibility. Flags jargon without explanation, hand-wavy process descriptions, and skipped steps. Ensures content is specific enough for experts AND clear enough for newcomers. Use when reviewing technical or process-heavy writing.

guardrailsskills/guardrails/SKILL.md

Scan any Every draft for recurring editorial-review failures: clarity and evidence gaps, argument problems, mechanics red flags, second-order AI tells, and, for Working Overtime only, column-specific voice tics and structural throat-clearing. Use when reviewing or polishing Every writing before submission. Reports findings with line-level diagnoses and suggested fixes. Pairs with ai-check and every-style.

hemingwayskills/hemingway/SKILL.md

Cuts ruthlessly. Flags every adjective, adverb, and unnecessary word. Demands you kill your darlings.

hitchcockskills/hitchcock/SKILL.md

Reviews for suspense and tension. Where's the bomb under the table? What does the reader know that someone doesn't?

line-editskills/line-edit/SKILL.md

Deep, rigorous pass for sentence- and word-level issues. Delivers a clean draft with a summary of changes. Invoke with /line-edit after dev-edit or with any draft.

momskills/mom/SKILL.md

Reads your writing from a loving, supportive, but not-quite-getting-it perspective. Surfaces where you've lost the general reader.

panelskills/panel/SKILL.md

Convene a panel of reviewers to analyze a draft from multiple perspectives, then synthesize their feedback into consensus findings, productive tensions, and prioritized recommendations.

sedarisskills/sedaris/SKILL.md

Finds the funny. Looks for moments that could be mined for humor, absurdity, or self-deprecation.

sorkinskills/sorkin/SKILL.md

Checks pacing and momentum. Is there enough forward motion? Are you walking and talking or standing still?

vonnegutskills/vonnegut/SKILL.md

Applies Vonnegut's 8 rules for writing. Start close to the end, give characters wants, be a sadist, etc.

Manifests2

.codex-plugin/plugin.json
{
  "name": "draft-review-kit",
  "version": "0.1.0",
  "description": "A focused kit of feedback-first writing review skills for stress-testing drafts, arguments, pacing, clarity, and line-level prose.",
  "author": {
    "name": "Katie Parrott"
  },
  "license": "MIT",
  "keywords": [
    "writing",
    "editing",
    "review",
    "feedback",
    "skills"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Draft Review Kit",
    "shortDescription": "Feedback-first review skills for drafts",
    "longDescription": "Draft Review Kit is a compact set of writing-review skills for stress-testing drafts. It includes developmental editing, hostile reads, general-reader checks, clarity checks, craft lenses, panel/debate review, and line editing.",
    "developerName": "Katie Parrott",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "defaultPrompt": [
      "Run a developmental edit on this draft.",
      "Give this the least charitable read.",
      "Convene a panel of reviewers for this piece."
    ],
    "brandColor": "#2563EB",
    "screenshots": []
  }
}
.claude-plugin/plugin.json
{
  "name": "draft-review-kit",
  "version": "0.1.0",
  "description": "A focused kit of feedback-first writing review skills for stress-testing drafts, arguments, pacing, clarity, and line-level prose.",
  "author": {
    "name": "Katie Parrott"
  },
  "keywords": [
    "writing",
    "editing",
    "review",
    "feedback",
    "skills"
  ],
  "repository": "",
  "license": "MIT"
}