ShowMe - Outil de Maquettes Visuelles et Annotations

VérifiéPrudence

Créez des maquettes visuelles avec des annotations liées aux coordonnées sur plusieurs pages. Dessinez, annotez et fournissez des retours spécifiques aux composants que Copilot peut voir et traiter. Utile pour donner un retour visuel précis sur les conceptions UI et les mises en page.

Spar Skills Guide Bot
DeveloppementIntermédiaire
6002/06/2026
Claude CodeCursorWindsurfCopilotCodex
#visual-mockup#annotation-tool#ui-feedback#design-review

Recommandé pour

Notre avis

ShowMe permet de créer des maquettes visuelles avec des annotations liées aux coordonnées sur plusieurs pages, que l'agent Copilot peut interpréter et traiter.

Points forts

  • Annotations avec coordonnées précises que l'IA peut interpréter automatiquement.
  • Support de multiples pages pour des maquettes complexes.
  • Sortie JSON structurée facilitant l'intégration avec des agents IA.
  • Plusieurs types d'annotations (pin, zone, flèche, surlignage).

Limites

  • Nécessite l'exécution d'un serveur Bun local.
  • Les images sont sauvegardées dans des fichiers temporaires pouvant être effacés.
  • Fonctionne uniquement avec les environnements supportant les commandes personnalisées.
Quand l'utiliser

Utilisez ShowMe lorsque vous souhaitez donner un retour visuel précis sur un design d'interface utilisateur que votre agent IA doit comprendre et traiter.

Quand l'éviter

Ne l'utilisez pas pour des sessions de collaboration en temps réel ou lorsque les retours sont trop complexes pour de simples annotations (par exemple, des animations ou interactions).

Analyse de sécurité

Prudence
Score qualité85/100

The skill uses a bash command to launch a third-party server and browser. While the intended functionality is legitimate, executing scripts from an untrusted source is inherently risky, especially given no review of the server code.

Points d'attention
  • The skill instructs the agent to execute a bash command (bun run ...) that runs a local server script. This could be exploited if the server code at the specified path is malicious or if an attacker replaces it. The command also opens a browser, which may have security implications.

Exemples

Dashboard mockup
/showme Let's create a 2-page mockup for a dashboard: Page 1 - main metrics, Page 2 - chart settings. I'll annotate each component.
UI bug report
/showme Draw the current login screen and use pin annotations to indicate the color issues on the button.
Feature feedback
/showme I've attached a screenshot of the settings page. Add area annotations around the sections that need reordering.

ShowMe - Visual Mockup & Annotation Tool for Copilot Agents

ShowMe lets you create visual mockups with coordinate-tracked annotations across multiple pages. Draw, annotate, and provide component-specific feedback that Copilot can see and act on.

Instructions for Copilot

When the user invokes /showme, execute this command and wait for the result:

bun run ../ai.apps/ShowMe/server/index.ts

The command will:

  1. Open a browser with a multi-page drawing canvas
  2. Let the user create pages (blank or from images), draw, and add annotations
  3. Output JSON with structured page and annotation data
  4. Images are saved to temp files (paths provided in imagePath field)

Processing the Output

The hook output contains structured JSON with:

{
  "hookSpecificOutput": {
    "decision": { "behavior": "allow" },
    "showme": {
      "pages": [
        {
          "id": "...",
          "name": "Page 1",
          "imagePath": "/tmp/showme-images/page-id.png",
          "width": 1200,
          "height": 800,
          "annotations": [...]
        }
      ],
      "globalNotes": "..."
    }
  }
}

Steps to Process:

  1. Parse the JSON output - Extract the showme object
  2. Read each page image - Use the imagePath field to read the PNG file
  3. Review annotations - Each has coordinates and user feedback
  4. Address globalNotes - Overall context or questions from the user
  5. Acknowledge each annotation - Let the user know you saw their specific feedback

Understanding Annotations

Annotations are coordinate-tracked markers. Each has:

  • number - Display order (1, 2, 3...) - unique across ALL pages
  • type - The kind of marker (see below)
  • bounds - Location on canvas: {x, y, width, height}
  • feedback - User's specific feedback for that component

| Type | What It Means | Bounds Usage | | ----------- | ------------------------------ | ------------------------------- | | pin | Point marker (numbered circle) | x, y = center point | | area | Rectangle selection | x, y, width, height = full rect | | arrow | Directional pointer | bounds covers start-to-end | | highlight | Freehand highlight stroke | bounds covers the stroke area |

Coordinate System: (0, 0) is top-left corner. X increases rightward, Y increases downward.


Example Output Processing

Given this output:

{
  "hookSpecificOutput": {
    "decision": { "behavior": "allow" },
    "showme": {
      "pages": [
        {
          "id": "abc123",
          "name": "Login Screen",
          "imagePath": "/tmp/showme-images/abc123.png",
          "width": 800,
          "height": 600,
          "annotations": [
            {
              "id": "ann1",
              "type": "pin",
              "number": 1,
              "bounds": { "x": 452, "y": 128, "width": 28, "height": 28 },
              "feedback": "This button should be blue, not gray"
            }
          ]
        }
      ],
      "globalNotes": "Please fix the login button styling"
    }
  }
}

You should:

  1. Read the image at /tmp/showme-images/abc123.png
  2. Note that annotation #1 at (452, 128) says "This button should be blue, not gray"
  3. Address the global notes about button styling

User Instructions

Tools (use toolbar buttons)

Drawing: Pen, Rectangle, Circle, Arrow, Text, Eraser

Annotations: Pin, Area, Arrow, Highlight

Page Management

  • Click + to add blank page or import image
  • Click page thumbnail to switch pages
  • Each page has its own annotations and undo history

Zoom & Pan

  • Ctrl + Wheel - Zoom with mouse wheel
  • Space + Drag - Pan canvas
  • Toolbar buttons: Zoom in, Zoom out, Fit, Reset

Keyboard Shortcuts

  • Ctrl+V - Paste screenshot
  • Ctrl+Z - Undo
  • Ctrl+Y - Redo
  • Delete - Remove selected annotation
  • Escape - Deselect / close popover

Workflow

  1. Create pages (blank or from imported images/screenshots)
  2. Draw your mockup using drawing tools
  3. Switch to annotation mode and add markers
  4. Click annotations to add component-specific feedback
  5. Add global notes at the bottom for overall context
  6. Click "Send to Copilot" when done

Built with love by Yaron - No Fluff | YouTube

Skills similaires