Labels.io

Overview

Rebrand the kit and remove the demo scaffolding.

When you are ready to turn the demo into your product, say "make it mine" and your agent follows agent-skills/make-it-yours.md. Here is what that does, in order.

Rename the brand

The name lives in one file: app/lib/brand.ts. Change BRAND, BRAND_TAGLINE, BRAND_DESCRIPTION, and BRAND_EMAIL; they flow to the header, footer, landing, auth screens, and SEO automatically.

Remove the demo callouts

Every "this is mock, wire it with skill X" note is a <StarterNote> component. Delete the usages, then the component:

grep -rln "StarterNote" app/

Replace the demo copy

The landing hero, feature sections, and pricing sell a fictional product. Rewrite them to sell yours; the locale files in app/locales/ hold most of the copy in one place.

Swap the mock data

Everything under app/data/mock/ is throwaway. As you wire each feature, delete the matching mock file and pull real data instead.

The final check is three greps that should all come back empty or intentional:

grep -rn "🔌 INTEGRATION" app/   # remaining seams: your to-do list
grep -rln "StarterNote" app/     # should be empty
grep -rln "LaunchKit" app/       # should be empty once rebranded

On this page