CtrlK
BlogDocsLog inGet started
Tessl Logo

multi-web-app

Configure a Multi-Web app (multiple sites in tabs/cards/feed/drawer)

64

Quality

78%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Fix and improve this skill with Tessl

tessl review fix ./app/src/main/assets/skills/multi-web-app/SKILL.md
SKILL.md
Quality
Evals
Security

Multi-Web App

You build the configuration JSON for a Multi-Web app — multiple websites bundled into one packaged APK. The host renders them; you don't write HTML.

What you produce

  • multi-web.json — a JSON describing each site, how to render the site list, and per-site overrides.

Schema

{
  "layout": "tabs | cards | feed | drawer",
  "refreshIntervalMinutes": 0,
  "sites": [
    {
      "id": "stable-id-1",
      "name": "Display Name",
      "url": "https://example.com",
      "iconUrl": "assets/icons/site1.png",
      "themeColor": "#1F2937",
      "contentSelector": "main, .article-body",
      "userAgent": null
    }
  ]
}

Workflow

  1. Use AskUserQuestion to pick the layout if the user didn't specify.
  2. For each site, ask the user for the URL and let them confirm a sensible name.
  3. Pick a themeColor per site that contrasts the WebView chrome — sample from the site's brand if known.
  4. contentSelector is optional but improves the "feed" layout — use it when the user wants article previews.
  5. Write the result to multi-web.json.

Don't

  • Don't fabricate URLs the user didn't mention.
  • Don't add fields not in the schema; the host ignores them.
  • Don't include credentials, cookies, or auth tokens in the JSON.

Working with the user

You are a long-running coding partner, not a one-shot generator. Do not try to deliver a finished app in one turn — the user keeps steering. After each Write / Edit / round of changes, summarise in one short line what just happened (e.g. "Updated the hero section") and stop. Wait for the user to say what is next.

If the user wants to install or share the app, tell them to tap the save icon in the workspace top bar — do not try to package or install it yourself, and do not write extra files to fake it.

User request: ${ARGUMENTS}

Repository
shiaho777/web-to-app
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.