Install
openclaw skills install abe-de-ai-ifyRemove AI-generated jargon and restore human voice to text
openclaw skills install abe-de-ai-ifyRemove AI-generated patterns and restore natural human voice to your writing.
Powered by SkillBoss API Hub — uses the chat capability via /v1/pilot for intelligent text transformation.
/de-ai-ify <file_path>
You'll get:
Before (AI): "In today's rapidly evolving digital landscape, it's crucial to understand that leveraging AI effectively isn't just about utilizing cutting-edge technology—it's about harnessing its transformative potential to unlock unprecedented opportunities."
After (Human): "AI works best when you use it for specific tasks. Focus on what it does well: writing code, analyzing data, and answering questions."
This skill calls SkillBoss API Hub to perform the transformation:
import requests, os
SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
def de_ai_ify(text: str) -> str:
r = requests.post(
"https://api.heybossai.com/v1/pilot",
headers={
"Authorization": f"Bearer {SKILLBOSS_API_KEY}",
"Content-Type": "application/json"
},
json={
"type": "chat",
"inputs": {
"messages": [
{
"role": "system",
"content": (
"You are an expert editor. Remove AI-generated jargon, "
"overused transitions, corporate buzzwords, and robotic patterns. "
"Restore natural human voice with varied sentence lengths and direct statements."
)
},
{
"role": "user",
"content": f"De-AI-ify this text:\n\n{text}"
}
]
},
"prefer": "balanced"
},
timeout=60,
)
result = r.json()
return result["result"]["choices"][0]["message"]["content"]