@vibes.diy/prompts 2.2.2 → 2.2.3
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/package.json +3 -3
- package/prompts.js +121 -35
- package/prompts.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibes.diy/prompts",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"description": "",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"@fireproof/core-types-base": "~0.24.19",
|
|
31
31
|
"@fireproof/core-types-protocols-cloud": "~0.24.19",
|
|
32
32
|
"@fireproof/use-fireproof": "~0.24.19",
|
|
33
|
-
"@vibes.diy/call-ai-v2": "^2.2.
|
|
34
|
-
"@vibes.diy/use-vibes-types": "^2.2.
|
|
33
|
+
"@vibes.diy/call-ai-v2": "^2.2.3",
|
|
34
|
+
"@vibes.diy/use-vibes-types": "^2.2.3",
|
|
35
35
|
"arktype": "~2.2.0",
|
|
36
36
|
"json-schema-faker": "~0.6.1"
|
|
37
37
|
},
|
package/prompts.js
CHANGED
|
@@ -188,14 +188,116 @@ export async function makeBaseSystemPrompt(model, sessionDoc) {
|
|
|
188
188
|
"",
|
|
189
189
|
"**After the description prose, emit a thin scaffold as a single fenced block. Target ~40 lines.** The scaffold renders immediately and gives later edits unique anchors to target. It must contain:",
|
|
190
190
|
"- the import statements (react + the libraries listed below)",
|
|
191
|
-
"- a `classNames` object with
|
|
191
|
+
"- a `classNames` object with **short, working Tailwind values for the layout-level keys** (`page`, `header`, the app title, the feature section frame). Pick reasonable defaults so the first paint already shows a coherent app shell — a centered max-width container, padded header, readable title, basic feature card spacing. Keep each value short (one line, ≤80 chars). Detailed component-specific styling still lands via edits.",
|
|
192
192
|
"- a small stub function component per feature (`function FeatureOne() {...}`, etc.) — each is a unique SEARCH target, and replacing one is naturally a 10–20 line edit",
|
|
193
193
|
'- a default-exported `App` function that composes them inside a `<main id="app">` with `<header id="app-header">`',
|
|
194
194
|
'- name the section ids and feature components after the features you just described (e.g. for a kanban board: `id="board"`, `id="add-task"`, `id="ai-expand"`), not literal `feature-one`',
|
|
195
|
-
"- plain JSX placeholders in each stub (e.g. `<h2>Feature</h2>` and a `{/* ... */}` comment)",
|
|
196
|
-
"- NO hooks (no useState, no useFireproof, no useLiveQuery), NO callAI calls, NO event handlers, NO
|
|
195
|
+
"- plain JSX placeholders in each stub (e.g. `<h2>Feature</h2>` and a `{/* ... */}` comment) — the placeholders inherit the scaffold's layout styling so the empty state already looks intentional",
|
|
196
|
+
"- NO hooks (no useState, no useFireproof, no useLiveQuery), NO callAI calls, NO event handlers, NO long color/shadow Tailwind chains (those land via edits)",
|
|
197
197
|
"",
|
|
198
|
-
"
|
|
198
|
+
"**Every edit block must be preceded by exactly one line of prose. No exceptions.** Before each fenced SEARCH/REPLACE block, write a single sentence (≤25 words) telling the user what this specific edit does. Never emit two fenced blocks back-to-back without a prose line between them — the user is watching the preview update and needs that one-line cadence to follow what's happening. No multi-paragraph essays either: just one sentence, then the edit. Styling edits (filling in `classNames` values, color tokens, layout polish) follow the same rule — one line of description, then the edit.",
|
|
199
|
+
"",
|
|
200
|
+
"Each `<<<<<<< SEARCH` snippet must match exactly one place in the current file (the stub `function FeatureN() {...}` is the natural target — include the whole function body for uniqueness). A single fenced block may contain multiple SEARCH/REPLACE sections; they apply in order.",
|
|
201
|
+
"",
|
|
202
|
+
"**Make each edit as small as syntactically valid.** The smallest valid SEARCH→REPLACE that produces a working app is the goal — *not* a finished feature in one shot. Each edit lands on the live preview within hundreds of milliseconds; small edits = many fast paints = the user sees the app evolve. Large edits = long pauses = the user sees nothing happen for seconds.",
|
|
203
|
+
"",
|
|
204
|
+
"**Bias early edits toward visible changes; save data wiring and state for the end.** Hooks (`useState`, `useFireproof`, `useLiveQuery`), `callAI`, and event handlers don't change what's on screen until the user interacts — they look like nothing happened. Real text, real layout, real colors, real buttons sitting in their final positions DO change what's on screen and tell the user the app is taking shape. Order the edits accordingly:",
|
|
205
|
+
"1. **Visible first**: replace stub headings with real titles, fill in the `classNames` values with real Tailwind, drop in static placeholder cards / lists / form skeletons that look like the final UI. Each of these paints immediately.",
|
|
206
|
+
"2. **Interactivity next**: wire form fields and buttons with `useState`, hook up onClick/onChange handlers to local state. Visible feedback per click.",
|
|
207
|
+
"3. **Data and AI last**: swap local state for `useFireproof` + `useLiveQuery`, wire `callAI` flows, persistence, multi-doc relationships. By the time you get here the app already looks done; you're just making it real.",
|
|
208
|
+
"",
|
|
209
|
+
"If a single SEARCH/REPLACE grows beyond ~25 lines, split it.",
|
|
210
|
+
"",
|
|
211
|
+
'**Always go feature-by-feature with SEARCH/REPLACE.** Do NOT emit the whole file as a single edit just because the build feels substantial — the user wants to see each feature land incrementally. The only time to emit a fresh full-file block is when the user explicitly requests a complete overhaul or redesign (e.g. "redo the whole thing", "switch to a totally different layout"). If you find yourself thinking "this is a substantial build, I\'ll do it in one pass", do not — go feature-by-feature instead.',
|
|
212
|
+
"",
|
|
213
|
+
"After your final edit, add a short 1-2 sentence message describing the core workflow the app supports.",
|
|
214
|
+
"",
|
|
215
|
+
"## Example output (abbreviated)",
|
|
216
|
+
"",
|
|
217
|
+
"Below is a tiny worked example showing the format end-to-end. Description → scaffold → one prose line → edit → one prose line → edit → closing line. Yours will have more features and more edits, but the cadence is exactly this.",
|
|
218
|
+
"",
|
|
219
|
+
"> **Quick Notes** — A minimal note-taker. Type a title and body, hit save, see the latest note at the top. Top features: 1) note input form, 2) latest note display, 3) note list. Workflow: User types → submits → latest note appears → list shows below.",
|
|
220
|
+
">",
|
|
221
|
+
"> App.jsx",
|
|
222
|
+
"> ```jsx",
|
|
223
|
+
'> import React from "react"',
|
|
224
|
+
'> import { useFireproof } from "use-fireproof"',
|
|
225
|
+
"> ",
|
|
226
|
+
"> const classNames = {",
|
|
227
|
+
'> page: "min-h-screen bg-white p-6",',
|
|
228
|
+
'> header: "max-w-3xl mx-auto mb-6",',
|
|
229
|
+
'> title: "text-2xl font-semibold",',
|
|
230
|
+
'> feature: "max-w-3xl mx-auto mb-4 p-4 border rounded",',
|
|
231
|
+
'> featureTitle: "text-lg font-medium mb-2",',
|
|
232
|
+
"> };",
|
|
233
|
+
"> ",
|
|
234
|
+
"> function NoteForm() {",
|
|
235
|
+
"> return (",
|
|
236
|
+
'> <section id="note-form" className={classNames.feature}>',
|
|
237
|
+
"> <h2 className={classNames.featureTitle}>Feature</h2>",
|
|
238
|
+
"> {/* form lands here */}",
|
|
239
|
+
"> </section>",
|
|
240
|
+
"> );",
|
|
241
|
+
"> }",
|
|
242
|
+
"> ",
|
|
243
|
+
"> export default function App() {",
|
|
244
|
+
"> return (",
|
|
245
|
+
'> <main id="app" className={classNames.page}>',
|
|
246
|
+
'> <header id="app-header" className={classNames.header}>',
|
|
247
|
+
"> <h1 className={classNames.title}>Quick Notes</h1>",
|
|
248
|
+
"> </header>",
|
|
249
|
+
"> <NoteForm />",
|
|
250
|
+
"> </main>",
|
|
251
|
+
"> );",
|
|
252
|
+
"> }",
|
|
253
|
+
"> ```",
|
|
254
|
+
">",
|
|
255
|
+
"> Drop a title field and Save button into the form so the user sees the shape of the input.",
|
|
256
|
+
">",
|
|
257
|
+
"> App.jsx",
|
|
258
|
+
"> ```jsx",
|
|
259
|
+
"> <<<<<<< SEARCH",
|
|
260
|
+
"> function NoteForm() {",
|
|
261
|
+
"> return (",
|
|
262
|
+
'> <section id="note-form" className={classNames.feature}>',
|
|
263
|
+
"> <h2 className={classNames.featureTitle}>Feature</h2>",
|
|
264
|
+
"> {/* form lands here */}",
|
|
265
|
+
"> </section>",
|
|
266
|
+
"> );",
|
|
267
|
+
"> }",
|
|
268
|
+
"> =======",
|
|
269
|
+
"> function NoteForm() {",
|
|
270
|
+
"> return (",
|
|
271
|
+
'> <section id="note-form" className={classNames.feature}>',
|
|
272
|
+
"> <h2 className={classNames.featureTitle}>New Note</h2>",
|
|
273
|
+
'> <input placeholder="Title" className="w-full mb-2 p-2 border rounded" />',
|
|
274
|
+
'> <button className="px-4 py-2 bg-blue-500 text-white rounded">Save</button>',
|
|
275
|
+
"> </section>",
|
|
276
|
+
"> );",
|
|
277
|
+
"> }",
|
|
278
|
+
"> >>>>>>> REPLACE",
|
|
279
|
+
"> ```",
|
|
280
|
+
">",
|
|
281
|
+
"> Wire the input and Save button to Fireproof so a typed note actually persists.",
|
|
282
|
+
">",
|
|
283
|
+
"> App.jsx",
|
|
284
|
+
"> ```jsx",
|
|
285
|
+
"> <<<<<<< SEARCH",
|
|
286
|
+
'> <input placeholder="Title" className="w-full mb-2 p-2 border rounded" />',
|
|
287
|
+
'> <button className="px-4 py-2 bg-blue-500 text-white rounded">Save</button>',
|
|
288
|
+
"> =======",
|
|
289
|
+
'> <input value={doc.title} onChange={e => merge({title: e.target.value})} placeholder="Title" className="w-full mb-2 p-2 border rounded" />',
|
|
290
|
+
'> <button onClick={submit} className="px-4 py-2 bg-blue-500 text-white rounded">Save</button>',
|
|
291
|
+
"> >>>>>>> REPLACE",
|
|
292
|
+
"> ```",
|
|
293
|
+
">",
|
|
294
|
+
"> Type a title, hit Save — your note persists in Fireproof.",
|
|
295
|
+
"",
|
|
296
|
+
"Note how each edit is preceded by exactly one prose line, the visible structure (input + button) lands before the data wiring (`useDocument` / state), and each SEARCH block is the smallest unique snippet that targets the change.",
|
|
297
|
+
"",
|
|
298
|
+
"## Your starter scaffold",
|
|
299
|
+
"",
|
|
300
|
+
"Adapt this to your features (rename `FeatureOne/Two/Three` and the `id` values to match what you described above; tweak the Tailwind defaults to fit your style prompt). Then start emitting prose+edit pairs per the rules above.",
|
|
199
301
|
"",
|
|
200
302
|
"```",
|
|
201
303
|
"App.jsx",
|
|
@@ -203,33 +305,36 @@ export async function makeBaseSystemPrompt(model, sessionDoc) {
|
|
|
203
305
|
`import React from "react"${generateImportStatements(chosenLlms)}`,
|
|
204
306
|
"",
|
|
205
307
|
"const classNames = {",
|
|
206
|
-
' page: "",',
|
|
207
|
-
' header: "",',
|
|
208
|
-
'
|
|
209
|
-
'
|
|
210
|
-
'
|
|
308
|
+
' page: "min-h-screen bg-white p-6",',
|
|
309
|
+
' header: "max-w-3xl mx-auto mb-6",',
|
|
310
|
+
' title: "text-2xl font-semibold",',
|
|
311
|
+
' feature: "max-w-3xl mx-auto mb-4 p-4 border rounded",',
|
|
312
|
+
' featureTitle: "text-lg font-medium mb-2",',
|
|
211
313
|
"};",
|
|
212
314
|
"",
|
|
213
315
|
"function FeatureOne() {",
|
|
214
316
|
" return (",
|
|
215
|
-
' <section id="feature-one" className={classNames.
|
|
216
|
-
" <h2>Feature One</h2>",
|
|
317
|
+
' <section id="feature-one" className={classNames.feature}>',
|
|
318
|
+
" <h2 className={classNames.featureTitle}>Feature One</h2>",
|
|
319
|
+
" {/* feature one lands here */}",
|
|
217
320
|
" </section>",
|
|
218
321
|
" );",
|
|
219
322
|
"}",
|
|
220
323
|
"",
|
|
221
324
|
"function FeatureTwo() {",
|
|
222
325
|
" return (",
|
|
223
|
-
' <section id="feature-two" className={classNames.
|
|
224
|
-
" <h2>Feature Two</h2>",
|
|
326
|
+
' <section id="feature-two" className={classNames.feature}>',
|
|
327
|
+
" <h2 className={classNames.featureTitle}>Feature Two</h2>",
|
|
328
|
+
" {/* feature two lands here */}",
|
|
225
329
|
" </section>",
|
|
226
330
|
" );",
|
|
227
331
|
"}",
|
|
228
332
|
"",
|
|
229
333
|
"function FeatureThree() {",
|
|
230
334
|
" return (",
|
|
231
|
-
' <section id="feature-three" className={classNames.
|
|
232
|
-
" <h2>Feature Three</h2>",
|
|
335
|
+
' <section id="feature-three" className={classNames.feature}>',
|
|
336
|
+
" <h2 className={classNames.featureTitle}>Feature Three</h2>",
|
|
337
|
+
" {/* feature three lands here */}",
|
|
233
338
|
" </section>",
|
|
234
339
|
" );",
|
|
235
340
|
"}",
|
|
@@ -238,7 +343,7 @@ export async function makeBaseSystemPrompt(model, sessionDoc) {
|
|
|
238
343
|
" return (",
|
|
239
344
|
' <main id="app" className={classNames.page}>',
|
|
240
345
|
' <header id="app-header" className={classNames.header}>',
|
|
241
|
-
" <h1>App Title</h1>",
|
|
346
|
+
" <h1 className={classNames.title}>App Title</h1>",
|
|
242
347
|
" </header>",
|
|
243
348
|
" <FeatureOne />",
|
|
244
349
|
" <FeatureTwo />",
|
|
@@ -249,25 +354,6 @@ export async function makeBaseSystemPrompt(model, sessionDoc) {
|
|
|
249
354
|
"```",
|
|
250
355
|
"```",
|
|
251
356
|
"",
|
|
252
|
-
"**Then, for each feature, write a short prose paragraph followed by a focused edit using SEARCH/REPLACE markers inside a fenced block.** Each `<<<<<<< SEARCH` snippet must match exactly one place in the current file (the stub `function FeatureN() {...}` is the natural target — include the whole function body for uniqueness). A single fenced block may contain multiple SEARCH/REPLACE sections; they apply in order. Styling (filling in the `classNames` values, color tokens, layout polish) also lands via SEARCH/REPLACE edits — do not put real class strings in the scaffold.",
|
|
253
|
-
"",
|
|
254
|
-
"**Target 10–20 lines per SEARCH/REPLACE edit.** A single feature stub → working component is the natural unit. If a single edit grows beyond ~25 lines, split it into multiple SEARCH/REPLACE sections in the same fenced block.",
|
|
255
|
-
"",
|
|
256
|
-
"```",
|
|
257
|
-
"App.jsx",
|
|
258
|
-
"```jsx",
|
|
259
|
-
"<<<<<<< SEARCH",
|
|
260
|
-
"// existing snippet (must match exactly once)",
|
|
261
|
-
"=======",
|
|
262
|
-
"// new snippet",
|
|
263
|
-
">>>>>>> REPLACE",
|
|
264
|
-
"```",
|
|
265
|
-
"```",
|
|
266
|
-
"",
|
|
267
|
-
'**Always go feature-by-feature with SEARCH/REPLACE.** Do NOT emit the whole file as a single edit just because the build feels substantial — the user wants to see each feature land incrementally. The only time to emit a fresh full-file block is when the user explicitly requests a complete overhaul or redesign (e.g. "redo the whole thing", "switch to a totally different layout"). If you find yourself thinking "this is a substantial build, I\'ll do it in one pass", do not — go feature-by-feature instead.',
|
|
268
|
-
"",
|
|
269
|
-
"After your final edit, add a short 1-2 sentence message describing the core workflow the app supports.",
|
|
270
|
-
"",
|
|
271
357
|
].join("\n");
|
|
272
358
|
return {
|
|
273
359
|
systemPrompt,
|
package/prompts.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompts.js","sourceRoot":"","sources":["../jsr/prompts.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"prompts.js","sourceRoot":"","sources":["../jsr/prompts.ts"],"names":[],"mappings":"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"}
|