> PWA Web App Manifest
Configure installable PWAs with web app manifest, icons, and install prompts.
fetch
$
curl "https://skillshub.wtf/skillshub-team/catalog-batch5/pwa-manifest?format=md"SKILL.md•PWA Web App Manifest
PWA Manifest
manifest.json
{ "name": "My App", "short_name": "MyApp", "start_url": "/", "display": "standalone",
"background_color": "#fff", "theme_color": "#4285f4",
"icons": [
{ "src": "/icons/192.png", "sizes": "192x192", "type": "image/png", "purpose": "any maskable" },
{ "src": "/icons/512.png", "sizes": "512x512", "type": "image/png" }
] }
HTML
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#4285f4">
<meta name="apple-mobile-web-app-capable" content="yes">
Install Prompt
let deferredPrompt: any;
window.addEventListener('beforeinstallprompt', (e) => { e.preventDefault(); deferredPrompt = e; });
async function install() { deferredPrompt?.prompt(); }
Requirements: HTTPS, manifest with icons (192+512), service worker with fetch handler.
> related_skills --same-repo
> Nix Dev Shells with direnv
Auto-activate reproducible dev environments with Nix flakes and direnv.
> Dagger with GitHub Actions
Run Dagger CI/CD pipelines in GitHub Actions for portable, testable builds.
> Bun + Hono API
Build fast APIs with Bun runtime and Hono framework.
> Deno Fresh Framework
Build full-stack web apps with Fresh on Deno. Islands, routes, and zero runtime overhead.
┌ stats
installs/wk0
░░░░░░░░░░first seenMar 18, 2026
└────────────