pwa-mobile-optimization-manager

📁 amirrudd/flyerboard 📅 Today
2
总安装量
1
周安装量
#65036
全站排名
安装命令
npx skills add https://github.com/amirrudd/flyerboard --skill pwa-mobile-optimization-manager

Agent 安装分布

kilo 1
amp 1
opencode 1
cursor 1
kimi-cli 1
codex 1

Skill 文档

PWA & Mobile Optimization Manager

This skill helps ensure the “app-like” feel of the web application and optimizes it for mobile operating systems.

Critical Meta Tags

1. Viewport Meta

Ensure users can zoom but the layout remains stable.

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes" />

2. iOS Specifics

<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="FlyerBoard">

PWA Health Check

manifest.json Requirements:

  • short_name and name are set.
  • start_url points to /.
  • display is standalone or minimal-ui.
  • icons include at least 192×192 and 512×512 versions.
  • theme_color and background_color are defined.

Scripts

check-pwa-health.sh

A basic verification script for manifest and meta tags.

Command:

./.agent/skills/pwa-mobile-optimization-manager/scripts/check-pwa-health.sh

Resources