dreative 0.1.0 → 0.2.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/README.md +35 -35
- package/dist/cli/index.js +8 -8
- package/dist/server/preview.js +73 -73
- package/dist/shared/design.js +2 -0
- package/dist/ui/index.html +11 -11
- package/package.json +44 -44
- package/skill/dreative/DESIGN.md +387 -358
- package/skill/dreative/SKILL.md +108 -108
- package/skill/dreative/skills/3d.md +134 -131
- package/skill/dreative/skills/cinematic.md +171 -0
- package/skill/dreative/skills/immersive.md +217 -0
- package/skill/dreative/skills/interaction.md +129 -126
- package/skill/dreative/skills/motion.md +137 -125
- package/dist/server/ai.js +0 -177
package/dist/server/ai.js
DELETED
|
@@ -1,177 +0,0 @@
|
|
|
1
|
-
import { query } from "@anthropic-ai/claude-agent-sdk";
|
|
2
|
-
const BLOCK_SCHEMA = `
|
|
3
|
-
A block is a JSON object:
|
|
4
|
-
{
|
|
5
|
-
"id": "string (short unique id)",
|
|
6
|
-
"type": "section|row|column|nav|hero|card-grid|list|form|footer|text|image|button",
|
|
7
|
-
"label": "short human label, e.g. 'Hero', 'Pricing cards'",
|
|
8
|
-
"direction": "row" | "column" (optional, layout of children),
|
|
9
|
-
"sizeHint": "sm" | "md" | "lg" (optional, relative vertical size),
|
|
10
|
-
"intents": ["optional behavior notes, e.g. 'CTA scrolls to pricing'"],
|
|
11
|
-
"children": [ ...nested blocks ] (optional)
|
|
12
|
-
}
|
|
13
|
-
Keep trees shallow (max depth 3) and wireframe-level: structure, not styling.`;
|
|
14
|
-
/** Run an Agent SDK query and return the final result text, reporting progress. */
|
|
15
|
-
async function run(prompt, opts = {}) {
|
|
16
|
-
let result = "";
|
|
17
|
-
const q = query({
|
|
18
|
-
prompt,
|
|
19
|
-
options: {
|
|
20
|
-
allowedTools: opts.allowRead ? ["Read"] : [],
|
|
21
|
-
permissionMode: "bypassPermissions",
|
|
22
|
-
maxTurns: opts.allowRead ? 6 : 2,
|
|
23
|
-
},
|
|
24
|
-
});
|
|
25
|
-
for await (const message of q) {
|
|
26
|
-
if (message.type === "assistant") {
|
|
27
|
-
const blocks = message.message?.content ?? [];
|
|
28
|
-
for (const b of blocks) {
|
|
29
|
-
if (b.type === "tool_use")
|
|
30
|
-
opts.progress?.("Looking at the reference image...");
|
|
31
|
-
else if (b.type === "text")
|
|
32
|
-
opts.progress?.("Writing...");
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
else if (message.type === "result") {
|
|
36
|
-
if (message.subtype === "success")
|
|
37
|
-
result = message.result;
|
|
38
|
-
else
|
|
39
|
-
throw new Error(`AI call failed: ${message.subtype}`);
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
if (!result)
|
|
43
|
-
throw new Error("AI call returned no result");
|
|
44
|
-
return result;
|
|
45
|
-
}
|
|
46
|
-
/** Run + parse, with one retry that feeds the failure back to the model. */
|
|
47
|
-
async function runParsed(prompt, parse, opts = {}) {
|
|
48
|
-
const text = await run(prompt, opts);
|
|
49
|
-
try {
|
|
50
|
-
return parse(text);
|
|
51
|
-
}
|
|
52
|
-
catch (err) {
|
|
53
|
-
opts.progress?.("Output was malformed - retrying...");
|
|
54
|
-
const retryText = await run(`${prompt}\n\nIMPORTANT: Your previous response could not be parsed (${String(err)}). Respond again, strictly following the output format instructions.`, opts);
|
|
55
|
-
return parse(retryText);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
/** Extract the first JSON value (object or array) from model output. */
|
|
59
|
-
function extractJson(text) {
|
|
60
|
-
const fenced = text.match(/```(?:json)?\s*([\s\S]*?)```/);
|
|
61
|
-
const candidate = fenced ? fenced[1] : text;
|
|
62
|
-
const start = candidate.search(/[[{]/);
|
|
63
|
-
if (start === -1)
|
|
64
|
-
throw new Error("No JSON found in AI response");
|
|
65
|
-
for (let end = candidate.length; end > start; end--) {
|
|
66
|
-
const ch = candidate[end - 1];
|
|
67
|
-
if (ch !== "}" && ch !== "]")
|
|
68
|
-
continue;
|
|
69
|
-
try {
|
|
70
|
-
return JSON.parse(candidate.slice(start, end));
|
|
71
|
-
}
|
|
72
|
-
catch {
|
|
73
|
-
/* keep scanning */
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
throw new Error("Could not parse JSON from AI response");
|
|
77
|
-
}
|
|
78
|
-
function extractCode(text) {
|
|
79
|
-
const fence = text.match(/```(?:tsx|jsx|typescript|ts)?\s*([\s\S]*?)```/);
|
|
80
|
-
const code = fence ? fence[1].trim() : text.trim();
|
|
81
|
-
if (!code.includes("export default"))
|
|
82
|
-
throw new Error("Generated code has no default export");
|
|
83
|
-
return code;
|
|
84
|
-
}
|
|
85
|
-
export async function proposeSkeletons(userPrompt, progress) {
|
|
86
|
-
progress?.("Proposing page layouts...");
|
|
87
|
-
return runParsed(`You are a UX/information-architecture expert. Propose 3 distinct page layout skeletons (wireframe-level) for this request:
|
|
88
|
-
|
|
89
|
-
"${userPrompt}"
|
|
90
|
-
|
|
91
|
-
${BLOCK_SCHEMA}
|
|
92
|
-
|
|
93
|
-
Respond with ONLY a JSON array of 3 items, each: {"name": "page variant name", "layout": <block tree with root type "section">}. No prose.`, (t) => extractJson(t), { progress });
|
|
94
|
-
}
|
|
95
|
-
export async function proposeVariants(pageName, layout, progress) {
|
|
96
|
-
progress?.(`Proposing variants of "${pageName}"...`);
|
|
97
|
-
return runParsed(`You are a UX expert. Here is the current wireframe skeleton for the page "${pageName}":
|
|
98
|
-
|
|
99
|
-
${JSON.stringify(layout, null, 2)}
|
|
100
|
-
|
|
101
|
-
Propose 2 meaningfully different alternative layouts for the SAME content and purpose (e.g. different section order, grid vs list, split vs stacked). Preserve all "intents" values, attached to the equivalent blocks. Use fresh ids.
|
|
102
|
-
|
|
103
|
-
${BLOCK_SCHEMA}
|
|
104
|
-
|
|
105
|
-
Respond with ONLY a JSON array of 2 items: {"name": "<pageName> - <variant descriptor>", "layout": <block tree>}. No prose.`, (t) => extractJson(t), { progress });
|
|
106
|
-
}
|
|
107
|
-
export async function editBlock(block, instruction, progress) {
|
|
108
|
-
progress?.("Editing block...");
|
|
109
|
-
return runParsed(`You are editing one block of a page wireframe. Current block subtree:
|
|
110
|
-
|
|
111
|
-
${JSON.stringify(block, null, 2)}
|
|
112
|
-
|
|
113
|
-
User instruction: "${instruction}"
|
|
114
|
-
|
|
115
|
-
${BLOCK_SCHEMA}
|
|
116
|
-
|
|
117
|
-
Apply the instruction. Structural changes go into the tree; behavior/functionality changes go into "intents" arrays on the relevant blocks. If the instruction replaces an existing behavior, replace the corresponding intent instead of appending. Keep existing ids where blocks are unchanged; give new blocks new ids.
|
|
118
|
-
Respond with ONLY the updated block subtree as JSON. No prose.`, (t) => extractJson(t), { progress });
|
|
119
|
-
}
|
|
120
|
-
export async function designPage(args) {
|
|
121
|
-
const { progress } = args;
|
|
122
|
-
progress?.("Designing page...");
|
|
123
|
-
const refPart = args.refImagePath
|
|
124
|
-
? `First, use the Read tool to view the reference image at: ${args.refImagePath}\nMatch its visual style (colors, typography feel, spacing, mood) closely.`
|
|
125
|
-
: "No page-level reference image provided; choose a distinctive, non-generic visual style appropriate to the content.";
|
|
126
|
-
const blockRefPart = args.blockRefs?.length
|
|
127
|
-
? `These specific blocks have their own style reference images. Use the Read tool to view each, and match that image's style for that block specifically (it overrides the page-level style for that block):\n${args.blockRefs
|
|
128
|
-
.map((r) => `- block "${r.id}" (${r.label}): ${r.path}`)
|
|
129
|
-
.join("\n")}`
|
|
130
|
-
: "";
|
|
131
|
-
const previousPart = args.previousCode
|
|
132
|
-
? `A previous version of this page exists below. The user may have made deliberate element-level edits to it. Where a block from the skeleton already exists in the previous version, PRESERVE its styling and content choices; only restructure/add/remove what the updated skeleton requires.
|
|
133
|
-
|
|
134
|
-
Previous version:
|
|
135
|
-
\`\`\`tsx
|
|
136
|
-
${args.previousCode}
|
|
137
|
-
\`\`\`
|
|
138
|
-
`
|
|
139
|
-
: "";
|
|
140
|
-
const siblingPart = args.siblingPages?.length
|
|
141
|
-
? `Other pages in this project (use these names for nav/footer links, href="#"): ${args.siblingPages.join(", ")}.`
|
|
142
|
-
: "";
|
|
143
|
-
return runParsed(`${refPart}
|
|
144
|
-
${blockRefPart}
|
|
145
|
-
|
|
146
|
-
Then generate a complete React component for the page "${args.pageName}" implementing this wireframe skeleton exactly (same structure and order of blocks):
|
|
147
|
-
|
|
148
|
-
${JSON.stringify(args.layout, null, 2)}
|
|
149
|
-
|
|
150
|
-
${previousPart}
|
|
151
|
-
Every "intents" entry describes required behavior - implement it with React state/handlers (mock data is fine, no network calls).
|
|
152
|
-
${args.designPrompt ? `Additional design direction: "${args.designPrompt}"` : ""}
|
|
153
|
-
${siblingPart}
|
|
154
|
-
|
|
155
|
-
Requirements:
|
|
156
|
-
- Single self-contained .tsx file, default-exporting the page component.
|
|
157
|
-
- Import only from "react". Style with Tailwind CSS utility classes (Tailwind is available globally).
|
|
158
|
-
- Put data-dreative-id="<block id>" on the top-level element rendered for each block from the skeleton.
|
|
159
|
-
- Realistic placeholder copy, no lorem ipsum. For images use https://picsum.photos placeholders or CSS.
|
|
160
|
-
|
|
161
|
-
Respond with ONLY the .tsx source in a single \`\`\`tsx code fence. No prose.`, extractCode, { allowRead: !!args.refImagePath || !!args.blockRefs?.length, progress });
|
|
162
|
-
}
|
|
163
|
-
export async function editDesignedElement(args) {
|
|
164
|
-
args.progress?.("Editing element...");
|
|
165
|
-
const refPart = args.refImagePath
|
|
166
|
-
? `First, use the Read tool to view the style reference image at: ${args.refImagePath}\nMatch its visual style when applying the change.\n\n`
|
|
167
|
-
: "";
|
|
168
|
-
return runParsed(`${refPart}Here is a React+Tailwind page component:
|
|
169
|
-
|
|
170
|
-
\`\`\`tsx
|
|
171
|
-
${args.code}
|
|
172
|
-
\`\`\`
|
|
173
|
-
|
|
174
|
-
Modify ONLY the element (and its contents) marked data-dreative-id="${args.elementId}" according to this instruction: "${args.instruction}". Keep everything else byte-identical where possible, keep all data-dreative-id attributes.
|
|
175
|
-
|
|
176
|
-
Respond with ONLY the full updated .tsx source in a single \`\`\`tsx code fence. No prose.`, extractCode, { allowRead: !!args.refImagePath, progress: args.progress });
|
|
177
|
-
}
|