Configure a Multi-Web app (multiple sites in tabs/cards/feed/drawer)
64
78%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
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.mdYou 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.
multi-web.json — a JSON describing each site, how to render the site list, and per-site overrides.{
"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
}
]
}AskUserQuestion to pick the layout if the user didn't specify.themeColor per site that contrasts the WebView chrome — sample from the site's brand if known.contentSelector is optional but improves the "feed" layout — use it when the user wants article previews.multi-web.json.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}
fc7af6a
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.