Show HN: /show-me: agent skill for compact visual representations HumanLayer released 'show-me', a coding agent skill that prompts AI agents to explain their work with compact visuals like component trees and call stacks instead of prose, available via 'npx skills add humanlayer/skills --skill show-me'. The skill, inspired by Coda Hale's talk on intuition vs. attention, aims to improve the readability of coding agent outputs, which developers like former Reddit CEO Yishan and Mario Zechner have criticized as jargon-heavy. show-me: a coding agent skill for compact visual representations Dex https://twitter.com/dexhorthy · August 12, 2026 · < 7 min read tl;dr make your agent converse visually instead of in walls of prose. npx skills add humanlayer/skills --skill show-me Lighter and faster than HTML, good enough for most dev-work shaped problems. Coding agents are pretty much unreadable The former CEO of reddit: https://x.com/yishan/status/2086534431075098628 https://x.com/yishan/status/2086534431075098628 https://x.com/yishan/status/2086534431075098628 Mario Zechner https://x.com/badlogicgames , creator of pi: https://x.com/badlogicgames/status/2087068077309542889 https://x.com/badlogicgames/status/2087068077309542889 https://x.com/badlogicgames/status/2087068077309542889 Connor from Replicas: https://x.com/connortbot/status/2081881377147109413 https://x.com/connortbot/status/2081881377147109413 https://x.com/connortbot/status/2081881377147109413 Dillon Mulroy https://x.com/dillon mulroy even made a skill, /bro to ask the model to simplify language. https://x.com/dillon mulroy/status/2079238358358778142 https://x.com/dillon mulroy/status/2079238358358778142 https://x.com/dillon mulroy/status/2079238358358778142 The contents are: Restate your last message. Stop using jargon and speak coherently. State it more simply and concisely, like one human talking to another. i am so sick of this agents got more intelligent on paper, but the experience of using them got noticeably worse along this dimension. the thing people used to love about claude - its voice, it's personality, its "soul" has been flushed out in the RL dungeon sol is somewhat less cringe but still regularly hits us with walls of jargon that make eyes glaze over here's a response i got recently. this happens multiple times a day my proposal: show me We've been playing with internal tools to make this better, specifically for coding, and publishing them in a skill we call show-me . It's live in humanlayer today, and if you want it in any other coding agent - you can get it here: npx skills add humanlayer/skills --skill show-me If you ever watched coda hale's talk on intuition vs. attention in infrastructure systems https://www.youtube.com/watch?v=e 6gkfTomUQ , it's somewhat inspired: - analyzing information is hard and exhausting - your visual cortex was trained over millions of years to process rich visual information effortlessly - optimize tools accordingly Just as an axe must fit the human hand to be useful, software must fit the human mind to be useful /show-me prompts the agent to use concise visuals to explain what's happening, instead of walls of prose. This is really good for program design https://hlyr.dev/wsff-gh program-design - the phase many folks skip these days, but that I think is essential. You should be discussing the shape of the code the types, the signatures, the call stacks before agents get to work on writing it. The same techniques can also be used to explore large diffs post-hoc to understand what to dig into during review. What's inside component trees Same idea on the frontend, with the state hooks and module boundaries that matter kept in and everything else left out.