Our review
This skill guides the creation of high-quality QML interfaces for Quickshell, combining technical expertise with advanced aesthetic design, specifically for the '@quickshell' configuration.
Strengths
- Rigorous use of existing components and theme tokens for native integration.
- Emphasis on strong design directions (brutal minimalism, refined luxury, etc.).
- Support for smooth transitions and animations via Behavior and Easing.
- Clear guidelines to avoid generic AI aesthetics and maintain visual identity.
Limitations
- Specific to Quickshell and the 'Obelisk' configuration; not directly applicable to other frameworks.
- Requires prior knowledge of QML and the Quickshell project.
- Can be restrictive if deviating from the defined thematic palette.
When creating new widgets or interfaces for the Quickshell desktop environment, especially for advanced customization of the 'Obelisk' shell.
For generic UI projects (web, mobile) or environments not based on Quickshell and its components.
Security analysis
SafeThis skill provides design and coding guidance for QML interfaces using local tools. It does not execute any commands, access network resources, or handle sensitive data. No destructive or exfiltration risks are present.
No concerns found
Examples
Create a system monitor widget showing CPU, RAM, and network usage for the Quickshell Obelisk shell. Use the Theme singleton for colors and components like OText and OPanel. Include animated bars with Behavior transitions.Design a unique digital clock widget for Quickshell that displays the date and time with a retro-futuristic aesthetic. Use the Theme.fontFamily and animate the colon blink with QtQuick animations.Build a weather widget for Quickshell that fetches data from a service and displays the current temperature and conditions. Integrate with the existing Services singleton and use IconButton for a refresh button.<!-- markdownlint-disable MD041 -->
name: frontend-design description: Create distinctive, production-grade Quickshell (QML) widgets and interfaces for the user's desktop environment. Specialized for the @quickshell configuration, using existing components, theme tokens, and services. Generates creative, polished code and UI design that avoids generic AI aesthetics. license: Complete terms in LICENSE.txt
Frontend Design Skill
This skill guides the creation of high-quality QML interfaces for Quickshell, specifically tailored to the @quickshell/.config/quickshell/ configuration. It combines technical Quickshell expertise with high-end aesthetic design thinking.
Design Thinking
Before coding, commit to a BOLD aesthetic direction that fits the "Obelisk" shell but pushes it further:
- Tone: Pick a flavor: brutally minimal, retro-futuristic, refined luxury, industrial/utilitarian, or organic.
- Differentiation: What is the one thing that makes this widget UNFORGETTABLE?
- Intentionality: Bold maximalism and refined minimalism both work; the key is executing with precision.
Quickshell Design Principles
- Native Integration: Widgets must look and feel like part of the existing "Obelisk" shell.
- Theming: Rigorously use the
Themesingleton (qs.Config) for all colors, sizes, radii, and fonts. - Reusability: Use existing components from
qs.Components(OText,OButton,IconButton,OPanel) whenever possible. - Reactive: Bind properties to Services (
qs.Services) for live data.
Technical Foundation
Always include necessary imports:
import QtQuick
import QtQuick.Layouts
import Quickshell
import Quickshell.Wayland
import qs.Config // Theme, Settings
import qs.Components // OText, OButton, OPanel, etc.
import qs.Services // Core, SystemInfo, WM
Theming Guidelines (Theme.qml)
- Backgrounds:
Theme.bgColor,Theme.bgElevated,Theme.bgElevatedAlt - Accents:
Theme.activeColor,Theme.onHoverColor,Theme.critical(red),Theme.warning(orange) - Text:
Theme.textActiveColor,Theme.textInactiveColor - Spacing:
Theme.spacingXstoTheme.spacingXl - Radii:
Theme.itemRadius,Theme.radiusMd,Theme.radiusLg
Aesthetics & Polish
- Typography: Stick to
Theme.fontFamily(CaskaydiaCove) andTheme.iconFontFamily. UseOTextvariants for hierarchy. - Motion: Use
Behavior on <property>withTheme.animationDurationandEasing.InOutQuadfor all transitions. Focus on staggered reveals and smooth width/opacity changes. - Visual Details: Create depth. Use
RectangularShadoworMultiEffectfor subtle shadows. UseCanvasfor custom gradient borders (seeCardStyling.qml). - Avoid "AI Slop": No predictable layouts or generic "purple on white" color schemes. Stay true to the project's Catppuccin/Dracula/Obelisk color palettes.
Component Usage
- OText:
OText { text: "Label"; bold: true; muted: true } - IconButton: For circular icon-only buttons.
- OPanel: For dropdowns/menus. Always provide a unique
panelNamespace. - ExpandingPill: Use for collapsible groups of buttons (like PowerMenu or Workspaces).
New Modules
When creating a new widget:
- Place it in
Modules/<Category>/<Name>.qml. - Use
pragma ComponentBehavior: Bound. - Example Pattern:
pragma ComponentBehavior: Bound
import QtQuick
import QtQuick.Layouts
import qs.Config
import qs.Components
Rectangle {
color: Theme.bgElevated
radius: Theme.itemRadius
border.color: Theme.borderLight
border.width: 1
ColumnLayout {
anchors.fill: parent
anchors.margins: Theme.spacingMd
spacing: Theme.spacingSm
OText {
text: "Widget Title"
bold: true
size: "lg"
}
// ... content
}
}
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.