Design
Personal Ai Agent
npx -y skills add br3eze-code/br3eze-code --skill designAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.5 KB, as published. Nobody here has run it
Skill: design
Version: 1.0.0
Domain: creative
Description
Hotspot portal and brand design generation for MikroTik captive portals. Generates login.html, status.html, logout.html, CSS, and JavaScript from brand inputs. Integrates with hotspot_brand.js for fleet deployment.
When to Use
Invoke when the user asks about:
- Creating or redesigning a WiFi login portal
- Customizing colors, logos, and branding for a hotspot
- Generating HTML/CSS for a captive portal page
- Previewing portal designs
Tools
| Action | Description |
|---|---|
generate | Generate full portal bundle (login/status/logout HTML + CSS + JS) |
preview | Return a preview URL or base64 screenshot |
customize | Apply brand colors, logo, and copy to an existing template |
export | Export portal bundle for hotspot_brand deployment |
Example
{
"action": "generate",
"brand": {
"name": "Br3eze WiFi",
"primaryColor": "#00C896",
"logo_url": "https://example.com/logo.png",
"tagline": "Fast. Affordable. Yours.",
"language": "sw"
}
}
Output
Returns a bundle compatible with hotspot_brand.run():
{
"login": "<html>...</html>",
"status": "<html>...</html>",
"logout": "<html>...</html>",
"css": "body { ... }",
"js": "document.ready(..."
}
Notes
- Generated portals are mobile-first (320px min-width)
- Swahili, English, French, and Spanish portal copy supported
- Pass the output directly to
hotspot_brandskill for fleet deployment