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

v1.0.0

이 스킬 정보

실시간 인터뷰 에이전트가 비침입적 오버레이 기능을 필요로 할 때 완벽합니다. 질문을 자동으로 감지하고 인간 같은 소리를 내는 대화 포인트를 생성하는 데 사용됩니다. 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

실시간 인터뷰 에이전트가 비침입적 오버레이 기능을 필요로 할 때 완벽합니다. 질문을 자동으로 감지하고 인간 같은 소리를 내는 대화 포인트를 생성하는 데 사용됩니다. Notch overlay UI patterns — NSPanel setup, SwiftUI overlay views, screen-sharing hiding, and display adaptation

이 스킬을 사용하는 이유

에이전트가 회의 중에 NSPanel 구성의 비침입적 오버레이를 사용하여 실시간으로 도움을 제공할 수 있도록 합니다. Zoom이나 Meet와 같은 다른 애플리케이션에서焦点을 빼앗는 것을 방지하고 `.nonactivatingPanel` 스타일 및 `.screenSaver` 수준과 같은 중요한 창 속성을 활용합니다.

최적의 용도

실시간 인터뷰 에이전트가 비침입적 오버레이 기능을 필요로 할 때 완벽합니다. 질문을 자동으로 감지하고 인간 같은 소리를 내는 대화 포인트를 생성하는 데 사용됩니다.

실행 가능한 사용 사례 for overlay-ui

회의 중에 질문을 자동으로 감지합니다
실시간으로 인간 같은 소리를 내는 대화 포인트를 생성합니다
비디오 회의 중에 비침입적 오버레이 지원을 제공합니다

! 보안 및 제한 사항

  • macOS 환경이 필요합니다
  • NSPanel 구성의 `.nonactivatingPanel` 스타일이 필요합니다
  • 실시간 인터뷰 시나리오만 해당

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?

실시간 인터뷰 에이전트가 비침입적 오버레이 기능을 필요로 할 때 완벽합니다. 질문을 자동으로 감지하고 인간 같은 소리를 내는 대화 포인트를 생성하는 데 사용됩니다. 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: 회의 중에 질문을 자동으로 감지합니다, 실시간으로 인간 같은 소리를 내는 대화 포인트를 생성합니다, 비디오 회의 중에 비침입적 오버레이 지원을 제공합니다.

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?

macOS 환경이 필요합니다. NSPanel 구성의 `.nonactivatingPanel` 스타일이 필요합니다. 실시간 인터뷰 시나리오만 해당.

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.

관련 스킬

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

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자