pwa

Installation
SKILL.md

What I do

  • Build installable web apps
  • Implement offline functionality
  • Create service workers
  • Configure web app manifests
  • Handle background sync

When to use me

When creating web apps that work offline and can be installed.

Service Worker

self.addEventListener('install', e => {
  e.waitUntil(caches.open('v1').then(c => c.addAll(['/'])));
});

self.addEventListener('fetch', e => {
  e.respondWith(caches.match(e.request).then(r => r || fetch(e.request)));
});
Installs
3
GitHub Stars
2
First Seen
May 16, 2026
pwa — ffsshhttiikk/opencode-agents-skills