intercom
Streamline session-to-session coordination with the intercom extension. Send messages, delegate tasks, and coordinate work across multiple atomic sessions on…
Help the user understand the current topic visually with concise diagrams, code-shape sketches, and focused HTML artifacts.
$ npx -y skills add flora131/atomic --skill show-me --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/show-meContext preview
The summary Claude sees to decide when to auto-load this skill.
Help the user understand the current topic visually with concise diagrams, code-shape sketches, and focused HTML artifacts.
name: show-me
description: Help the user understand the current topic visually with concise diagrams, code-shape sketches, and focused HTML artifacts.
license: MIT. LICENSE.txt has complete terms
metadata:
author: HumanLayer
github-repo: https://github.com/humanlayer/skills
github-path: plugins/show-me/skills/show-me
github-ref: refs/heads/main
github-tree-sha: d57a0a0afc2800a4cc7a7765e65a9c6c18e67b4fHelp the user understand the current topic of conversation visually. Skip the preamble and keep prose brief. Pick the smallest view that makes the key point clear.
on(save)
if content is unchanged
return cached result
write new content
return fresh resultsubmitForm
createSession
persistPrompt
launchAgent
navigateToSession<SessionPage> (apps/example/src/routes/session.tsx)
useSessionEvents()
<SessionToolbar>
<RunSkillButton> (packages/ui)src/ ├── commands/ # parses user actions ├── sessions/ # owns session state └── transport/ # sends API requests
sequenceDiagram
participant User
participant UI
participant Daemon
User->>UI: choose command
UI->>Daemon: send expanded prompt
Daemon-->>UI: stream resultFor a component change:
<SessionPage> useSessionEvents() <SessionToolbar> + <RunSkillButton /> <SessionTimeline> + <SkillResultCard />
For a file-layout change:
src/ ├── commands/ +│ └── show-me.ts # expands the slash command ├── sessions/ -└── transport.ts +└── transport/ + ├── client.ts + └── stream.ts
For a call-tree or call-stack change:
submitForm
createSession
persistPrompt
+ expandSkillMention
launchAgent
- navigateToSession
+ navigateToSession
+ subscribeToEventsFor a state or control-flow change:
on(save) - write content + if content is unchanged + return cached result + write new content + invalidate cache
function expandSkill(command: string): string {
const skillName = command.slice(1)
return `use the ${skillName} skill`
}Use Atomic's `bash` tool to run:
if [ "$(uname -s)" = "Darwin" ] && command -v open >/dev/null 2>&1; then
open "path/to/show-me-{description}.html"
elif [ "$(uname -s)" = "Linux" ] && command -v xdg-open >/dev/null 2>&1; then
xdg-open "path/to/show-me-{description}.html"
else
printf 'Open this file: %s\n' "path/to/show-me-{description}.html"
fiPlace each visual next to the short text it supports. Keep only the calls, files, props, states, and boundaries needed to answer the user's current question or the options to resolve the current discussion point.
You may use one of these, you may use several, it is unlikely you will use all of them. Use your judgement and don't overwhelm the user.
The verifiable coding agent runtime. Define your coding agent's process in natural language with stages, checks, and approval gates instead of hoping it follows your instructions.
Repo: flora131/atomic
Streamline session-to-session coordination with the intercom extension. Send messages, delegate tasks, and coordinate work across multiple atomic sessions on…
Control Herdr, a terminal multiplexer for coding agents. Use only when the user explicitly mentions Herdr or asks to use Herdr to inspect or control panes,…
Use this skill whenever a task involves a document file (PDF, DOCX, PPTX, XLSX, or image) and you need to read it or pull text, tables, or specific values out…
Automate browser interactions, test web pages and work with Playwright tests.
Code quality checks, formatting, and metrics via qlty CLI. Use when asked to verify code quality, add or run verifiers, lint or format code, measure…
Delegate work to builtin or custom subagents with single-agent, parallel, forked-context, and intercom-coordinated runs. Use for bounded specialist delegation…