Tailprint builder
Curated Agents skills handcrafted by I Nyoman Darma Kotama.
npx -y skills add dkotama/skills --skill tailprint-builderAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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.
What its author says it does
Copied from the file, not written here
Build high-density, professional UI pages using the TailPrint design system — Blueprint aesthetic via Tailwind CSS. Use when the user wants to create ERP, IoT monitoring, accounting, warehouse, or any professional admin interface. Activates on prompts like "build a dashboard with TailPrint", "create a data table page", "ERP-style UI", "Blueprint look without BlueprintJS".
SKILL.md
2.5 KB, 580 tokens by cl100k_base, as published. Nobody here has run it
TailPrint Builder
TailPrint delivers the BlueprintJS visual aesthetic using only Tailwind CSS. No BlueprintJS dependency. Target: professional ERP, IoT monitoring, accounting, and warehouse management interfaces.
Core Aesthetic Rules — Never Break
- Corner radius:
rounded-tp(3px) — neverrounded-lg,rounded-xl,rounded-fullon controls - Control height:
h-[30px]for inputs/selects,h-7for buttons - Data cells: always
font-tp-mono tabular-nums - Nav items:
transition-none— zero animation - Shadows: inset-style (
shadow-tp-input,shadow-tp-button,shadow-tp-card) - Font: IBM Plex Sans for UI, IBM Plex Mono for data
Root Layout
// Holy Grail: sidebar + header + main
<div className="flex h-screen bg-tp-bg font-tp-sans">
<Sidebar />
<div className="flex-1 flex flex-col overflow-hidden">
<TopHeader />
<main className="flex-1 overflow-auto p-4">
{children}
</main>
</div>
</div>
Density Target
25 rows × 8 columns visible at 1080p without scrolling. Achieve via:
h-8table headerspy-1table rows (notpy-3)text-tp-base(13px) in cells, not 16px+
Anti-Patterns
- DON'T use
rounded-lg— breaks Blueprint DNA - DON'T use animation/transition on sidebar nav items
- DON'T use
text-base(16px) for table cells — usetext-tp-base(13px) - DON'T import BlueprintJS — this system is dependency-free
- DON'T use
useClientfor layout components — keep them server-side - DON'T skip
tabular-numson numeric data — columns will misalign
Companion Files
Read these on demand — only when the task requires it:
| Need | File |
|---|---|
| Project setup (Tailwind config, CSS tokens, dark/tenant vars) | skills/tailprint-builder/config/tailwind.md |
| UI component markup (Table, Button, Badge, Card, etc.) | skills/tailprint-builder/recipes/components.md |
| Search input + dropdown filter wiring | skills/tailprint-builder/recipes/search-filter.md |
| Click-to-sort on table columns | skills/tailprint-builder/recipes/sort-table.md |
| ApexCharts CDN integration + chart patterns | skills/tailprint-builder/recipes/apexcharts.md |
Gives 0 of the 12 instructions most css styling skills give in 580 tokens
Counted across 586 of the 596 authors here whose files we hold, read 2026-08-06
- avoid excessive centered layoutsin 55 of 586, across 12 files
- bundle code into single HTML filein 54 of 586, across 14 files
- Respect prefers-reduced-motion user settingsin 52 of 586, across 35 files
- avoid purple gradientsin 51 of 586, across 11 files
- avoid uniform rounded cornersin 51 of 586, across 11 files
- avoid Inter fontin 51 of 586, across 11 files
- edit generated files to develop artifactin 50 of 586, across 10 files
- animate only transform and opacity propertiesin 43 of 586
- Make touch targets at least 44x44 pixelsin 41 of 586, across 15 files
- Ensure minimum color contrast of 4.5:1in 39 of 586, across 10 files
- use tailwind cssin 39 of 586, across 24 files
- Use SVG icons instead of emojisin 38 of 586, across 11 files
Said here and by no other author read
- use rounded-tp for all corner radii
- use 30px heights for inputs
- use h-7 for buttons
- use inset shadow styles
- use IBM Plex Sans for UI text
- use IBM Plex Mono for data
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.