openwolf 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +663 -0
- package/README.md +232 -0
- package/dist/bin/openwolf.js +10 -0
- package/dist/bin/openwolf.js.map +1 -0
- package/dist/dashboard/assets/AISuggestions-DzE-DQkR.js +1 -0
- package/dist/dashboard/assets/ActivityTimeline-DGVjujnt.js +1 -0
- package/dist/dashboard/assets/AnatomyBrowser-S-2rmYtw.js +1 -0
- package/dist/dashboard/assets/BugLog-CG2zDHJc.js +1 -0
- package/dist/dashboard/assets/CerebrumViewer-Dlgoy69U.js +1 -0
- package/dist/dashboard/assets/CronStatus-DxUF1iW_.js +1 -0
- package/dist/dashboard/assets/DesignQC-BGXn_aq8.js +1 -0
- package/dist/dashboard/assets/MemoryViewer-CGqkTyvQ.js +1 -0
- package/dist/dashboard/assets/ProjectOverview-DlFhu69i.js +1 -0
- package/dist/dashboard/assets/TokenUsage-DDsQiVIq.js +68 -0
- package/dist/dashboard/assets/index-CzK9GUjV.css +1 -0
- package/dist/dashboard/assets/index-PYeNGjkN.js +52 -0
- package/dist/dashboard/index.html +16 -0
- package/dist/hooks/post-read.js +68 -0
- package/dist/hooks/post-write.js +502 -0
- package/dist/hooks/pre-read.js +79 -0
- package/dist/hooks/pre-write.js +120 -0
- package/dist/hooks/session-start.js +76 -0
- package/dist/hooks/shared.js +613 -0
- package/dist/hooks/stop.js +146 -0
- package/dist/src/buglog/bug-matcher.js +3 -0
- package/dist/src/buglog/bug-matcher.js.map +1 -0
- package/dist/src/buglog/bug-tracker.js +81 -0
- package/dist/src/buglog/bug-tracker.js.map +1 -0
- package/dist/src/cli/bug-cmd.js +28 -0
- package/dist/src/cli/bug-cmd.js.map +1 -0
- package/dist/src/cli/cron-cmd.js +106 -0
- package/dist/src/cli/cron-cmd.js.map +1 -0
- package/dist/src/cli/daemon-cmd.js +177 -0
- package/dist/src/cli/daemon-cmd.js.map +1 -0
- package/dist/src/cli/dashboard.js +84 -0
- package/dist/src/cli/dashboard.js.map +1 -0
- package/dist/src/cli/designqc-cmd.js +31 -0
- package/dist/src/cli/designqc-cmd.js.map +1 -0
- package/dist/src/cli/index.js +149 -0
- package/dist/src/cli/index.js.map +1 -0
- package/dist/src/cli/init.js +506 -0
- package/dist/src/cli/init.js.map +1 -0
- package/dist/src/cli/registry.js +93 -0
- package/dist/src/cli/registry.js.map +1 -0
- package/dist/src/cli/scan.js +39 -0
- package/dist/src/cli/scan.js.map +1 -0
- package/dist/src/cli/status.js +85 -0
- package/dist/src/cli/status.js.map +1 -0
- package/dist/src/cli/update.js +414 -0
- package/dist/src/cli/update.js.map +1 -0
- package/dist/src/daemon/cron-engine.js +300 -0
- package/dist/src/daemon/cron-engine.js.map +1 -0
- package/dist/src/daemon/file-watcher.js +53 -0
- package/dist/src/daemon/file-watcher.js.map +1 -0
- package/dist/src/daemon/health.js +23 -0
- package/dist/src/daemon/health.js.map +1 -0
- package/dist/src/daemon/wolf-daemon.js +294 -0
- package/dist/src/daemon/wolf-daemon.js.map +1 -0
- package/dist/src/designqc/designqc-capture.js +235 -0
- package/dist/src/designqc/designqc-capture.js.map +1 -0
- package/dist/src/designqc/designqc-engine.js +141 -0
- package/dist/src/designqc/designqc-engine.js.map +1 -0
- package/dist/src/designqc/designqc-types.js +5 -0
- package/dist/src/designqc/designqc-types.js.map +1 -0
- package/dist/src/hooks/post-read.js +69 -0
- package/dist/src/hooks/post-read.js.map +1 -0
- package/dist/src/hooks/post-write.js +503 -0
- package/dist/src/hooks/post-write.js.map +1 -0
- package/dist/src/hooks/pre-read.js +80 -0
- package/dist/src/hooks/pre-read.js.map +1 -0
- package/dist/src/hooks/pre-write.js +121 -0
- package/dist/src/hooks/pre-write.js.map +1 -0
- package/dist/src/hooks/session-start.js +77 -0
- package/dist/src/hooks/session-start.js.map +1 -0
- package/dist/src/hooks/shared.js +614 -0
- package/dist/src/hooks/shared.js.map +1 -0
- package/dist/src/hooks/stop.js +147 -0
- package/dist/src/hooks/stop.js.map +1 -0
- package/dist/src/scanner/anatomy-scanner.js +260 -0
- package/dist/src/scanner/anatomy-scanner.js.map +1 -0
- package/dist/src/scanner/description-extractor.js +1007 -0
- package/dist/src/scanner/description-extractor.js.map +1 -0
- package/dist/src/scanner/project-root.js +42 -0
- package/dist/src/scanner/project-root.js.map +1 -0
- package/dist/src/tracker/token-estimator.js +20 -0
- package/dist/src/tracker/token-estimator.js.map +1 -0
- package/dist/src/tracker/token-ledger.js +45 -0
- package/dist/src/tracker/token-ledger.js.map +1 -0
- package/dist/src/tracker/waste-detector.js +101 -0
- package/dist/src/tracker/waste-detector.js.map +1 -0
- package/dist/src/utils/fs-safe.js +74 -0
- package/dist/src/utils/fs-safe.js.map +1 -0
- package/dist/src/utils/logger.js +48 -0
- package/dist/src/utils/logger.js.map +1 -0
- package/dist/src/utils/paths.js +23 -0
- package/dist/src/utils/paths.js.map +1 -0
- package/dist/src/utils/platform.js +14 -0
- package/dist/src/utils/platform.js.map +1 -0
- package/package.json +77 -0
- package/src/templates/OPENWOLF.md +135 -0
- package/src/templates/anatomy.md +5 -0
- package/src/templates/buglog.json +4 -0
- package/src/templates/cerebrum.md +22 -0
- package/src/templates/claude-md-snippet.md +5 -0
- package/src/templates/claude-rules-openwolf.md +15 -0
- package/src/templates/config.json +73 -0
- package/src/templates/cron-manifest.json +97 -0
- package/src/templates/cron-state.json +7 -0
- package/src/templates/identity.md +9 -0
- package/src/templates/memory.md +4 -0
- package/src/templates/reframe-frameworks.md +597 -0
- package/src/templates/token-ledger.json +21 -0
|
@@ -0,0 +1,597 @@
|
|
|
1
|
+
# OpenWolf Reframe — UI Framework Knowledge Base
|
|
2
|
+
|
|
3
|
+
When the user asks to change, pick, migrate, or "reframe" their UI framework, use this file to guide the conversation and generate the right migration prompt.
|
|
4
|
+
|
|
5
|
+
## Decision Questions
|
|
6
|
+
|
|
7
|
+
Ask these in order. Stop early if the answer narrows to 1-2 frameworks.
|
|
8
|
+
|
|
9
|
+
1. **What framework/library does your project currently use?** (React, Vue, Svelte, plain HTML, etc.)
|
|
10
|
+
2. **What's your priority?** (a) Stunning animations, (b) Fast setup / ship quickly, (c) Full design control, (d) Accessibility-first, (e) Business/enterprise look
|
|
11
|
+
3. **Do you use Tailwind CSS already?** (Yes → most options work. No → Chakra UI or DaisyUI are easier without it)
|
|
12
|
+
4. **Light mode, dark mode, or both?**
|
|
13
|
+
5. **Is this a landing page, a dashboard/app, or both?**
|
|
14
|
+
|
|
15
|
+
## Quick Selection Guide
|
|
16
|
+
|
|
17
|
+
| Priority | Recommended |
|
|
18
|
+
|----------|-------------|
|
|
19
|
+
| Fastest setup | DaisyUI, Preline UI |
|
|
20
|
+
| Stunning animations | Aceternity UI, Magic UI |
|
|
21
|
+
| Maximum control | shadcn/ui, Headless UI |
|
|
22
|
+
| Most free components | Origin UI (400+) |
|
|
23
|
+
| Multi-framework (React + Vue + Svelte) | Park UI, DaisyUI, Flowbite |
|
|
24
|
+
| AI product aesthetic | Cult UI |
|
|
25
|
+
| Polished defaults + accessibility | HeroUI, Chakra UI |
|
|
26
|
+
| Business/enterprise | Flowbite, shadcn/ui |
|
|
27
|
+
|
|
28
|
+
## Comparison Matrix
|
|
29
|
+
|
|
30
|
+
| Framework | Styling | Animation | Setup | Best For | Cost |
|
|
31
|
+
|-----------|---------|-----------|-------|----------|------|
|
|
32
|
+
| shadcn/ui | Tailwind + Radix | Minimal | Medium | Full apps, dashboards | Free |
|
|
33
|
+
| Aceternity UI | Tailwind + Framer Motion | Heavy, cinematic | Easy (copy-paste) | Animated landing pages | Free / Pro |
|
|
34
|
+
| Magic UI | Tailwind + Motion | Purposeful, polished | Easy (shadcn CLI) | SaaS marketing | Free / Pro |
|
|
35
|
+
| DaisyUI | Tailwind plugin | CSS transitions | Very easy | Rapid prototyping | Free |
|
|
36
|
+
| HeroUI | Tailwind + React Aria | Smooth built-in | Easy | React apps, accessible | Free |
|
|
37
|
+
| Chakra UI | CSS-in-JS (Emotion) | Built-in transitions | Easy | Themed React apps | Free |
|
|
38
|
+
| Flowbite | Tailwind plugin | CSS transitions | Very easy | Multi-framework, business | Free / Pro |
|
|
39
|
+
| Preline UI | Tailwind plugin | CSS + minimal JS | Very easy | Speed-focused builds | Free / Pro |
|
|
40
|
+
| Park UI | Tailwind + Ark UI | Minimal | Medium | Multi-framework, design systems | Free |
|
|
41
|
+
| Origin UI | Tailwind + shadcn | Minimal | Easy (copy-paste) | Max component variety | Free |
|
|
42
|
+
| Headless UI | Custom Tailwind | Custom (Transition) | Medium-Hard | Full design control | Free |
|
|
43
|
+
| Cult UI | Tailwind + shadcn | Modern, subtle | Medium | AI apps, full-stack | Free |
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Framework Prompts
|
|
48
|
+
|
|
49
|
+
After the user selects a framework, use the corresponding prompt below. **Adapt it to the user's actual project** — replace generic references with their real file structure, existing routes, and components from `.wolf/anatomy.md`.
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
### shadcn/ui
|
|
54
|
+
|
|
55
|
+
**Stack:** React, Tailwind CSS, Radix UI
|
|
56
|
+
**Install:** `npx shadcn@latest init`
|
|
57
|
+
**Site:** ui.shadcn.com
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
Build a modern, minimalist landing page using Next.js 14+ (App Router), TypeScript, Tailwind CSS, and shadcn/ui components.
|
|
61
|
+
|
|
62
|
+
ARCHITECTURE:
|
|
63
|
+
- Use Next.js App Router with server components by default, client components only when interactivity is needed
|
|
64
|
+
- Organize: /app for routes, /components/ui for shadcn primitives, /components/sections for page sections, /lib for utilities
|
|
65
|
+
- Use CSS variables for theming via shadcn's built-in system
|
|
66
|
+
|
|
67
|
+
DESIGN PRINCIPLES:
|
|
68
|
+
- Minimalist with generous whitespace (py-24 to py-32 section spacing)
|
|
69
|
+
- Max-width container (max-w-6xl mx-auto) with responsive padding
|
|
70
|
+
- Typography hierarchy: text-5xl/6xl hero → text-3xl section titles → text-lg body
|
|
71
|
+
- Muted color palette with ONE bold accent color for CTAs
|
|
72
|
+
- Subtle micro-interactions on hover (scale, opacity transitions)
|
|
73
|
+
- Dark mode support via shadcn's theme provider
|
|
74
|
+
|
|
75
|
+
SECTIONS TO BUILD:
|
|
76
|
+
1. Navbar — sticky, transparent-to-solid on scroll, logo left, nav center, CTA button right
|
|
77
|
+
2. Hero — large headline (max 8 words), subtext (max 2 lines), primary CTA button + secondary ghost button, optional hero image or abstract illustration
|
|
78
|
+
3. Social proof — logo cloud of 5-6 partner/client logos in grayscale
|
|
79
|
+
4. Features — 3-column bento grid with icon, title, description per card using shadcn Card component
|
|
80
|
+
5. How it works — 3-step numbered process with connecting line
|
|
81
|
+
6. Testimonials — carousel or grid of 3 testimonial cards with avatar, quote, name, role
|
|
82
|
+
7. Pricing — 3-tier pricing table using shadcn Card, highlight the recommended plan with ring/border accent
|
|
83
|
+
8. FAQ — accordion using shadcn Accordion component
|
|
84
|
+
9. CTA — full-width section with headline, subtext, and primary action button
|
|
85
|
+
10. Footer — 4-column grid (brand, product links, company links, legal), copyright at bottom
|
|
86
|
+
|
|
87
|
+
COMPONENT USAGE:
|
|
88
|
+
- Button (primary, secondary, ghost, outline variants)
|
|
89
|
+
- Card, CardHeader, CardContent, CardFooter
|
|
90
|
+
- Accordion, AccordionItem, AccordionTrigger, AccordionContent
|
|
91
|
+
- Badge for labels/tags
|
|
92
|
+
- Separator for dividers
|
|
93
|
+
- NavigationMenu for navbar
|
|
94
|
+
|
|
95
|
+
CODE QUALITY:
|
|
96
|
+
- Fully responsive (mobile-first)
|
|
97
|
+
- Semantic HTML (section, nav, main, footer)
|
|
98
|
+
- Accessible (proper aria labels, keyboard navigation)
|
|
99
|
+
- Performant (lazy load images, optimize fonts via next/font)
|
|
100
|
+
- Clean component separation (each section is its own component)
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
### Aceternity UI
|
|
106
|
+
|
|
107
|
+
**Stack:** React, Next.js, Tailwind CSS, Framer Motion
|
|
108
|
+
**Install:** Copy-paste or `npx shadcn@latest add [component]`
|
|
109
|
+
**Site:** ui.aceternity.com
|
|
110
|
+
|
|
111
|
+
```
|
|
112
|
+
Build a visually stunning, animation-rich landing page using Next.js 14+, TypeScript, Tailwind CSS, and Aceternity UI components with Framer Motion.
|
|
113
|
+
|
|
114
|
+
ARCHITECTURE:
|
|
115
|
+
- Next.js App Router with client components for animated sections
|
|
116
|
+
- Organize: /app, /components/aceternity (copied components), /components/sections, /lib
|
|
117
|
+
- Install Framer Motion for animation engine
|
|
118
|
+
|
|
119
|
+
DESIGN PRINCIPLES:
|
|
120
|
+
- Dark theme as primary (bg-black/bg-slate-950 backgrounds)
|
|
121
|
+
- Dramatic contrast with glowing accents (cyan, purple, or emerald)
|
|
122
|
+
- Layered depth via gradients, glows, and glassmorphism
|
|
123
|
+
- Cinematic scroll-triggered animations with staggered reveals
|
|
124
|
+
- Generous padding (py-32+), large typography (text-6xl/7xl hero)
|
|
125
|
+
- Noise/grain texture overlays for visual richness
|
|
126
|
+
|
|
127
|
+
SECTIONS TO BUILD WITH ACETERNITY COMPONENTS:
|
|
128
|
+
1. Navbar — floating navbar with backdrop blur, animated on scroll
|
|
129
|
+
2. Hero — use Aceternity's "Spotlight" or "Lamp" effect as background, massive headline with TextGenerateEffect or TypewriterEffect, gradient text on key words, two CTAs with HoverBorderGradient buttons
|
|
130
|
+
3. Logo cloud — use InfiniteMovingCards for auto-scrolling partner logos
|
|
131
|
+
4. Features — BentoGrid layout with animated cards, each card has BackgroundGradient or CardSpotlight hover effect
|
|
132
|
+
5. Product showcase — use Aceternity's 3DCard or ParallaxScroll for product screenshots/mockups
|
|
133
|
+
6. Testimonials — AnimatedTestimonials or InfiniteMovingCards with quote, avatar, name
|
|
134
|
+
7. How it works — use TracingBeam component for a connected step-by-step flow
|
|
135
|
+
8. Pricing — dark cards with GlowingStarsBackground, highlighted tier has animated border (MovingBorder)
|
|
136
|
+
9. CTA — full-width with BackgroundBeams or Meteors effect behind headline and button
|
|
137
|
+
10. Footer — clean 4-column layout with subtle separator
|
|
138
|
+
|
|
139
|
+
ANIMATION GUIDELINES:
|
|
140
|
+
- Page load: stagger hero elements (title → subtitle → buttons) with 0.15s delay each
|
|
141
|
+
- Scroll: use Framer Motion's whileInView for reveal animations (fade up + slight scale)
|
|
142
|
+
- Hover: cards lift (translateY -4px) with glow intensification
|
|
143
|
+
- Keep animations performant (use transform/opacity only, will-change where needed)
|
|
144
|
+
- Respect prefers-reduced-motion
|
|
145
|
+
|
|
146
|
+
CODE QUALITY:
|
|
147
|
+
- Mobile-first responsive design
|
|
148
|
+
- Lazy load heavy animation components
|
|
149
|
+
- Each section is a standalone component file
|
|
150
|
+
- Accessible despite heavy animation (aria labels, focus states)
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
### Magic UI
|
|
156
|
+
|
|
157
|
+
**Stack:** React, TypeScript, Tailwind CSS, Motion (Framer Motion)
|
|
158
|
+
**Install:** `npx shadcn@latest add [component]` (shadcn CLI compatible)
|
|
159
|
+
**Site:** magicui.design
|
|
160
|
+
|
|
161
|
+
```
|
|
162
|
+
Build a polished, trend-forward SaaS landing page using Next.js 14+, TypeScript, Tailwind CSS, and Magic UI animated components.
|
|
163
|
+
|
|
164
|
+
ARCHITECTURE:
|
|
165
|
+
- Next.js App Router, server components where possible
|
|
166
|
+
- Magic UI components installed via shadcn CLI into /components/magicui
|
|
167
|
+
- Section components in /components/sections
|
|
168
|
+
- Shared config in /lib (cn utility, site config)
|
|
169
|
+
|
|
170
|
+
DESIGN PRINCIPLES:
|
|
171
|
+
- Clean and modern, inspired by Linear/Vercel aesthetic
|
|
172
|
+
- Light or dark mode with smooth toggle transition
|
|
173
|
+
- Restrained animation — purposeful motion that guides attention, not distracts
|
|
174
|
+
- High contrast text, muted backgrounds (slate-50 light / slate-950 dark)
|
|
175
|
+
- Monospace or geometric sans-serif for headings, clean sans for body
|
|
176
|
+
- ONE signature color (blue-500, violet-500, or emerald-500) for accents
|
|
177
|
+
|
|
178
|
+
SECTIONS TO BUILD WITH MAGIC UI COMPONENTS:
|
|
179
|
+
1. Navbar — clean horizontal nav, use MagicUI ShimmerButton for primary CTA
|
|
180
|
+
2. Hero — large headline with AnimatedGradientText on key phrase, NumberTicker for a live stat ("10,000+ users"), DotPattern or GridPattern as subtle background, two buttons (ShimmerButton primary + outline secondary)
|
|
181
|
+
3. Social proof — Marquee component for auto-scrolling logos horizontally
|
|
182
|
+
4. Features — use MagicCard components in a 3-column grid, each with icon + title + description, subtle hover glow effect
|
|
183
|
+
5. Bento showcase — BentoGrid layout showing product capabilities, mix of large and small tiles with different content types (text, mini-demos, stats)
|
|
184
|
+
6. Metrics — AnimatedList showing live activity feed OR NumberTicker showing key stats (users, uptime, speed)
|
|
185
|
+
7. Testimonials — Marquee of testimonial cards (vertical or horizontal scroll)
|
|
186
|
+
8. Pricing — 3 tiers with clean card design, NeonGradientCard for featured plan, BorderBeam on hover
|
|
187
|
+
9. CTA — centered layout with AnimatedShinyText headline, Particles or Meteors background effect
|
|
188
|
+
10. Footer — minimal 3-4 column grid, muted text, social icons
|
|
189
|
+
|
|
190
|
+
ANIMATION STRATEGY:
|
|
191
|
+
- Use BlurIn / FadeIn for section entrance animations
|
|
192
|
+
- NumberTicker for any statistics or metrics
|
|
193
|
+
- Marquee for any horizontally scrolling content
|
|
194
|
+
- Keep transitions under 600ms, use ease-out curves
|
|
195
|
+
- Mobile: reduce or disable particle/meteor effects for performance
|
|
196
|
+
|
|
197
|
+
CODE QUALITY:
|
|
198
|
+
- Fully responsive with mobile breakpoints
|
|
199
|
+
- Semantic HTML throughout
|
|
200
|
+
- next/font for optimized typography
|
|
201
|
+
- Image optimization via next/image
|
|
202
|
+
- Component-per-section architecture
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
---
|
|
206
|
+
|
|
207
|
+
### DaisyUI
|
|
208
|
+
|
|
209
|
+
**Stack:** Tailwind CSS plugin (framework-agnostic)
|
|
210
|
+
**Install:** `npm i -D daisyui` + add to tailwind.config
|
|
211
|
+
**Site:** daisyui.com
|
|
212
|
+
|
|
213
|
+
```
|
|
214
|
+
Build a clean, professional landing page using Tailwind CSS and DaisyUI component classes.
|
|
215
|
+
|
|
216
|
+
ARCHITECTURE:
|
|
217
|
+
- Framework of choice with Tailwind CSS + DaisyUI plugin
|
|
218
|
+
- Use DaisyUI's semantic class system (btn, card, hero, navbar, etc.)
|
|
219
|
+
- Select a DaisyUI theme (or create custom) in tailwind.config.js
|
|
220
|
+
- Organize by sections in /components/sections
|
|
221
|
+
|
|
222
|
+
DESIGN PRINCIPLES:
|
|
223
|
+
- Pick ONE DaisyUI theme as base (e.g., "winter" for clean light, "night" for dark, "corporate" for professional)
|
|
224
|
+
- Customize theme colors in tailwind.config to match brand
|
|
225
|
+
- Minimalist layout with clean spacing (p-8 to p-16 sections)
|
|
226
|
+
- Let DaisyUI's built-in design system handle consistency
|
|
227
|
+
- Typography via DaisyUI's prose class for content sections
|
|
228
|
+
|
|
229
|
+
SECTIONS TO BUILD WITH DAISYUI CLASSES:
|
|
230
|
+
1. Navbar — "navbar" component with "dropdown" for mobile menu, "btn btn-primary" for CTA
|
|
231
|
+
2. Hero — "hero" component with "hero-content", large headline, subtext, "btn btn-primary" + "btn btn-ghost"
|
|
232
|
+
3. Social proof — logo row using "flex" with "opacity-50 grayscale" on images
|
|
233
|
+
4. Features — "card" components in a responsive grid, each with "card-body", uses "bg-base-200" for contrast
|
|
234
|
+
5. Stats — "stats" component with "stat" items showing key metrics
|
|
235
|
+
6. Steps — "steps" component (horizontal on desktop, vertical on mobile)
|
|
236
|
+
7. Testimonials — "chat" component styled as testimonials OR "card" grid with "avatar"
|
|
237
|
+
8. Pricing — "card" components with "badge badge-primary" for recommended plan
|
|
238
|
+
9. FAQ — "collapse" or "collapse-plus" components for expandable Q&A
|
|
239
|
+
10. Footer — "footer" component with 3-4 columns, "footer-title" for headings
|
|
240
|
+
|
|
241
|
+
CODE QUALITY:
|
|
242
|
+
- Fully responsive using Tailwind breakpoints
|
|
243
|
+
- Zero custom CSS needed (DaisyUI handles it)
|
|
244
|
+
- Accessible by default (DaisyUI follows ARIA patterns)
|
|
245
|
+
- Fast load times (CSS-only, no JS shipped)
|
|
246
|
+
- Works with any framework or plain HTML
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
---
|
|
250
|
+
|
|
251
|
+
### HeroUI (formerly NextUI)
|
|
252
|
+
|
|
253
|
+
**Stack:** React, Tailwind CSS, React Aria
|
|
254
|
+
**Install:** `npm i @heroui/react`
|
|
255
|
+
**Site:** heroui.com
|
|
256
|
+
|
|
257
|
+
```
|
|
258
|
+
Build an elegant, accessible landing page using Next.js 14+, TypeScript, Tailwind CSS, and HeroUI components.
|
|
259
|
+
|
|
260
|
+
ARCHITECTURE:
|
|
261
|
+
- Next.js App Router with HeroUI Provider wrapping the app
|
|
262
|
+
- Import only needed components from @heroui/react (tree-shakeable)
|
|
263
|
+
- Organize: /app, /components/sections, /lib
|
|
264
|
+
- Use HeroUI's built-in theme system for consistent styling
|
|
265
|
+
|
|
266
|
+
DESIGN PRINCIPLES:
|
|
267
|
+
- Soft, modern aesthetic with rounded corners and smooth surfaces
|
|
268
|
+
- Light mode primary with dark mode support via HeroUI's theme toggle
|
|
269
|
+
- Subtle shadows and blur effects (HeroUI's built-in elevation system)
|
|
270
|
+
- Clean sans-serif typography, generous line heights
|
|
271
|
+
- Smooth transitions on all interactive elements (HeroUI provides these by default)
|
|
272
|
+
|
|
273
|
+
SECTIONS TO BUILD WITH HEROUI COMPONENTS:
|
|
274
|
+
1. Navbar — HeroUI Navbar with NavbarBrand, NavbarContent, NavbarItem, NavbarMenuToggle for mobile
|
|
275
|
+
2. Hero — large headline, descriptive subtext, Button (color="primary" size="lg") + Button (variant="bordered")
|
|
276
|
+
3. Social proof — Avatar group for client logos or Chip components for trust badges
|
|
277
|
+
4. Features — Card components in grid, each with CardHeader, CardBody, use Divider between sections
|
|
278
|
+
5. Product demo — Tabs component to show different product views/features interactively
|
|
279
|
+
6. Testimonials — Card grid with User component (avatar + name + role) inside each card
|
|
280
|
+
7. Pricing — Card components with Chip for "Popular" badge, Listbox for feature lists
|
|
281
|
+
8. FAQ — Accordion component with AccordionItem for each question
|
|
282
|
+
9. CTA — centered section with Input + Button combo for email capture
|
|
283
|
+
10. Footer — clean grid with Link components, Divider above copyright
|
|
284
|
+
|
|
285
|
+
CODE QUALITY:
|
|
286
|
+
- Fully responsive with HeroUI's responsive props
|
|
287
|
+
- Accessible by default (React Aria foundation)
|
|
288
|
+
- Server-side rendering compatible
|
|
289
|
+
- Optimized bundle (import individual components)
|
|
290
|
+
- TypeScript strict mode
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
---
|
|
294
|
+
|
|
295
|
+
### Chakra UI
|
|
296
|
+
|
|
297
|
+
**Stack:** React, Emotion (CSS-in-JS)
|
|
298
|
+
**Install:** `npm i @chakra-ui/react`
|
|
299
|
+
**Site:** chakra-ui.com
|
|
300
|
+
|
|
301
|
+
```
|
|
302
|
+
Build a clean, accessible landing page using Next.js 14+, TypeScript, and Chakra UI v3.
|
|
303
|
+
|
|
304
|
+
ARCHITECTURE:
|
|
305
|
+
- Next.js App Router with ChakraProvider at root
|
|
306
|
+
- Use Chakra's design tokens and theme extension for brand customization
|
|
307
|
+
- Organize: /app, /components/sections, /theme (custom theme config)
|
|
308
|
+
|
|
309
|
+
DESIGN PRINCIPLES:
|
|
310
|
+
- Clean and warm aesthetic using Chakra's polished defaults
|
|
311
|
+
- Consistent spacing using Chakra's space scale (4, 8, 12, 16, 20, 24)
|
|
312
|
+
- Typography: use Chakra's Heading and Text components
|
|
313
|
+
- Color mode support (light/dark) via useColorMode hook
|
|
314
|
+
- Accessible-first: every component follows WAI-ARIA by default
|
|
315
|
+
|
|
316
|
+
SECTIONS TO BUILD WITH CHAKRA COMPONENTS:
|
|
317
|
+
1. Navbar — Flex with HStack, IconButton for mobile menu, Button for CTA
|
|
318
|
+
2. Hero — VStack centered, Heading size="4xl", Text, HStack with two Buttons
|
|
319
|
+
3. Social proof — HStack/Wrap of grayscale Image components
|
|
320
|
+
4. Features — SimpleGrid columns={{base:1, md:3}} of VStack cards with Icon, Heading, Text
|
|
321
|
+
5. Stats — Stat component group with StatLabel, StatNumber, StatHelpText
|
|
322
|
+
6. Testimonials — SimpleGrid of Card with Avatar, Text (quote), Heading (name)
|
|
323
|
+
7. Pricing — SimpleGrid of Card, Badge for "Popular", List for features
|
|
324
|
+
8. FAQ — Accordion with AccordionItem, AccordionButton, AccordionPanel
|
|
325
|
+
9. CTA — Box with bg gradient, VStack centered, Heading, Text, Button
|
|
326
|
+
10. Footer — SimpleGrid columns={{base:2, md:4}} with VStack, Heading, Link
|
|
327
|
+
|
|
328
|
+
THEME EXTENSION:
|
|
329
|
+
const theme = extendTheme({
|
|
330
|
+
colors: { brand: { 50: '...', 500: '...', 900: '...' } },
|
|
331
|
+
fonts: { heading: 'Your Font', body: 'Your Font' },
|
|
332
|
+
components: { Button: { defaultProps: { colorScheme: 'brand' } } }
|
|
333
|
+
})
|
|
334
|
+
|
|
335
|
+
CODE QUALITY:
|
|
336
|
+
- Fully responsive using Chakra's responsive array/object syntax
|
|
337
|
+
- Dark mode ready with useColorModeValue
|
|
338
|
+
- Accessible by default
|
|
339
|
+
- TypeScript throughout with proper prop types
|
|
340
|
+
```
|
|
341
|
+
|
|
342
|
+
---
|
|
343
|
+
|
|
344
|
+
### Flowbite
|
|
345
|
+
|
|
346
|
+
**Stack:** Tailwind CSS (React, Vue, Svelte, Angular)
|
|
347
|
+
**Install:** `npm i flowbite flowbite-react`
|
|
348
|
+
**Site:** flowbite.com
|
|
349
|
+
|
|
350
|
+
```
|
|
351
|
+
Build a professional, conversion-optimized landing page using Next.js 14+, Tailwind CSS, and Flowbite React components.
|
|
352
|
+
|
|
353
|
+
ARCHITECTURE:
|
|
354
|
+
- Next.js App Router with Flowbite React components
|
|
355
|
+
- Import from flowbite-react (Button, Card, Navbar, Footer, etc.)
|
|
356
|
+
- Flowbite Tailwind plugin in tailwind.config for interactive styles
|
|
357
|
+
|
|
358
|
+
DESIGN PRINCIPLES:
|
|
359
|
+
- Business-professional aesthetic (clean, trustworthy, conversion-focused)
|
|
360
|
+
- Cool neutral palette (slate/gray) with strong brand accent
|
|
361
|
+
- Focus on readability and clear information hierarchy
|
|
362
|
+
|
|
363
|
+
SECTIONS TO BUILD WITH FLOWBITE COMPONENTS:
|
|
364
|
+
1. Navbar — Flowbite Navbar with Navbar.Brand, Navbar.Toggle, Navbar.Collapse
|
|
365
|
+
2. Hero — Jumbotron-style, large Heading, Button group
|
|
366
|
+
3. Social proof — row of client logos
|
|
367
|
+
4. Features — Card components in responsive grid with icon badge, title, description
|
|
368
|
+
5. Content — alternating image + text rows
|
|
369
|
+
6. Testimonials — Blockquote or Card with Rating component for stars
|
|
370
|
+
7. Pricing — Card with List for features, Badge for highlighted plan
|
|
371
|
+
8. FAQ — Accordion component
|
|
372
|
+
9. Newsletter CTA — TextInput + Button in a styled Banner
|
|
373
|
+
10. Footer — Flowbite Footer with Footer.LinkGroup, Footer.Brand, Footer.Copyright
|
|
374
|
+
|
|
375
|
+
CODE QUALITY:
|
|
376
|
+
- Fully responsive (components are responsive by default)
|
|
377
|
+
- Accessible (follows WAI-ARIA)
|
|
378
|
+
- Works server-side with Next.js
|
|
379
|
+
- Production-ready component patterns
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
---
|
|
383
|
+
|
|
384
|
+
### Preline UI
|
|
385
|
+
|
|
386
|
+
**Stack:** Tailwind CSS (HTML-first, React/Vue plugins)
|
|
387
|
+
**Install:** `npm i preline` + add plugin to tailwind.config
|
|
388
|
+
**Site:** preline.co
|
|
389
|
+
|
|
390
|
+
```
|
|
391
|
+
Build a sleek, modern landing page using Next.js 14+, Tailwind CSS, and Preline UI components.
|
|
392
|
+
|
|
393
|
+
ARCHITECTURE:
|
|
394
|
+
- Next.js App Router with Preline's Tailwind plugin
|
|
395
|
+
- Use Preline's HTML component patterns (class-based, minimal JS)
|
|
396
|
+
- Import preline JS for interactive components (dropdowns, modals, accordions)
|
|
397
|
+
|
|
398
|
+
DESIGN PRINCIPLES:
|
|
399
|
+
- Modern SaaS aesthetic (clean lines, airy spacing, professional)
|
|
400
|
+
- Neutral base (white/slate) with vibrant accent for CTAs
|
|
401
|
+
- Large section padding (py-16 to py-24)
|
|
402
|
+
|
|
403
|
+
SECTIONS TO BUILD WITH PRELINE PATTERNS:
|
|
404
|
+
1. Navbar — header component with mega menu support, sticky on scroll
|
|
405
|
+
2. Hero — centered or split layout, large headline with gradient text, two CTA buttons
|
|
406
|
+
3. Social proof — logo ticker or static row with grayscale filter
|
|
407
|
+
4. Features — icon + text cards in 3-column grid
|
|
408
|
+
5. Tabs showcase — tab component showing different product features per tab
|
|
409
|
+
6. Testimonials — grid or slider of testimonial cards
|
|
410
|
+
7. Pricing — pricing table pattern with toggle for monthly/annual
|
|
411
|
+
8. Stats — counter section with large numbers + labels
|
|
412
|
+
9. FAQ — accordion component with smooth expand/collapse
|
|
413
|
+
10. CTA + Footer — email input + button CTA above multi-column footer
|
|
414
|
+
|
|
415
|
+
CODE QUALITY:
|
|
416
|
+
- Fully responsive with Tailwind breakpoints
|
|
417
|
+
- Accessible (follows ARIA standards)
|
|
418
|
+
- Lightweight (CSS + minimal JS)
|
|
419
|
+
- Works with any framework via HTML classes
|
|
420
|
+
```
|
|
421
|
+
|
|
422
|
+
---
|
|
423
|
+
|
|
424
|
+
### Park UI
|
|
425
|
+
|
|
426
|
+
**Stack:** React/Vue/Solid, Ark UI (headless), Tailwind CSS
|
|
427
|
+
**Install:** Copy-paste components (shadcn-style)
|
|
428
|
+
**Site:** park-ui.com
|
|
429
|
+
|
|
430
|
+
```
|
|
431
|
+
Build a refined, design-system-driven landing page using Next.js 14+, TypeScript, Tailwind CSS, and Park UI components.
|
|
432
|
+
|
|
433
|
+
ARCHITECTURE:
|
|
434
|
+
- Next.js App Router with Park UI components (Ark UI + Tailwind CSS)
|
|
435
|
+
- Copy-paste component installation (like shadcn)
|
|
436
|
+
- Organize: /app, /components/ui (Park UI primitives), /components/sections
|
|
437
|
+
|
|
438
|
+
DESIGN PRINCIPLES:
|
|
439
|
+
- Polished and systematic (design-system quality)
|
|
440
|
+
- Neutral, sophisticated palette with deliberate accent usage
|
|
441
|
+
- Consistent spacing and sizing via Park UI's token scale
|
|
442
|
+
- Light/dark mode via Park UI's built-in theme tokens
|
|
443
|
+
|
|
444
|
+
SECTIONS TO BUILD WITH PARK UI COMPONENTS:
|
|
445
|
+
1. Navbar — navigation components, clean horizontal layout, mobile drawer
|
|
446
|
+
2. Hero — Heading + Text with proper token sizing, Button pair (solid + outline)
|
|
447
|
+
3. Social proof — subtle logo row with muted styling
|
|
448
|
+
4. Features — Card components in grid with Icon, Heading, Text
|
|
449
|
+
5. Tabs showcase — Tabs component for interactive product feature display
|
|
450
|
+
6. Testimonials — Card-based layout with Avatar + quote
|
|
451
|
+
7. Pricing — Card grid with Badge for recommended tier
|
|
452
|
+
8. FAQ — Accordion component (Ark UI primitive, styled via Park UI)
|
|
453
|
+
9. CTA — centered section with Input + Button
|
|
454
|
+
10. Footer — grid layout with Link groups and Separator
|
|
455
|
+
|
|
456
|
+
CODE QUALITY:
|
|
457
|
+
- Fully responsive and accessible
|
|
458
|
+
- Ark UI headless primitives for rock-solid accessibility
|
|
459
|
+
- TypeScript strict mode
|
|
460
|
+
- Component-per-section architecture
|
|
461
|
+
```
|
|
462
|
+
|
|
463
|
+
---
|
|
464
|
+
|
|
465
|
+
### Origin UI
|
|
466
|
+
|
|
467
|
+
**Stack:** React, Tailwind CSS, shadcn/ui foundation
|
|
468
|
+
**Install:** Copy-paste (400+ free components)
|
|
469
|
+
**Site:** originui.com
|
|
470
|
+
|
|
471
|
+
```
|
|
472
|
+
Build a polished, component-rich landing page using Next.js 14+, TypeScript, Tailwind CSS, and Origin UI components (built on shadcn/ui).
|
|
473
|
+
|
|
474
|
+
ARCHITECTURE:
|
|
475
|
+
- Next.js App Router with shadcn/ui base + Origin UI component variants
|
|
476
|
+
- Copy-paste Origin UI components into /components/ui
|
|
477
|
+
- Origin UI extends shadcn patterns with 400+ variant options
|
|
478
|
+
|
|
479
|
+
DESIGN PRINCIPLES:
|
|
480
|
+
- Professional and versatile (many style variants per component)
|
|
481
|
+
- Pick a cohesive subset of variants that match your brand
|
|
482
|
+
- Consistent spacing and typography aligned with shadcn's token system
|
|
483
|
+
- Focus on component quality and consistency over flashy animation
|
|
484
|
+
|
|
485
|
+
SECTIONS TO BUILD:
|
|
486
|
+
1. Navbar — choose from Origin UI's multiple navbar variants
|
|
487
|
+
2. Hero — select a hero variant (centered, split, with background pattern)
|
|
488
|
+
3. Social proof — logo cloud variant
|
|
489
|
+
4. Features — pick feature section variant (grid, list, bento, with images)
|
|
490
|
+
5. Content — alternating image/text sections
|
|
491
|
+
6. Testimonials — choose testimonial variant (cards, quotes, carousel)
|
|
492
|
+
7. Pricing — select pricing table variant (simple, comparison, with toggle)
|
|
493
|
+
8. FAQ — accordion variant
|
|
494
|
+
9. CTA — pick CTA variant (centered, with input, split layout)
|
|
495
|
+
10. Footer — choose footer variant (simple, multi-column, with newsletter)
|
|
496
|
+
|
|
497
|
+
CODE QUALITY:
|
|
498
|
+
- Fully responsive (all components are mobile-first)
|
|
499
|
+
- Accessible (shadcn/ui + Radix UI foundation)
|
|
500
|
+
- TypeScript throughout
|
|
501
|
+
- Minimal dependencies
|
|
502
|
+
```
|
|
503
|
+
|
|
504
|
+
---
|
|
505
|
+
|
|
506
|
+
### Headless UI
|
|
507
|
+
|
|
508
|
+
**Stack:** React or Vue, Tailwind CSS (by Tailwind Labs)
|
|
509
|
+
**Install:** `npm i @headlessui/react`
|
|
510
|
+
**Site:** headlessui.com
|
|
511
|
+
|
|
512
|
+
```
|
|
513
|
+
Build a custom-designed, fully accessible landing page using Next.js 14+, TypeScript, Tailwind CSS, and Headless UI for interactive components.
|
|
514
|
+
|
|
515
|
+
ARCHITECTURE:
|
|
516
|
+
- Next.js App Router with Tailwind CSS for all styling
|
|
517
|
+
- Headless UI only for interactive behavior (menus, dialogs, tabs, disclosure, transitions)
|
|
518
|
+
- All visual design is custom Tailwind — Headless UI provides zero styling
|
|
519
|
+
- Organize: /app, /components/ui (custom-styled wrappers), /components/sections
|
|
520
|
+
|
|
521
|
+
DESIGN PRINCIPLES:
|
|
522
|
+
- Completely custom aesthetic — you control every pixel
|
|
523
|
+
- Minimalist, editorial-quality design (think Stripe, Linear, Vercel)
|
|
524
|
+
- Monochrome base with ONE signature accent color
|
|
525
|
+
- Large whitespace, precise typography, meticulous alignment
|
|
526
|
+
- Every interactive element is keyboard-navigable and screen-reader friendly
|
|
527
|
+
|
|
528
|
+
SECTIONS TO BUILD:
|
|
529
|
+
1. Navbar — custom with Headless UI Popover for dropdowns, Disclosure for mobile menu
|
|
530
|
+
2. Hero — pure Tailwind, dramatic typography, clean CTAs
|
|
531
|
+
3. Social proof — pure Tailwind logo row
|
|
532
|
+
4. Features — custom card grid, optional Tab component for tabbed showcase
|
|
533
|
+
5. Product showcase — TabGroup for interactive product views
|
|
534
|
+
6. Testimonials — pure Tailwind card grid
|
|
535
|
+
7. Pricing — RadioGroup for plan selection, Switch for monthly/annual toggle
|
|
536
|
+
8. FAQ — Disclosure component for accessible expand/collapse
|
|
537
|
+
9. CTA — pure Tailwind centered section
|
|
538
|
+
10. Footer — pure Tailwind grid layout
|
|
539
|
+
|
|
540
|
+
HEADLESS UI COMPONENTS TO LEVERAGE:
|
|
541
|
+
- Popover — navbar dropdowns
|
|
542
|
+
- Disclosure — mobile menu, FAQ items
|
|
543
|
+
- Dialog — modals/overlays
|
|
544
|
+
- Transition — smooth enter/leave animations
|
|
545
|
+
- RadioGroup — plan selection
|
|
546
|
+
- Switch — toggles
|
|
547
|
+
- TabGroup — tabbed content
|
|
548
|
+
|
|
549
|
+
CODE QUALITY:
|
|
550
|
+
- 100% accessible (Headless UI's core guarantee)
|
|
551
|
+
- Fully responsive custom Tailwind design
|
|
552
|
+
- Keyboard navigation on all interactive elements
|
|
553
|
+
- TypeScript with proper generics
|
|
554
|
+
- Zero design dependencies — total creative control
|
|
555
|
+
```
|
|
556
|
+
|
|
557
|
+
---
|
|
558
|
+
|
|
559
|
+
### Cult UI
|
|
560
|
+
|
|
561
|
+
**Stack:** React, Next.js, Tailwind CSS, shadcn/ui foundation
|
|
562
|
+
**Install:** Copy-paste or CLI
|
|
563
|
+
**Site:** cult-ui.com
|
|
564
|
+
|
|
565
|
+
```
|
|
566
|
+
Build a modern, AI-forward landing page using Next.js 14+, TypeScript, Tailwind CSS, and Cult UI components.
|
|
567
|
+
|
|
568
|
+
ARCHITECTURE:
|
|
569
|
+
- Next.js App Router with Cult UI components (extends shadcn/ui)
|
|
570
|
+
- Full-stack ready (Cult UI includes backend-aware patterns)
|
|
571
|
+
- Use Cult UI's AI-specific blocks if building an AI product
|
|
572
|
+
|
|
573
|
+
DESIGN PRINCIPLES:
|
|
574
|
+
- Tech-forward, developer-centric aesthetic
|
|
575
|
+
- Dark mode primary with high-contrast accents
|
|
576
|
+
- Modern gradients and subtle glow effects
|
|
577
|
+
- Clean code-like typography (mono fonts for accents)
|
|
578
|
+
- Purposeful animation that communicates AI/tech sophistication
|
|
579
|
+
|
|
580
|
+
SECTIONS TO BUILD:
|
|
581
|
+
1. Navbar — modern floating nav with glass effect
|
|
582
|
+
2. Hero — bold headline with animated text effect, live demo or interactive element, gradient mesh background
|
|
583
|
+
3. Features — AI blocks for feature cards, animated icons or micro-interactions
|
|
584
|
+
4. Live demo — interactive component showing product in action
|
|
585
|
+
5. Code showcase — syntax-highlighted code examples using Cult UI's code block components
|
|
586
|
+
6. Testimonials — modern card layout with subtle animation
|
|
587
|
+
7. Pricing — clean tier comparison with feature matrix
|
|
588
|
+
8. Open source / community — GitHub stars counter, contributor avatars
|
|
589
|
+
9. CTA — compelling action section with email input or waitlist signup
|
|
590
|
+
10. Footer — developer-friendly footer with docs links, API reference, status page
|
|
591
|
+
|
|
592
|
+
CODE QUALITY:
|
|
593
|
+
- Full-stack patterns (API routes + client components)
|
|
594
|
+
- TypeScript strict mode throughout
|
|
595
|
+
- Accessible interactive components
|
|
596
|
+
- Production-ready architecture patterns
|
|
597
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"created_at": "",
|
|
4
|
+
"lifetime": {
|
|
5
|
+
"total_tokens_estimated": 0,
|
|
6
|
+
"total_reads": 0,
|
|
7
|
+
"total_writes": 0,
|
|
8
|
+
"total_sessions": 0,
|
|
9
|
+
"anatomy_hits": 0,
|
|
10
|
+
"anatomy_misses": 0,
|
|
11
|
+
"repeated_reads_blocked": 0,
|
|
12
|
+
"estimated_savings_vs_bare_cli": 0
|
|
13
|
+
},
|
|
14
|
+
"sessions": [],
|
|
15
|
+
"daemon_usage": [],
|
|
16
|
+
"waste_flags": [],
|
|
17
|
+
"optimization_report": {
|
|
18
|
+
"last_generated": null,
|
|
19
|
+
"patterns": []
|
|
20
|
+
}
|
|
21
|
+
}
|