This file provides guidance to WARP (warp.dev) when working with code in this repository.
This repository is a Node.js CLI tool that bundles humanizer prompts with user input text and outputs to stdout. It does not call any API — pipe the output to any LLM.
package.json— ESM package,humanizerbin entry, zero runtime dependenciesbin/humanizer.js— Shebang entry pointsrc/cli.js— Arg parsing (node:util parseArgs), input resolution, output formattingsrc/prompt.js— System prompt extracted from SKILL.mdSKILL.md— Source material: the original humanizer skill definition (24 AI writing patterns)README.md— Installation, usage, and pipe examples
npm install -g humanizer-clinode bin/humanizer.js --help
node bin/humanizer.js essay.txt
echo "test" | node bin/humanizer.js
node bin/humanizer.js --prompt-onlynode bin/humanizer.js --help # shows usage
node bin/humanizer.js --version # shows version from package.json
node bin/humanizer.js --prompt-only # outputs system prompt only
echo "test input" | node bin/humanizer.js # outputs bundled promptVersion is in package.json only. Bump it there.
The system prompt lives in src/prompt.js. If you update it, keep SKILL.md as the reference for pattern definitions, but note that src/prompt.js is the runtime source of truth for the CLI.