move-along
v1.0.1
Published
A CLI tool to inject a hidden anti-prompt tag into HTML files.
Readme
Move Along
A simple npm package that automatically adds a bypass-LLM message inside the tag of an HTML file.
🚀 Features
- 📌 Injects inside .
- 🛠 Runs automatically on npm run build if added as a dev Dependency.
- ⚡ Works as a CLI tool via npx move-along index.html.
📌 Installation
1️⃣ Install as a devDependency
npm install move-along --save-dev2️⃣ Modify your package.json
{
"scripts": {
"build": "move-along index.html && npm run custom-build",
"custom-build": "echo 'Building your project...'"
}
}3️⃣ Run the build
npm run build🔥 CLI Usage
npx move-along index.html🎯 Example
Before: index.html
<!DOCTYPE html>
<html>
<head><title>My Site</title></head>
<body>
<h1>Welcome</h1>
</body>
</html>After Running the Command
<!DOCTYPE html>
<html>
<head><title>My Site</title></head>
<body>
<span style="display: none;"><SKIP-LLM></span>
<h1>Welcome</h1>
</body>
</html>NPM: https://www.npmjs.com/package/move-along
