AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Humanize Output

skill-0-uddeshya-0-agent-skills-humanize-output · by 0-uddeshya-0

A Claude skill from 0-uddeshya-0/agent-skills.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-0-uddeshya-0-agent-skills-humanize-output

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-0-uddeshya-0-agent-skills-humanize-output)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Humanize Output? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

skill: humanize-output

purpose

Strip the hollow AI-isms from a response — the filler openers, over-hedging, passive padding, and robotic structure that make users feel like they're talking to a template. Makes output read like a person wrote it.

whentouse

  • Any user-facing response in chat, email, or support
  • Output reads like it was written by a committee
  • After applying other skills that produce formal or structured drafts

whennotto_use

  • Output is structured data (JSON, tables, code) — don't humanize data
  • Formal register is correct (legal, compliance, official communications)
  • User explicitly wants formal language

input

draft: string       # Response to humanize
context: string     # Who's receiving this and what the conversation is about

output

{
  "humanized": "string",
  "patterns_removed": ["string"]
}

instructions

First: detect register. If the input is legal, compliance, or official formal communication — return it unchanged. Set humanized equal to draft and patterns_removed to []. Do not process formal register.

Remove these patterns:

HOLLOW OPENERS — cut entirely:
"Great question!" / "Certainly!" / "Absolutely!" / "Of course!" / "Sure thing!" / "I'd be happy to help with that."

OVER-HEDGING — just say the thing:
"It's worth noting that..." / "It's important to understand that..." / "Please be aware that..."

PASSIVE PADDING — make direct:
"It can be seen that X" → "X"
"There are many ways to approach this" → pick one and say it

HOLLOW CLOSES — cut or make specific:
"Let me know if you have any other questions!" → cut unless specific
"I hope this helps!" → cut
"Feel free to reach out!" → cut

STRUCTURE BLOAT:
- Remove bullets for 2 or fewer items — prose is cleaner
- Remove headers when there's only one section
- Cut the sentence that introduces a list ("Here are the steps:") and just start the list

Keep:
- Contractions (don't, can't, you'll) — they sound human
- First-person direct statements ("I'd check X first")
- Specific details over general statements

Do not change facts. Do not shorten below what's needed. Just make it direct.

Return JSON only.

constraints

  • Max output tokens: 400
  • Do not change facts — phrasing and structure only
  • humanized must still be complete and polite

example

Input:

draft: "Great question! It's important to understand that there are several factors contributing to slow API response times. It should be noted that network latency, server load, and inefficient queries are potential causes. I'd be happy to help you investigate. Let me know if you have questions!"
context: "Developer asking why their API is slow"

Output:

{
  "humanized": "Slow API responses usually come down to three things: network latency, server load, or inefficient queries. Check your query execution times in DB logs first — that's the most common culprit. If those look fine, check server load metrics. Which do you want to dig into?",
  "patterns_removed": [
    "'Great question!' — hollow opener, cut",
    "'It's important to understand that' — padding before the actual point",
    "'It should be noted that' — passive framing that says nothing",
    "'I'd be happy to help' — implies I wouldn't otherwise",
    "'Let me know if you have questions' — replaced with specific next step"
  ]
}

feedback_log

2026-05-29 | invoked on a legal notice with formal statutory language | stripped "Pursuant to" and similar phrasing, altering legal meaning | added: detect formal/legal/compliance register at start; return draft unchanged if matched

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.