Files
jpeggdev__humanize-writing/package.json
T
Jeff Pegg 3f033af5ea Add humanize-writing skill with npm packaging
Skill that rewrites AI-generated content to sound human. Includes
install/uninstall scripts that copy skill files to ~/.claude/skills/,
~/.cursor/skills/, and ~/.windsurf/skills/ for cross-agent support.

Publishable via npm (@jpegg/humanize-writing) and skills.sh.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-12 17:08:42 -06:00

31 lines
759 B
JSON

{
"name": "@jpegg/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",
"scripts": {
"postinstall": "node install-skill.js",
"preuninstall": "node uninstall-skill.js"
},
"keywords": [
"claude",
"skill",
"agent",
"writing",
"humanize",
"ai-detection"
],
"author": "jpeggdev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jpeggdev/humanize-writing"
},
"files": [
"SKILL.md",
"references/",
"install-skill.js",
"uninstall-skill.js"
]
}