@genfeedai/prompts 0.1.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 +115 -0
- package/dist/index.d.mts +85 -0
- package/dist/index.d.ts +85 -0
- package/dist/index.js +541 -0
- package/dist/index.mjs +497 -0
- package/metadata/catalog.json +94 -0
- package/package.json +40 -0
- package/prompts/content/blog-outline.json +43 -0
- package/prompts/content/email-sequence.json +50 -0
- package/prompts/content/social-caption.json +50 -0
- package/prompts/image-generation/brand-ad.json +50 -0
- package/prompts/image-generation/portrait-headshot.json +43 -0
- package/prompts/image-generation/product-photography.json +43 -0
- package/prompts/image-generation/social-media-post.json +43 -0
- package/prompts/video-generation/product-demo.json +43 -0
- package/prompts/video-generation/social-clip.json +43 -0
- package/prompts/video-generation/ugc-testimonial.json +43 -0
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,497 @@
|
|
|
1
|
+
// src/registry.ts
|
|
2
|
+
import * as fs from "node:fs";
|
|
3
|
+
import * as path from "node:path";
|
|
4
|
+
var PROMPT_REGISTRY = {
|
|
5
|
+
"product-photography": {
|
|
6
|
+
id: "product-photography",
|
|
7
|
+
title: "Product Photography",
|
|
8
|
+
description: "Professional product shots perfect for e-commerce and marketing",
|
|
9
|
+
category: "image-generation",
|
|
10
|
+
tier: "free",
|
|
11
|
+
template: "A professional product photograph of {product}, shot on {background}, {lighting} lighting, {angle} angle, high resolution, commercial quality",
|
|
12
|
+
variables: [
|
|
13
|
+
{
|
|
14
|
+
name: "product",
|
|
15
|
+
label: "Product",
|
|
16
|
+
type: "text",
|
|
17
|
+
required: true,
|
|
18
|
+
placeholder: "e.g., wireless headphones"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
name: "background",
|
|
22
|
+
label: "Background",
|
|
23
|
+
type: "select",
|
|
24
|
+
options: ["white", "gradient", "lifestyle", "studio"],
|
|
25
|
+
default: "white"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: "lighting",
|
|
29
|
+
label: "Lighting",
|
|
30
|
+
type: "select",
|
|
31
|
+
options: ["soft", "dramatic", "natural", "studio"],
|
|
32
|
+
default: "soft"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: "angle",
|
|
36
|
+
label: "Camera Angle",
|
|
37
|
+
type: "select",
|
|
38
|
+
options: ["front", "45-degree", "top-down", "eye-level"],
|
|
39
|
+
default: "45-degree"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
tags: ["product", "ecommerce", "photography", "commercial"],
|
|
43
|
+
icon: "\u{1F4E6}",
|
|
44
|
+
version: 1
|
|
45
|
+
},
|
|
46
|
+
"social-media-post": {
|
|
47
|
+
id: "social-media-post",
|
|
48
|
+
title: "Social Media Post",
|
|
49
|
+
description: "Eye-catching images optimized for social media engagement",
|
|
50
|
+
category: "image-generation",
|
|
51
|
+
tier: "free",
|
|
52
|
+
template: "A {style} social media post featuring {subject}, {mood} mood, {platform} optimized, trending design, vibrant colors",
|
|
53
|
+
variables: [
|
|
54
|
+
{
|
|
55
|
+
name: "subject",
|
|
56
|
+
label: "Subject",
|
|
57
|
+
type: "text",
|
|
58
|
+
required: true,
|
|
59
|
+
placeholder: "e.g., coffee shop, workout"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: "style",
|
|
63
|
+
label: "Style",
|
|
64
|
+
type: "select",
|
|
65
|
+
options: ["minimalist", "vibrant", "artistic", "corporate"],
|
|
66
|
+
default: "vibrant"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: "mood",
|
|
70
|
+
label: "Mood",
|
|
71
|
+
type: "select",
|
|
72
|
+
options: ["energetic", "calm", "professional", "playful"],
|
|
73
|
+
default: "energetic"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
name: "platform",
|
|
77
|
+
label: "Platform",
|
|
78
|
+
type: "select",
|
|
79
|
+
options: ["Instagram", "Facebook", "Twitter", "LinkedIn"],
|
|
80
|
+
default: "Instagram"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
tags: ["social", "media", "marketing", "engagement"],
|
|
84
|
+
icon: "\u{1F4F1}",
|
|
85
|
+
version: 1
|
|
86
|
+
},
|
|
87
|
+
"brand-ad": {
|
|
88
|
+
id: "brand-ad",
|
|
89
|
+
title: "Brand Advertisement",
|
|
90
|
+
description: "Professional brand advertisements that convert and engage",
|
|
91
|
+
category: "image-generation",
|
|
92
|
+
tier: "free",
|
|
93
|
+
template: "A {style} advertisement for {brand}, showcasing {product}, {tone} tone, {target} audience, professional marketing photography",
|
|
94
|
+
variables: [
|
|
95
|
+
{
|
|
96
|
+
name: "brand",
|
|
97
|
+
label: "Brand Name",
|
|
98
|
+
type: "text",
|
|
99
|
+
required: true,
|
|
100
|
+
placeholder: "e.g., Nike, Apple"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
name: "product",
|
|
104
|
+
label: "Product/Service",
|
|
105
|
+
type: "text",
|
|
106
|
+
required: true,
|
|
107
|
+
placeholder: "e.g., running shoes"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: "style",
|
|
111
|
+
label: "Ad Style",
|
|
112
|
+
type: "select",
|
|
113
|
+
options: ["luxury", "casual", "tech", "lifestyle"],
|
|
114
|
+
default: "lifestyle"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
name: "tone",
|
|
118
|
+
label: "Brand Tone",
|
|
119
|
+
type: "select",
|
|
120
|
+
options: ["premium", "friendly", "innovative", "trustworthy"],
|
|
121
|
+
default: "premium"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
name: "target",
|
|
125
|
+
label: "Target Audience",
|
|
126
|
+
type: "select",
|
|
127
|
+
options: ["young adults", "professionals", "families", "athletes"],
|
|
128
|
+
default: "young adults"
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
tags: ["brand", "advertising", "marketing", "commercial"],
|
|
132
|
+
icon: "\u{1F3AF}",
|
|
133
|
+
version: 1
|
|
134
|
+
},
|
|
135
|
+
"portrait-headshot": {
|
|
136
|
+
id: "portrait-headshot",
|
|
137
|
+
title: "Portrait Headshot",
|
|
138
|
+
description: "Professional headshots perfect for LinkedIn and business use",
|
|
139
|
+
category: "image-generation",
|
|
140
|
+
tier: "free",
|
|
141
|
+
template: "A professional {style} headshot of a {subject}, {background} background, {lighting} lighting, confident expression, business attire",
|
|
142
|
+
variables: [
|
|
143
|
+
{
|
|
144
|
+
name: "subject",
|
|
145
|
+
label: "Subject",
|
|
146
|
+
type: "text",
|
|
147
|
+
required: true,
|
|
148
|
+
placeholder: "e.g., business executive, entrepreneur"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
name: "style",
|
|
152
|
+
label: "Style",
|
|
153
|
+
type: "select",
|
|
154
|
+
options: ["corporate", "creative", "casual", "formal"],
|
|
155
|
+
default: "corporate"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: "background",
|
|
159
|
+
label: "Background",
|
|
160
|
+
type: "select",
|
|
161
|
+
options: ["neutral", "office", "outdoor", "studio"],
|
|
162
|
+
default: "neutral"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: "lighting",
|
|
166
|
+
label: "Lighting",
|
|
167
|
+
type: "select",
|
|
168
|
+
options: ["natural", "studio", "window", "soft"],
|
|
169
|
+
default: "natural"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
tags: ["portrait", "headshot", "professional", "business"],
|
|
173
|
+
icon: "\u{1F464}",
|
|
174
|
+
version: 1
|
|
175
|
+
},
|
|
176
|
+
"product-demo": {
|
|
177
|
+
id: "product-demo",
|
|
178
|
+
title: "Product Demo Video",
|
|
179
|
+
description: "Engaging product demonstration videos that showcase features",
|
|
180
|
+
category: "video-generation",
|
|
181
|
+
tier: "free",
|
|
182
|
+
template: "Create a {duration} product demo video for {product}, highlighting {features}, {style} presentation, clear call-to-action",
|
|
183
|
+
variables: [
|
|
184
|
+
{
|
|
185
|
+
name: "product",
|
|
186
|
+
label: "Product",
|
|
187
|
+
type: "text",
|
|
188
|
+
required: true,
|
|
189
|
+
placeholder: "e.g., smartphone app"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
name: "features",
|
|
193
|
+
label: "Key Features",
|
|
194
|
+
type: "text",
|
|
195
|
+
required: true,
|
|
196
|
+
placeholder: "e.g., ease of use, speed"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
name: "duration",
|
|
200
|
+
label: "Duration",
|
|
201
|
+
type: "select",
|
|
202
|
+
options: ["15-second", "30-second", "60-second"],
|
|
203
|
+
default: "30-second"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
name: "style",
|
|
207
|
+
label: "Presentation Style",
|
|
208
|
+
type: "select",
|
|
209
|
+
options: ["animated", "live-action", "screen-recording", "hybrid"],
|
|
210
|
+
default: "animated"
|
|
211
|
+
}
|
|
212
|
+
],
|
|
213
|
+
tags: ["product", "demo", "video", "marketing"],
|
|
214
|
+
icon: "\u{1F3A5}",
|
|
215
|
+
version: 1
|
|
216
|
+
},
|
|
217
|
+
"social-clip": {
|
|
218
|
+
id: "social-clip",
|
|
219
|
+
title: "Social Media Clip",
|
|
220
|
+
description: "Short-form video content optimized for social platforms",
|
|
221
|
+
category: "video-generation",
|
|
222
|
+
tier: "free",
|
|
223
|
+
template: "A {duration} social media clip about {topic}, {style} style, {platform} optimized, engaging hook, trending format",
|
|
224
|
+
variables: [
|
|
225
|
+
{
|
|
226
|
+
name: "topic",
|
|
227
|
+
label: "Topic/Theme",
|
|
228
|
+
type: "text",
|
|
229
|
+
required: true,
|
|
230
|
+
placeholder: "e.g., cooking tips, workout routine"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
name: "duration",
|
|
234
|
+
label: "Duration",
|
|
235
|
+
type: "select",
|
|
236
|
+
options: ["15 seconds", "30 seconds", "60 seconds"],
|
|
237
|
+
default: "30 seconds"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
name: "style",
|
|
241
|
+
label: "Video Style",
|
|
242
|
+
type: "select",
|
|
243
|
+
options: ["educational", "entertaining", "inspiring", "promotional"],
|
|
244
|
+
default: "entertaining"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: "platform",
|
|
248
|
+
label: "Target Platform",
|
|
249
|
+
type: "select",
|
|
250
|
+
options: ["TikTok", "Instagram Reels", "YouTube Shorts", "Twitter"],
|
|
251
|
+
default: "Instagram Reels"
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
tags: ["social", "short-form", "viral", "content"],
|
|
255
|
+
icon: "\u{1F4F9}",
|
|
256
|
+
version: 1
|
|
257
|
+
},
|
|
258
|
+
"ugc-testimonial": {
|
|
259
|
+
id: "ugc-testimonial",
|
|
260
|
+
title: "UGC Testimonial",
|
|
261
|
+
description: "Authentic user-generated content style testimonial videos",
|
|
262
|
+
category: "video-generation",
|
|
263
|
+
tier: "free",
|
|
264
|
+
template: "A {style} UGC testimonial video for {product}, featuring {scenario}, authentic {tone} delivery, mobile-first format",
|
|
265
|
+
variables: [
|
|
266
|
+
{
|
|
267
|
+
name: "product",
|
|
268
|
+
label: "Product/Service",
|
|
269
|
+
type: "text",
|
|
270
|
+
required: true,
|
|
271
|
+
placeholder: "e.g., skincare routine"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
name: "scenario",
|
|
275
|
+
label: "Usage Scenario",
|
|
276
|
+
type: "text",
|
|
277
|
+
required: true,
|
|
278
|
+
placeholder: "e.g., morning routine"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
name: "style",
|
|
282
|
+
label: "UGC Style",
|
|
283
|
+
type: "select",
|
|
284
|
+
options: ["before-after", "day-in-life", "review", "tutorial"],
|
|
285
|
+
default: "review"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
name: "tone",
|
|
289
|
+
label: "Delivery Tone",
|
|
290
|
+
type: "select",
|
|
291
|
+
options: ["casual", "enthusiastic", "honest", "expert"],
|
|
292
|
+
default: "casual"
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
tags: ["ugc", "testimonial", "authentic", "conversion"],
|
|
296
|
+
icon: "\u{1F5E3}\uFE0F",
|
|
297
|
+
version: 1
|
|
298
|
+
},
|
|
299
|
+
"blog-outline": {
|
|
300
|
+
id: "blog-outline",
|
|
301
|
+
title: "Blog Post Outline",
|
|
302
|
+
description: "Comprehensive blog post outlines for content marketing",
|
|
303
|
+
category: "content",
|
|
304
|
+
tier: "free",
|
|
305
|
+
template: "Create a detailed blog post outline about {topic} for {audience}, {tone} tone, {format} format, SEO-optimized structure",
|
|
306
|
+
variables: [
|
|
307
|
+
{
|
|
308
|
+
name: "topic",
|
|
309
|
+
label: "Blog Topic",
|
|
310
|
+
type: "text",
|
|
311
|
+
required: true,
|
|
312
|
+
placeholder: "e.g., AI in marketing"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
name: "audience",
|
|
316
|
+
label: "Target Audience",
|
|
317
|
+
type: "select",
|
|
318
|
+
options: ["beginners", "professionals", "experts", "general"],
|
|
319
|
+
default: "professionals"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
name: "tone",
|
|
323
|
+
label: "Writing Tone",
|
|
324
|
+
type: "select",
|
|
325
|
+
options: ["informative", "conversational", "authoritative", "friendly"],
|
|
326
|
+
default: "informative"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
name: "format",
|
|
330
|
+
label: "Content Format",
|
|
331
|
+
type: "select",
|
|
332
|
+
options: ["how-to", "listicle", "guide", "analysis"],
|
|
333
|
+
default: "how-to"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
tags: ["blog", "content", "seo", "marketing"],
|
|
337
|
+
icon: "\u{1F4DD}",
|
|
338
|
+
version: 1
|
|
339
|
+
},
|
|
340
|
+
"social-caption": {
|
|
341
|
+
id: "social-caption",
|
|
342
|
+
title: "Social Media Caption",
|
|
343
|
+
description: "Engaging captions that drive interaction and engagement",
|
|
344
|
+
category: "content",
|
|
345
|
+
tier: "free",
|
|
346
|
+
template: "Write a {style} caption for {platform} about {topic}, {tone} voice, include {cta}, optimized for engagement",
|
|
347
|
+
variables: [
|
|
348
|
+
{
|
|
349
|
+
name: "topic",
|
|
350
|
+
label: "Post Topic",
|
|
351
|
+
type: "text",
|
|
352
|
+
required: true,
|
|
353
|
+
placeholder: "e.g., new product launch"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
name: "platform",
|
|
357
|
+
label: "Social Platform",
|
|
358
|
+
type: "select",
|
|
359
|
+
options: ["Instagram", "Facebook", "Twitter", "LinkedIn"],
|
|
360
|
+
default: "Instagram"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
name: "style",
|
|
364
|
+
label: "Caption Style",
|
|
365
|
+
type: "select",
|
|
366
|
+
options: ["storytelling", "promotional", "educational", "humorous"],
|
|
367
|
+
default: "storytelling"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
name: "tone",
|
|
371
|
+
label: "Brand Voice",
|
|
372
|
+
type: "select",
|
|
373
|
+
options: ["casual", "professional", "playful", "inspirational"],
|
|
374
|
+
default: "casual"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
name: "cta",
|
|
378
|
+
label: "Call-to-Action",
|
|
379
|
+
type: "select",
|
|
380
|
+
options: ["like & comment", "share your story", "visit link", "tag friends"],
|
|
381
|
+
default: "like & comment"
|
|
382
|
+
}
|
|
383
|
+
],
|
|
384
|
+
tags: ["social", "caption", "engagement", "copywriting"],
|
|
385
|
+
icon: "\u{1F4AC}",
|
|
386
|
+
version: 1
|
|
387
|
+
},
|
|
388
|
+
"email-sequence": {
|
|
389
|
+
id: "email-sequence",
|
|
390
|
+
title: "Email Marketing Sequence",
|
|
391
|
+
description: "Effective email sequences for nurturing and conversion",
|
|
392
|
+
category: "content",
|
|
393
|
+
tier: "free",
|
|
394
|
+
template: "Design a {type} email sequence for {goal}, {length} emails, {audience} audience, {tone} approach, conversion-focused",
|
|
395
|
+
variables: [
|
|
396
|
+
{
|
|
397
|
+
name: "type",
|
|
398
|
+
label: "Sequence Type",
|
|
399
|
+
type: "select",
|
|
400
|
+
options: ["welcome", "nurture", "sales", "onboarding"],
|
|
401
|
+
default: "welcome"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
name: "goal",
|
|
405
|
+
label: "Primary Goal",
|
|
406
|
+
type: "text",
|
|
407
|
+
required: true,
|
|
408
|
+
placeholder: "e.g., increase product adoption"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
name: "length",
|
|
412
|
+
label: "Number of Emails",
|
|
413
|
+
type: "select",
|
|
414
|
+
options: ["3-email", "5-email", "7-email", "10-email"],
|
|
415
|
+
default: "5-email"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
name: "audience",
|
|
419
|
+
label: "Target Audience",
|
|
420
|
+
type: "select",
|
|
421
|
+
options: ["new subscribers", "existing customers", "leads", "inactive users"],
|
|
422
|
+
default: "new subscribers"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
name: "tone",
|
|
426
|
+
label: "Email Tone",
|
|
427
|
+
type: "select",
|
|
428
|
+
options: ["friendly", "professional", "urgent", "educational"],
|
|
429
|
+
default: "friendly"
|
|
430
|
+
}
|
|
431
|
+
],
|
|
432
|
+
tags: ["email", "marketing", "sequence", "automation"],
|
|
433
|
+
icon: "\u{1F4E7}",
|
|
434
|
+
version: 1
|
|
435
|
+
}
|
|
436
|
+
};
|
|
437
|
+
var PROMPT_CATEGORIES = [
|
|
438
|
+
{
|
|
439
|
+
id: "image-generation",
|
|
440
|
+
name: "Image Generation",
|
|
441
|
+
description: "Prompts for creating AI-generated images",
|
|
442
|
+
icon: "\u{1F3A8}",
|
|
443
|
+
count: 4
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
id: "video-generation",
|
|
447
|
+
name: "Video Generation",
|
|
448
|
+
description: "Prompts for creating AI-generated videos",
|
|
449
|
+
icon: "\u{1F3AC}",
|
|
450
|
+
count: 3
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
id: "content",
|
|
454
|
+
name: "Content Creation",
|
|
455
|
+
description: "Prompts for text and content generation",
|
|
456
|
+
icon: "\u270D\uFE0F",
|
|
457
|
+
count: 3
|
|
458
|
+
}
|
|
459
|
+
];
|
|
460
|
+
function getAllPrompts() {
|
|
461
|
+
return Object.values(PROMPT_REGISTRY);
|
|
462
|
+
}
|
|
463
|
+
function getPrompt(id) {
|
|
464
|
+
return PROMPT_REGISTRY[id];
|
|
465
|
+
}
|
|
466
|
+
function getPromptJson(id) {
|
|
467
|
+
try {
|
|
468
|
+
const category = PROMPT_REGISTRY[id]?.category;
|
|
469
|
+
if (!category) return void 0;
|
|
470
|
+
const promptPath = path.join(__dirname, "..", "prompts", category, `${id}.json`);
|
|
471
|
+
const jsonContent = fs.readFileSync(promptPath, "utf-8");
|
|
472
|
+
return JSON.parse(jsonContent);
|
|
473
|
+
} catch (_error) {
|
|
474
|
+
return PROMPT_REGISTRY[id];
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
function getPromptsByCategory(category) {
|
|
478
|
+
return Object.values(PROMPT_REGISTRY).filter((p) => p.category === category);
|
|
479
|
+
}
|
|
480
|
+
function searchPromptsByTag(tag) {
|
|
481
|
+
return Object.values(PROMPT_REGISTRY).filter(
|
|
482
|
+
(p) => p.tags.some((t) => t.toLowerCase().includes(tag.toLowerCase()))
|
|
483
|
+
);
|
|
484
|
+
}
|
|
485
|
+
function getPromptCategories() {
|
|
486
|
+
return PROMPT_CATEGORIES;
|
|
487
|
+
}
|
|
488
|
+
export {
|
|
489
|
+
PROMPT_CATEGORIES,
|
|
490
|
+
PROMPT_REGISTRY,
|
|
491
|
+
getAllPrompts,
|
|
492
|
+
getPrompt,
|
|
493
|
+
getPromptCategories,
|
|
494
|
+
getPromptJson,
|
|
495
|
+
getPromptsByCategory,
|
|
496
|
+
searchPromptsByTag
|
|
497
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"prompts": [
|
|
3
|
+
{
|
|
4
|
+
"slug": "product-photography",
|
|
5
|
+
"title": "Product Photography",
|
|
6
|
+
"description": "Professional product shots perfect for e-commerce and marketing",
|
|
7
|
+
"category": "image-generation",
|
|
8
|
+
"tags": ["product", "ecommerce", "photography", "commercial"],
|
|
9
|
+
"tier": "free",
|
|
10
|
+
"icon": "📦"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"slug": "social-media-post",
|
|
14
|
+
"title": "Social Media Post",
|
|
15
|
+
"description": "Eye-catching images optimized for social media engagement",
|
|
16
|
+
"category": "image-generation",
|
|
17
|
+
"tags": ["social", "media", "marketing", "engagement"],
|
|
18
|
+
"tier": "free",
|
|
19
|
+
"icon": "📱"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"slug": "brand-ad",
|
|
23
|
+
"title": "Brand Advertisement",
|
|
24
|
+
"description": "Professional brand advertisements that convert and engage",
|
|
25
|
+
"category": "image-generation",
|
|
26
|
+
"tags": ["brand", "advertising", "marketing", "commercial"],
|
|
27
|
+
"tier": "free",
|
|
28
|
+
"icon": "🎯"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"slug": "portrait-headshot",
|
|
32
|
+
"title": "Portrait Headshot",
|
|
33
|
+
"description": "Professional headshots perfect for LinkedIn and business use",
|
|
34
|
+
"category": "image-generation",
|
|
35
|
+
"tags": ["portrait", "headshot", "professional", "business"],
|
|
36
|
+
"tier": "free",
|
|
37
|
+
"icon": "👤"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"slug": "product-demo",
|
|
41
|
+
"title": "Product Demo Video",
|
|
42
|
+
"description": "Engaging product demonstration videos that showcase features",
|
|
43
|
+
"category": "video-generation",
|
|
44
|
+
"tags": ["product", "demo", "video", "marketing"],
|
|
45
|
+
"tier": "free",
|
|
46
|
+
"icon": "🎥"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"slug": "social-clip",
|
|
50
|
+
"title": "Social Media Clip",
|
|
51
|
+
"description": "Short-form video content optimized for social platforms",
|
|
52
|
+
"category": "video-generation",
|
|
53
|
+
"tags": ["social", "short-form", "viral", "content"],
|
|
54
|
+
"tier": "free",
|
|
55
|
+
"icon": "📹"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"slug": "ugc-testimonial",
|
|
59
|
+
"title": "UGC Testimonial",
|
|
60
|
+
"description": "Authentic user-generated content style testimonial videos",
|
|
61
|
+
"category": "video-generation",
|
|
62
|
+
"tags": ["ugc", "testimonial", "authentic", "conversion"],
|
|
63
|
+
"tier": "free",
|
|
64
|
+
"icon": "🗣️"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"slug": "blog-outline",
|
|
68
|
+
"title": "Blog Post Outline",
|
|
69
|
+
"description": "Comprehensive blog post outlines for content marketing",
|
|
70
|
+
"category": "content",
|
|
71
|
+
"tags": ["blog", "content", "seo", "marketing"],
|
|
72
|
+
"tier": "free",
|
|
73
|
+
"icon": "📝"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"slug": "social-caption",
|
|
77
|
+
"title": "Social Media Caption",
|
|
78
|
+
"description": "Engaging captions that drive interaction and engagement",
|
|
79
|
+
"category": "content",
|
|
80
|
+
"tags": ["social", "caption", "engagement", "copywriting"],
|
|
81
|
+
"tier": "free",
|
|
82
|
+
"icon": "💬"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"slug": "email-sequence",
|
|
86
|
+
"title": "Email Marketing Sequence",
|
|
87
|
+
"description": "Effective email sequences for nurturing and conversion",
|
|
88
|
+
"category": "content",
|
|
89
|
+
"tags": ["email", "marketing", "sequence", "automation"],
|
|
90
|
+
"tier": "free",
|
|
91
|
+
"icon": "📧"
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@genfeedai/prompts",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"license": "AGPL-3.0",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/genfeedai/core.git",
|
|
8
|
+
"directory": "packages/prompts"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public",
|
|
12
|
+
"registry": "https://registry.npmjs.org/"
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js",
|
|
20
|
+
"require": "./dist/index.cjs"
|
|
21
|
+
},
|
|
22
|
+
"./prompts/*": "./prompts/*"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"prompts",
|
|
27
|
+
"metadata"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
31
|
+
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
|
|
32
|
+
"prepublishOnly": "bun run build",
|
|
33
|
+
"test": "bun test __tests__/*.spec.ts"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@genfeedai/types": "workspace:*",
|
|
37
|
+
"tsup": "8.4.0",
|
|
38
|
+
"typescript": "5.9.3"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "blog-outline",
|
|
3
|
+
"title": "Blog Post Outline",
|
|
4
|
+
"description": "Comprehensive blog post outlines for content marketing",
|
|
5
|
+
"category": "content",
|
|
6
|
+
"tier": "free",
|
|
7
|
+
"template": "Create a detailed blog post outline about {topic} for {audience}, {tone} tone, {format} format, SEO-optimized structure",
|
|
8
|
+
"variables": [
|
|
9
|
+
{
|
|
10
|
+
"name": "topic",
|
|
11
|
+
"label": "Blog Topic",
|
|
12
|
+
"type": "text",
|
|
13
|
+
"required": true,
|
|
14
|
+
"placeholder": "e.g., AI in marketing"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "audience",
|
|
18
|
+
"label": "Target Audience",
|
|
19
|
+
"type": "select",
|
|
20
|
+
"options": ["beginners", "professionals", "experts", "general"],
|
|
21
|
+
"default": "professionals"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "tone",
|
|
25
|
+
"label": "Writing Tone",
|
|
26
|
+
"type": "select",
|
|
27
|
+
"options": ["informative", "conversational", "authoritative", "friendly"],
|
|
28
|
+
"default": "informative"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "format",
|
|
32
|
+
"label": "Content Format",
|
|
33
|
+
"type": "select",
|
|
34
|
+
"options": ["how-to", "listicle", "guide", "analysis"],
|
|
35
|
+
"default": "how-to"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"tags": ["blog", "content", "seo", "marketing"],
|
|
39
|
+
"icon": "📝",
|
|
40
|
+
"version": 1,
|
|
41
|
+
"createdAt": "2025-01-31T00:00:00.000Z",
|
|
42
|
+
"updatedAt": "2025-01-31T00:00:00.000Z"
|
|
43
|
+
}
|