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

v1.0.0

À propos de ce Skill

Parfait pour les Agents d'Entretien en Temps Réel ayant besoin de capacités de superposition non intrusives pour détecter automatiquement les questions et générer des points de conversation à son humanisé. 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

Parfait pour les Agents d'Entretien en Temps Réel ayant besoin de capacités de superposition non intrusives pour détecter automatiquement les questions et générer des points de conversation à son humanisé. Notch overlay UI patterns — NSPanel setup, SwiftUI overlay views, screen-sharing hiding, and display adaptation

Pourquoi utiliser cette compétence

Permet aux agents de fournir une assistance en temps réel pendant les réunions avec une superposition non intrusive en utilisant la configuration de NSPanel, empêchant le vol de focus d'autres applications comme Zoom ou Meet, et en utilisant des propriétés critiques de la fenêtre telles que le style `.nonactivatingPanel` et le niveau `.screenSaver`.

Meilleur pour

Parfait pour les Agents d'Entretien en Temps Réel ayant besoin de capacités de superposition non intrusives pour détecter automatiquement les questions et générer des points de conversation à son humanisé.

Cas d'utilisation exploitables for overlay-ui

Détection automatique des questions pendant les réunions
Génération de points de conversation à son humanisé en temps réel
Assistance avec superposition non intrusive pendant les vidéoconférences

! Sécurité et Limitations

  • Nécessite un environnement macOS
  • Nécessite une configuration de NSPanel avec le style `.nonactivatingPanel`
  • Limité aux scénarios d'entretien en temps réel

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?

Parfait pour les Agents d'Entretien en Temps Réel ayant besoin de capacités de superposition non intrusives pour détecter automatiquement les questions et générer des points de conversation à son humanisé. 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: Détection automatique des questions pendant les réunions, Génération de points de conversation à son humanisé en temps réel, Assistance avec superposition non intrusive pendant les vidéoconférences.

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?

Nécessite un environnement macOS. Nécessite une configuration de NSPanel avec le style `.nonactivatingPanel`. Limité aux scénarios d'entretien en temps réel.

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.

Compétences associées

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

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

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

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur