overlay-ui — community overlay-ui, dagabaaz, community, ide skills

v1.0.0

Acerca de este Skill

Perfecto para Agentes de Entrevista en Tiempo Real que necesitan capacidades de superposición no intrusivas para detectar automáticamente preguntas y generar puntos de conversación con sonido humano. Notch overlay UI patterns — NSPanel setup, SwiftUI overlay views, screen-sharing hiding, and display adaptation

mohitmujawdiya mohitmujawdiya
[0]
[0]
Updated: 3/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
30
Canonical Locale
en
Detected Body Locale
en

Perfecto para Agentes de Entrevista en Tiempo Real que necesitan capacidades de superposición no intrusivas para detectar automáticamente preguntas y generar puntos de conversación con sonido humano. Notch overlay UI patterns — NSPanel setup, SwiftUI overlay views, screen-sharing hiding, and display adaptation

¿Por qué usar esta habilidad?

Habilita a los agentes a proporcionar asistencia en tiempo real durante las reuniones con una superposición no intrusiva utilizando la configuración de NSPanel, evitando el robo de enfoque de otras aplicaciones como Zoom o Meet, y utilizando propiedades críticas de la ventana como el estilo `.nonactivatingPanel` y el nivel `.screenSaver`.

Mejor para

Perfecto para Agentes de Entrevista en Tiempo Real que necesitan capacidades de superposición no intrusivas para detectar automáticamente preguntas y generar puntos de conversación con sonido humano.

Casos de uso accionables for overlay-ui

Detección automática de preguntas durante las reuniones
Generación de puntos de conversación con sonido humano en tiempo real
Asistencia con superposición no intrusiva durante las videoconferencias

! Seguridad y limitaciones

  • Requiere entorno de macOS
  • Necesita configuración de NSPanel con estilo `.nonactivatingPanel`
  • Limitado a escenarios de entrevista en tiempo real

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is overlay-ui?

Perfecto para Agentes de Entrevista en Tiempo Real que necesitan capacidades de superposición no intrusivas para detectar automáticamente preguntas y generar puntos de conversación con sonido humano. Notch overlay UI patterns — NSPanel setup, SwiftUI overlay views, screen-sharing hiding, and display adaptation

How do I install overlay-ui?

Run the command: npx killer-skills add mohitmujawdiya/dagabaaz/overlay-ui. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for overlay-ui?

Key use cases include: Detección automática de preguntas durante las reuniones, Generación de puntos de conversación con sonido humano en tiempo real, Asistencia con superposición no intrusiva durante las videoconferencias.

Which IDEs are compatible with overlay-ui?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for overlay-ui?

Requiere entorno de macOS. Necesita configuración de NSPanel con estilo `.nonactivatingPanel`. Limitado a escenarios de entrevista en tiempo real.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add mohitmujawdiya/dagabaaz/overlay-ui. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use overlay-ui immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

overlay-ui

Install overlay-ui, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Notch Overlay UI Patterns

NSPanel Configuration

  1. Use NSPanel with .nonactivatingPanel style. This prevents the overlay from stealing focus from Zoom/Meet. The user can keep typing in their meeting app while the overlay is visible.

  2. Critical window properties:

    swift
    1panel.level = .screenSaver // Above everything, including fullscreen 2panel.sharingType = .none // INVISIBLE to screen sharing 3panel.collectionBehavior = [ 4 .canJoinAllSpaces, // Visible on all desktops 5 .fullScreenAuxiliary, // Visible alongside fullscreen apps 6 .stationary // Doesn't move with Space switching 7] 8panel.isOpaque = false 9panel.backgroundColor = .clear 10panel.hasShadow = false
  3. sharingType = .none is the key feature. This makes the window completely invisible to ScreenCaptureKit-based screen sharing (Zoom, Google Meet, Teams). The interviewer cannot see the overlay.

Positioning

  1. Detect notch vs non-notch displays:

    swift
    1let menuBarHeight = screenFrame.maxY - visibleFrame.maxY 2let hasNotch = menuBarHeight > 24 // Notch displays have taller menu bars
  2. Center horizontally, position below notch/menu bar. The overlay should sit just below where the notch ends, centered on screen.

  3. Handle display changes. Observe NSApplication.didChangeScreenParametersNotification to reposition when:

    • External monitor connected/disconnected
    • Display arrangement changes
    • Screen resolution changes
  4. Guard against duplicate panels. Check panel?.isVisible == true before creating a new one in show().

SwiftUI Overlay View

  1. Use .ultraThinMaterial with dark color scheme for the glassmorphism background. This gives a translucent dark overlay that adapts to the desktop wallpaper.

  2. Use .clipShape(RoundedRectangle(...)) instead of deprecated .cornerRadius(). The cornerRadius modifier is deprecated in recent SwiftUI.

  3. Answer text must scroll. Wrap answer text in ScrollView(.vertical) with a max height. Long answers (detailed mode) will overflow the overlay without this.

  4. Animations on state transitions:

    • Question appearing: .move(edge: .top).combined(with: .opacity)
    • Answer appearing: .opacity
    • Hover state: subtle opacity change (0.85 → 1.0)
    • Keep durations short (0.15-0.2s) — this is a utility UI, not a showcase
  5. Use foregroundStyle instead of deprecated foregroundColor. Modern SwiftUI preference.

  6. Font hierarchy for readability at small sizes:

    • Status bar: 9pt monospaced
    • Question label: 9pt monospaced bold (yellow)
    • Question text: 12pt rounded medium
    • Answer text: 13pt rounded regular
    • Mode indicators: 8pt monospaced
  7. Audio level indicator: 5 bars of increasing height, filled green based on the normalized audio level. Provides visual feedback that the system is hearing audio.

Content Hosting

  1. Set panel.contentView = hostingView directly instead of adding as a subview. This avoids autoresizing mask issues and is the recommended pattern for NSHostingView in NSPanel.

Habilidades relacionadas

Looking for an alternative to overlay-ui or another community skill for your workflow? Explore these related open-source skills.

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador