mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-30 01:41:43 +00:00
Port https://github.com/blader/humanizer (MIT, v2.5.1, 16k stars) into the built-in skills under skills/creative/humanizer/. Based on Wikipedia's 'Signs of AI writing' guide (WikiProject AI Cleanup) — detects 29 AI-writing patterns and rewrites them to sound human. Hermes-native adaptations: - Description (<60 chars) explains what it's for: 'Humanize text: strip AI-isms and add real voice.' - 'When to use this skill' section — trigger phrases (humanize, de-AI, de-slop, un-ChatGPT, rewrite to not sound like an LLM) plus guidance to apply it to the agent's own output (release notes, PR descriptions, docs). - 'How to use it in Hermes' — maps the three real input paths (inline, file via read_file/patch/write_file, voice-calibration sample) onto the tools the agent actually has. Drops Claude Code's allowed-tools block. - Converted frontmatter to Hermes format (metadata.hermes.tags, category, homepage, related_skills). Attribution preserved: - Original author Siqi Chen (@blader) credited in frontmatter and body. - Full MIT LICENSE copied verbatim alongside SKILL.md. - Wikipedia / WikiProject AI Cleanup credited. - 29 patterns, personality/soul section, and full worked example kept verbatim from the source (29,914 chars). Validated end-to-end against a clean HERMES_HOME: - sync_skills() copies skills/creative/humanizer/ including LICENSE. - skills_list(category='creative') returns the 48-char description. - skill_view(name='humanizer') returns the full body with all 29 patterns, personality/soul, attribution, and Hermes tool refs (read_file, patch, write_file) intact.
21 lines
1 KiB
Text
21 lines
1 KiB
Text
MIT License
|
|
|
|
Copyright (c) 2025 Siqi Chen
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|