in-app-popups

in-app-popups is a skill for Claude Code from matteotitta/genesys-skills. It costs 129 tokens per session (2,104 once invoked), scanned A, original, MIT.

A guide to designing popups, modals, and overlays inside a product or website. It covers when they appear, who sees them, what they say, and how people dismiss them.

In plain words
What is it for?
It helps plan exit-intent, scroll-triggered, time-delayed, and click-triggered popups for actions such as feature discovery, sign-up, or email capture.
Why use it?
It reduces interruptions that frustrate users or obscure the main task. It helps match the message and timing to the user's situation, including on mobile devices.

Skill for Claude Code

Written for Claude Code: context: fork in frontmatter.

Good fit It helps plan exit-intent, scroll-triggered, time-delayed, and click-triggered popups for actions such as feature discovery, sign-up, or email capture.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/matteotitta/genesys-skills/in-app-popups
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add matteotitta/genesys-skills --skill in-app-popups
Clone the repo
git clone --depth 1 https://github.com/matteotitta/genesys-skills

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for in-app-popups

README.md
[![agentmods](https://agentmods.dev/badge/skills/matteotitta/genesys-skills/in-app-popups/github.svg)](https://agentmods.dev/skills/matteotitta/genesys-skills/in-app-popups)
Your own site
<a href="https://agentmods.dev/skills/matteotitta/genesys-skills/in-app-popups"><img src="https://agentmods.dev/badge/skills/matteotitta/genesys-skills/in-app-popups/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for in-app-popups

Your own site · 80×15
<a href="https://agentmods.dev/skills/matteotitta/genesys-skills/in-app-popups"><img src="https://agentmods.dev/badge/skills/matteotitta/genesys-skills/in-app-popups.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 129 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,104 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 185
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00129 $0.02104
Opus 5 $0.00064 $0.01052
Sonnet 5 $0.00026 $0.00421
Haiku 4.5 $0.00013 $0.00210

Measured 9d ago against content hash e8eb97b43950, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

in-app-popups scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/primitives/website/execution/in-app-popups/SKILL.md · 203 lines

How it starts

The opening of the file, as written. The whole thing — 203 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/in-app-popups — overlay design that respects users

Design popups, modals, and overlay elements that convert without burning UX trust. The wrong popup tanks NPS; the right popup is one of the cheapest conversion uplifts available.


Doctrine inherited (Step 7 — 0626 rollout, locked 2026-06-04)

Output complies with:

Refinements applied to this skill:

Code Refinement How it lands in in-app-popups
R1 Source placement Popup copy is end-customer-facing. No sources inline. Design rationale lives in working doc only.
R3 Product-update tone Popup framing — "[Feature] just shipped" not "we are thrilled to announce." Even on launch-driven popups.
R6 CTA hierarchy Warm-base (in-product, post-login) → product-action CTA primary ("open [Feature]"). Cold-base (pre-login, marketing-site) → sign-up primary. Never both as primary.
R9 Action-oriented section names Popup body verb-led — "Open Reporting" beats "Reporting available."

Step 1 — Timing hierarchy

Order triggers by quality (highest engagement signal first):

Trigger Typical conversion Why it works
Exit-intent (mouse heads to close-tab on desktop) 3–10% Captures abandoning visitor; "last chance" frame
Click-triggered (user explicitly clicks "Get the guide" button) 10%+ Highest intent — user opted into the conversation
Scroll-based (fires at 25–50% scroll depth) 2–5% Engagement signal — they're reading
Time-based (after 30–60 sec) 1–3% Weakest — assumes any visitor wants the popup

Sharp rules:

  • Never fire on page load. The user hasn't seen anything yet.
  • Avoid "Show after 5 seconds" — too soon. 30–60 sec minimum if time-based.
  • Click-triggered should be the default for high-value offers (lead magnets, demo asks).

Read the full file on GitHub · 203 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 203 lines · 129 tokens per session scan A e8eb97b43950

Subscribe to this mod's changes

in-app-popups is a skill published in the GitHub repository matteotitta/genesys-skills (36 stars, last pushed 1mo ago), licensed MIT. It adds 129 tokens to every session and 2,104 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

gingiris-b2b-growth

🇺🇸 B2B SaaS Growth — PLG vs SLG Playbook — Diagnose whether your problem is distribution, pricing, or PMF. PLG/SLG selection by ACV and sales cycle, the 5-stage path from $0 to $10M ARR, NRR discipline, affiliate & channel motion, enterprise tiering. Built from HeyGen, Deel, Vercel, Supabase, Snowflake patterns.…

Gingiris-1031/gingiris-skills · 484 tokens

gr-b2b-growth

A guide to growing a business-to-business software product from early user research to large-scale sales. B2B software is sold to companies rather than individual consumers.

Gingiris-1031/gingiris-skills · 83 tokens

go-to-market-playbook

A reusable Go-to-Market strategy template for both B2B and B2C launches. Covers positioning, messaging, ICP definition, channel selection, and competitive analysis frameworks. By @WeiYipei.

Gingiris-1031/gingiris-skills · 48 tokens

ui-ux-gtm

Design GTM UI/UX patterns — landing pages (hero, proof, CTA), forms (progressive disclosure, inline validation), signup flows (activation, time-to-value), dashboards (KPI hierarchy, trend indicators), and accessibility (WCAG 2.2 AA). Use when designing or auditing GTM tool interfaces, landing pages, conversion flows…

LeadMagic/gtm-skills · 96 tokens

design-system-gtm

Define brand-context for AI agents — visual identity systems, voice/tone guides, color palettes with hex/RGB/HSL, typography systems with font stacks and type scales, logo usage rules, asset templates, and brand guardrails. Use when creating a design system for AI-generated GTM content, ensuring brand consistency…

LeadMagic/gtm-skills · 90 tokens

graphic-design-gtm

Create GTM visual assets — social graphics, ad creatives, pitch deck design, one-pager layouts, email images, data visualization, and brand-consistent templates. Use when creating visual content for GTM, designing social media graphics, building ad creatives, or establishing visual identity for campaigns. Triggers on…

LeadMagic/gtm-skills · 115 tokens