show-me

Ajude o usuário a entender o tópico atual visualmente com diagramas concisos, esboços de formato de código e artefatos HTML focados.

npx skills add https://github.com/humanlayer/skills --skill show-me

Help 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.

  • Show logic or an algorithm as pseudocode:
on(save)
  if content is unchanged
    return cached result
  write new content
  return fresh result
  • Show runtime control flow as a call tree:
submitForm
  createSession
    persistPrompt
    launchAgent
  navigateToSession
  • Show UI structure as a component tree, including state and module boundaries that matter:
<SessionPage> (apps/example/src/routes/session.tsx)
  useSessionEvents()
  <SessionToolbar>
    <RunSkillButton> (packages/ui)
  • Show file responsibility or a broad refactor as a shallow file tree:
src/
├── commands/       # parses user actions
├── sessions/       # owns session state
└── transport/      # sends API requests
  • Show component interaction, control flow, or data flow with Mermaid:
sequenceDiagram
    participant User
    participant UI
    participant Daemon
    User->>UI: choose command
    UI->>Daemon: send expanded prompt
    Daemon-->>UI: stream result
  • Use diff when the point is what changes and the surrounding shape already exists. Match the diff shape to the topic.

For 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
+    subscribeToEvents

For a state or control-flow change:

 on(save)
-  write content
+  if content is unchanged
+    return cached result
+  write new content
+  invalidate cache
  • Show the whole block when most of it is new, when omitted context would hide ownership or order, or when the user needs a copyable target shape:
function expandSkill(command: string): string {
  const skillName = command.slice(1)
  return `use the ${skillName} skill`
}
  • For a visual UI, layout, state comparison, or concept too dense for Mermaid, write one focused HTML file — a diagram, an infographic, or a short slide deck, whichever fits the point. Match the product's colors, type, spacing, and components; use real labels and data; support desktop and mobile. Then open it for the user:
Bash(open path/to/show-me-{description}.html)

guidance

Place 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.

Skills relacionadas

add-cloud-flow
microsoft
Integra fluxos de nuvem do Power Automate em um site do Power Pages. Lista os fluxos disponíveis, sugere os relevantes com base na intenção, identifica cenários e web…
release-audit
nvidia
Gere um relatório de auditoria de release do Warp (pré-release ou RC, detectado automaticamente a partir da string de versão e referência de head).
redux
vercel
Adaptador Redux para a interface StateStore do json-render. Use ao integrar json-render com Redux ou Redux Toolkit para gerenciamento de estado via @json-render/redux.
sentry-span-streaming-js
sentry
Migrar o SDK JavaScript para o streaming de spans do Sentry (ciclo de vida de rastreamento baseado em spans). Use quando for solicitado a "ativar o streaming de spans", "migrar para o streaming de spans", "usar…
competitor-analysis
firecrawl
Comparação estruturada lado a lado de produtos concorrentes. Projetado para busca + raspagem; sem necessidade de interação para páginas típicas de marketing/preços.
verify-dotnet-samples
microsoft
Como compilar, executar e verificar os projetos de exemplo .NET no repositório do Agent Framework. Use isto quando um usuário quiser verificar se os exemplos ainda funcionam…
viral-hooks
vyralcontent
Escreva e critique ganchos virais para vídeos curtos: os 1 a 3 segundos iniciais que decidem se algo mais será visto. Use isto quando precisar de um lote de ideias de gancho para um vídeo, quiser fortalecer uma linha de abertura fraca, estiver escolhendo qual arquétipo de gancho se encaixa em uma ideia, ou quiser uma crítica de um rascunho de gancho com base em padrões comprovados. Abrange o gancho de três camadas (visual, verbal, texto na tela), os frameworks de criadores nomeados (Kallaway, MrBeast, Hormozi, Brunson, Koe, Welsh, Bush, Galloway),...
creativemarketingvideo
examples-auto-run
openai
Execute exemplos Python em modo automático com logging, auxiliares de reexecução e controle em segundo plano.