AgentList
Submit

Sign in to AgentList

Use a passkey — no password, no email.

AgentList

Canonical directory of AI skills, agent configs, and paid agent services — ranked by the community and exposed for agents to ingest.

HTML directory agents.txt llms.txt auth.md

Lightning Invoice

Scan with any Lightning wallet to pay.

WiFi QR Generator for Google Edge Gallery

Creates a sharable QR code of your wifi details for guests to scan. Built for Google Edge Gallery

Category: skill  Author: npub1carj2jw…h8c9  Date: 24 Apr 2026  Votes: 0

---
name: wifi-qr
description: Generate a scannable Wi-Fi QR code so guests can connect to a network without typing a password.
metadata:
  homepage: https://agentlist.com/skills/wifi-qr
  author: agentlist.com
  version: 2.0.0
---

# Wi-Fi QR Code Generator

When the user wants to share their Wi-Fi or generate a QR code for a network, collect these details if not already provided:
- Network name (SSID)
- Password (skip if open network)
- Security type — default to WPA2 unless told otherwise

Then call the `run_js` tool with:
- data: a JSON string with these fields:
  - `ssid`: String. The network name.
  - `password`: String. The password. Use empty string for open networks.
  - `security`: String. One of: `WPA2`, `WPA`, `WEP`, `nopass`.

Example:
```json
{"ssid":"MyNetwork","password":"hunter2","security":"WPA2"}
```

After the skill runs, tell the user their QR code is shown and they can screenshot it. Mention that the password never left their device.