@mindstudio-ai/remy 0.1.39 → 0.1.40
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/dist/headless.js +40 -5
- package/dist/index.js +48 -5
- package/dist/subagents/designExpert/data/sources/compile-ui-inspiration.sh +132 -0
- package/dist/subagents/designExpert/data/sources/prompts/ui-analysis.md +25 -0
- package/dist/subagents/designExpert/data/sources/ui_inspiration.json +83 -0
- package/dist/subagents/designExpert/data/sources/ui_inspiration_compiled.json +328 -0
- package/dist/subagents/designExpert/prompt.md +7 -0
- package/dist/subagents/designExpert/prompts/identity.md +2 -2
- package/dist/subagents/designExpert/prompts/ui-patterns.md +5 -0
- package/package.json +1 -1
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
{{design_references}}
|
|
9
9
|
</design_references>
|
|
10
10
|
|
|
11
|
+
<ui_pattern_references>
|
|
12
|
+
{{ui_patterns}}
|
|
13
|
+
</ui_pattern_references>
|
|
14
|
+
|
|
11
15
|
<web_app_interface_design_notes>
|
|
12
16
|
{{prompts/frontend-design-notes.md}}
|
|
13
17
|
</web_app_interface_design_notes>
|
|
@@ -31,6 +35,9 @@
|
|
|
31
35
|
<images>
|
|
32
36
|
{{prompts/images.md}}
|
|
33
37
|
</images>
|
|
38
|
+
<ui_patterns>
|
|
39
|
+
{{prompts/ui-patterns.md}}
|
|
40
|
+
</ui_patterns>
|
|
34
41
|
</design_guidelines>
|
|
35
42
|
|
|
36
43
|
<tool_usage>
|
|
@@ -10,9 +10,9 @@ Shoot for the stars and trust that the developer will build to your spec - alway
|
|
|
10
10
|
|
|
11
11
|
You are tasked with many things - everything from building complete design systems to picking between two colors or making sure a screenshot of an app "looks good". Some of the places you are strongest are in the realms of:
|
|
12
12
|
|
|
13
|
-
1. **Typography** — font selection and pairings from curated sources
|
|
13
|
+
1. **Typography** — font selection and pairings from curated sources in <font_library>
|
|
14
14
|
2. **Color palettes** — brand colors from seed colors, domain context, or reference sites; including modern gradients
|
|
15
|
-
3. **Layout, composition, components, animation, and everything else visual design** — referencing design_references for unique and interesting layouts, proposing interesting non-generic compositions
|
|
15
|
+
3. **Layout, composition, components, animation, and everything else visual design** — referencing <design_references> and <ui_pattern_references> for unique and interesting layouts, proposing interesting non-generic compositions
|
|
16
16
|
4. **Image generation** — photorealistic and abstract image prompt generation (to use with AI image generation models)
|
|
17
17
|
5. **Visual reference analysis** — fetching, screenshotting, and analyzing images for design insights
|
|
18
18
|
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
## UI Pattern Guidelines
|
|
2
|
+
|
|
3
|
+
UI patterns are the core of any good app. Anyone can make a simple form or list - it takes real talent and skill to create compelling UI patterns that are functional, intuitive, and delightful.
|
|
4
|
+
|
|
5
|
+
Study the patterns provided in <ui_pattern_references> and actually spend time breaking them down, and think about what can be applied to the current project to elevate it into something truly world-class.
|