Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Web and App implementation guide for Controlled Maximalism. Trigger when user wants lots of elements, dense content, but a highly curated and artistic presentation.
.claude/skills/lingxling-maximalism/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-15 | ✗→✓ | ▲ Improved | 95% | 0% |
| case-05 | ✓→✓ | = Same ✓ | 13% | 0% |
| case-08 | ✓→✓ | = Same ✓ | 17% | 0% |
| case-09 | ✓→✓ | = Same ✓ | 63% | 0% |
| case-12 | ✓→✓ | = Same ✓ | 146% | 0% |
> "Dense and rich, but deeply intentional. Like an exquisitely curated museum of artifacts."
Use this sub-style when the user's request matches the aesthetic described above. This is a child reference of the design-it skill and is not meant to be triggered directly.
Cinzel or Playfair Display) paired with dense, highly legible sans-serif body copy.cssbody { background-color: #0F172A; /* Deep slate */ color: #E2E8F0; background-image: url('subtle-damask-pattern.png'); } .max-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; padding: 16px; } .max-item { background-color: rgba(30, 41, 59, 0.9); /* Semi-transparent over pattern */ border: 1px solid #475569; padding: 24px; } /* Ornate decorative borders */ .max-feature { grid-column: span 3; border: 2px solid #D4AF37; /* Gold */ position: relative; } .max-feature::before { content: ''; position: absolute; top: 4px; left: 4px; right: 4px; bottom: 4px; border: 1px dashed #D4AF37; } .max-title { font-family: 'Cinzel', serif; color: #D4AF37; font-size: 2.5rem; text-align: center; border-bottom: 1px solid #475569; padding-bottom: 16px; margin-bottom: 16px; }
swiftstruct MaximalismView: View { let columns = [ GridItem(.flexible(), spacing: 4), GridItem(.flexible(), spacing: 4), GridItem(.flexible(), spacing: 4) ] var body: some View { ScrollView { LazyVGrid(columns: columns, spacing: 4) { // Feature span MaxItem(title: "MUSEUM", isFeature: true) // Dense data blocks MaxItem(title: "1892") MaxItem(title: "Vol. II") MaxItem(title: "Arch") MaxItem(title: "Index") } .padding(16) } .background(Color(hex: "0F172A")) // Deep slate } } struct MaxItem: View { let title: String var isFeature: Bool = false var body: some View { VStack { Text(title) .font(.custom("Cinzel", size: isFeature ? 28 : 14)) .foregroundColor(Color(hex: "D4AF37")) // Gold .padding() } .frame(maxWidth: .infinity, minHeight: isFeature ? 150 : 80) .background(Color(hex: "1E293B").opacity(0.9)) .border(Color(hex: "475569"), width: 1) .overlay( // Ornate internal dashed border for the feature item Group { if isFeature { Rectangle() .stroke(style: StrokeStyle(lineWidth: 1, dash: [4])) .foregroundColor(Color(hex: "D4AF37")) .padding(4) } } ) } }
LazyVGrid with very tight spacing (e.g., 4) creates the necessary density..border and .overlay(Rectangle().stroke(...)) to box in every piece of data, mimicking ornate framing.dartclass MaximalismScreen extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( backgroundColor: const Color(0xFF0F172A), body: GridView.count( crossAxisCount: 3, padding: const EdgeInsets.all(16), mainAxisSpacing: 4, crossAxisSpacing: 4, children: [ // Flutter's standard GridView doesn't span columns easily. // In a real app, use the `flutter_staggered_grid_view` package. _buildItem('1892'), _buildItem('Vol. II'), _buildItem('Arch'), _buildItem('Index', isOrnate: true), _buildItem('04'), _buildItem('XII'), ], ), ); } Widget _buildItem(String title, {bool isOrnate = false}) { return Container( decoration: BoxDecoration( color: const Color(0xFF1E293B).withOpacity(0.9), border: Border.all(color: const Color(0xFF475569), width: 1), ), child: Stack( children: [ if (isOrnate) Positioned.fill( child: Padding( padding: const EdgeInsets.all(4.0), // Requires path_drawing or custom painter for dashed borders natively child: Container( decoration: BoxDecoration(border: Border.all(color: const Color(0xFFD4AF37), width: 1)), ), ), ), Center( child: Text( title, style: const TextStyle(fontFamily: 'Cinzel', color: Color(0xFFD4AF37), fontSize: 16), ), ), ], ), ); } }
flutter_staggered_grid_view to create the complex, spanning "masonry" or architectural grid layouts typical of maximalism.Stack with Positioned.fill and Padding to create double-bordered framing effects.jsxconst MaximalismScreen = () => { return ( <ScrollView style={{ flex: 1, backgroundColor: '#0F172A' }}> <View style={{ padding: 16, flexDirection: 'row', flexWrap: 'wrap', gap: 4 }}> {/* Feature Item spanning full width */} <View style={[styles.item, styles.featureItem]}> <View style={styles.ornateInnerBorder}> <Text style={[styles.text, { fontSize: 32 }]}>MUSEUM</Text> </View> </View> {/* Small Dense Items */} <View style={[styles.item, { width: '32%' }]}><Text style={styles.text}>1892</Text></View> <View style={[styles.item, { width: '32%' }]}><Text style={styles.text}>Vol. II</Text></View> <View style={[styles.item, { width: '32%' }]}><Text style={styles.text}>Arch</Text></View> </View> </ScrollView> ); }; const styles = StyleSheet.create({ item: { backgroundColor: 'rgba(30, 41, 59, 0.9)', borderColor: '#475569', borderWidth: 1, height: 100, justifyContent: 'center', alignItems: 'center' }, featureItem: { width: '100%', height: 200, padding: 4, }, ornateInnerBorder: { flex: 1, width: '100%', borderColor: '#D4AF37', borderWidth: 1, borderStyle: 'dashed', justifyContent: 'center', alignItems: 'center' }, text: { fontFamily: 'Cinzel-Regular', color: '#D4AF37', fontSize: 16 } });
flexWrap: 'wrap' container with percentage widths (e.g., 32% for 3 columns) is the easiest way to build complex, dense grids in React Native.borderStyle: 'dashed' combined with a solid outer border to create ornate framing.kotlin@Composable fun MaximalismScreen() { LazyVerticalGrid( columns = GridCells.Fixed(3), modifier = Modifier.fillMaxSize().background(Color(0xFF0F172A)).padding(16.dp), horizontalArrangement = Arrangement.spacedBy(4.dp), verticalArrangement = Arrangement.spacedBy(4.dp) ) { // Feature spanning all 3 columns item(span = { GridItemSpan(3) }) { MaxItem("MUSEUM", isFeature = true) } // Dense items items(6) { index -> MaxItem("Item $index") } } } @Composable fun MaxItem(title: String, isFeature: Boolean = false) { Box( modifier = Modifier .height(if (isFeature) 200.dp else 100.dp) .background(Color(0xFF1E293B).copy(alpha = 0.9f)) .border(1.dp, Color(0xFF475569)) .padding(4.dp), contentAlignment = Alignment.Center ) { if (isFeature) { // Ornate inner border Box( modifier = Modifier .fillMaxSize() .border(1.dp, Color(0xFFD4AF37), shape = RoundedCornerShape(0.dp)) // Note: Dashed borders require a custom drawBehind modifier in Compose ) } Text( text = title, color = Color(0xFFD4AF37), fontFamily = FontFamily.Serif, // Replace with custom Cinzel font fontSize = if (isFeature) 32.sp else 16.sp ) } }
LazyVerticalGrid with GridCells.Fixed(3) is perfect.GridItemSpan(3) for the hero elements to make them span the full width, mimicking editorial or museum layouts.| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 37,934 | 59,424 | +57% | 1 | 1 | 0% | 8,252 | 9,951 | +21% | 0 | 0 | — |
case-02 | fail→fail | 24,259 | 25,927 | +7% | 1 | 1 | 0% | 5,014 | 6,975 | +39% | 0 | 0 | — |
case-03 | fail→fail | 52,444 | 31,893 | -39% | 1 | 1 | 0% | 8,242 | 9,273 | +13% | 0 | 0 | — |
case-04 | fail→fail | 32,827 | 41,736 | +27% | 1 | 1 | 0% | 5,254 | 9,353 | +78% | 0 | 0 | — |
case-05 | pass→pass | 36,538 | 37,527 | +3% | 1 | 1 | 0% | 7,803 | 8,823 | +13% | 0 | 0 | — |
case-06 | fail→fail | 17,867 | 11,195 | -37% | 1 | 1 | 0% | 3,106 | 4,355 | +40% | 0 | 0 | — |
case-07 | fail→fail | 19,396 | 13,853 | -29% | 1 | 1 | 0% | 3,041 | 5,228 | +72% | 0 | 0 | — |
case-08 | pass→pass | 18,338 | 6,860 | -63% | 1 | 1 | 0% | 3,486 | 4,080 | +17% | 0 | 0 | — |
case-09 | pass→pass | 18,246 | 14,712 | -19% | 1 | 1 | 0% | 3,436 | 5,589 | +63% | 0 | 0 | — |
case-10 | fail→fail | 26,168 | 15,848 | -39% | 1 | 1 | 0% | 5,415 | 6,089 | +12% | 0 | 0 | — |
case-11 | fail→fail | 15,556 | 16,147 | +4% | 1 | 1 | 0% | 2,925 | 5,225 | +79% | 0 | 0 | — |
case-12 | pass→pass | 11,047 | 15,597 | +41% | 1 | 1 | 0% | 2,160 | 5,321 | +146% | 0 | 0 | — |
case-13 | pass→pass | 23,534 | 17,328 | -26% | 1 | 1 | 0% | 3,083 | 5,914 | +92% | 0 | 0 | — |
case-14 | pass→pass | 11,375 | 14,038 | +23% | 1 | 1 | 0% | 2,233 | 5,906 | +164% | 0 | 0 | — |
case-15 | fail→pass | 18,692 | 15,197 | -19% | 1 | 1 | 0% | 3,007 | 5,864 | +95% | 0 | 0 | — |
case-16 | fail→fail | 23,299 | 13,072 | -44% | 1 | 1 | 0% | 3,415 | 5,528 | +62% | 0 | 0 | — |
case-17 | fail→fail | 19,431 | 15,698 | -19% | 1 | 1 | 0% | 4,216 | 5,867 | +39% | 0 | 0 | — |
case-18 | pass→pass | 18,155 | 17,314 | -5% | 1 | 1 | 0% | 2,587 | 5,777 | +123% | 0 | 0 | — |
case-19 | pass→pass | 20,529 | 20,063 | -2% | 1 | 1 | 0% | 3,705 | 6,315 | +70% | 0 | 0 | — |
case-20 | pass→pass | 33,213 | 24,452 | -26% | 1 | 1 | 0% | 6,888 | 7,903 | +15% | 0 | 0 | — |
case-21 | pass→pass | 35,771 | 26,759 | -25% | 1 | 1 | 0% | 7,499 | 8,299 | +11% | 0 | 0 | — |
case-22 | pass→pass | 32,453 | 27,167 | -16% | 1 | 1 | 0% | 5,203 | 8,118 | +56% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +5 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.