name: slop-detection description: "Full Slop Detection Criteria v2.0: 24-criteria scoring system for detecting AI-generated long-form content." version: 2.0.0 author: User license: private metadata: hermes: tags: [slop-detection, editing, ai-writing, content-quality] related_skills: []
Configure a browser running locally on this VPS that the user can control through a password-protected web link.
Do not use paid browser/cloud services such as Browserbase, Browser Use, or Firecrawl. Do the setup end-to-end: install, configure, start, verify, save non-secret memory, then send the final link and credentials.
User browser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # --- only run on merges INTO main --- | |
| CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
| if [ "$CURRENT_BRANCH" != "main" ]; then | |
| exit 0 | |
| fi | |
| # --- bypass via env var --- |