diff --git a/.gitignore b/.gitignore index 7cf97fa..b10cbf2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules/ .DS_Store *.tgz +.env \ No newline at end of file diff --git a/README.md b/README.md index 8a9d2e6..3d1bcc1 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ npx skills add jpeggdev/humanize-writing ### Via npm ``` -npm install -g @jpegg/humanize-writing +npm install -g @jpeggdev/humanize-writing ``` The postinstall script copies the skill files to `~/.claude/skills/humanize-writing/` (and equivalent directories for Cursor and Windsurf). @@ -43,7 +43,7 @@ Once installed, the skill activates automatically in Claude Code when you say th ## Uninstall ``` -npm uninstall -g @jpegg/humanize-writing +npm uninstall -g @jpeggdev/humanize-writing ``` This removes the skill files from all agent skill directories. diff --git a/SKILL.md b/SKILL.md index df3a530..b5c86b6 100644 --- a/SKILL.md +++ b/SKILL.md @@ -160,7 +160,26 @@ Not everything needs to change. Keep: When rewriting: 1. Rewrite the full content with changes applied -2. After the rewrite, provide a brief summary of what you changed and why (5-8 bullet points max) +2. After the rewrite, add a **Changes** section with a short, scannable summary. Format it as a table: + +``` +### Changes + +| Pass | What changed | Examples | +|---|---|---| +| Structure | Collapsed parallel lists into prose | Sections 1, 4, 6 | +| Vocabulary | Cut "navigating" (×3), "journey" (×2) | → "deal with," "transition" | +| Rhythm | Added short punchy lines, varied length | "Full stop." "That changes the math." | +| Hedging | Removed 3 filler starters | "It's worth noting..." deleted | +| Texture | Added lived-in details | "stare at the ceiling" | +| Transitions | Replaced 2 generic connectors | "Moreover" → dropped | +``` + +Rules for the table: +- Only include passes where you actually made changes (skip passes with nothing to report) +- "What changed" column: one short phrase, no full sentences +- "Examples" column: show a specific before→after or quote a short addition +- Keep it tight. If it needs more than 6-7 rows, you changed too much or you're over-explaining. When reviewing without rewriting (if asked): 1. Flag specific passages that read as AI-generated diff --git a/package.json b/package.json index fa791c3..1e662f8 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@jpegg/humanize-writing", + "name": "@jpeggdev/humanize-writing", "version": "1.0.0", "description": "Claude Code skill that rewrites AI-generated content to sound human. Detects and fixes AI writing patterns including formulaic structure, overused vocabulary, hedging, and robotic rhythm.", "main": "index.js",