agentsclimarketplace

Tailprint builder

Skill dkotama/skills/skills/tailprint-builder

Curated Agents skills handcrafted by I Nyoman Darma Kotama.

Install
npx -y skills add dkotama/skills --skill tailprint-builder

Assembled 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) — never rounded-lg, rounded-xl, rounded-full on controls
  • Control height: h-[30px] for inputs/selects, h-7 for 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-8 table headers
  • py-1 table rows (not py-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 — use text-tp-base (13px)
  • DON'T import BlueprintJS — this system is dependency-free
  • DON'T use useClient for layout components — keep them server-side
  • DON'T skip tabular-nums on numeric data — columns will misalign

Companion Files

Read these on demand — only when the task requires it:

NeedFile
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 wiringskills/tailprint-builder/recipes/search-filter.md
Click-to-sort on table columnsskills/tailprint-builder/recipes/sort-table.md
ApexCharts CDN integration + chart patternsskills/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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.