agentsclimarketplace

Tailprint builder

Skill dkotama/skills/skills/tailprint-builder

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".From its SKILL.md

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.

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

What ships with it: 5 files

16.7 KB alongside SKILL.md

config/

Keep looking

Skills are one crate of 325,949. 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.