-
Notifications
You must be signed in to change notification settings - Fork 123
/
prompts.ts
1122 lines (1046 loc) · 40.3 KB
/
prompts.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { Model } from "@/api/ai";
import { IconName, Icons } from "@raycast/icons";
import { SVGProps } from "react";
export type Prompt = {
id: string;
title: string;
prompt: string;
icon: IconName;
creativity: "none" | "low" | "medium" | "high" | "maximum";
model?: Model;
date: `${number}-${number}-${number}`;
author?: {
name: string;
link?: string;
};
};
function generateSelection(selectionWord: string, resultWord: string) {
return `\n\n${selectionWord}: {selection}\n\n${resultWord}:`;
}
const browser: Prompt[] = [
{
id: "inspect-website",
title: "Inspect Website",
prompt: `Describe me the tech stack used based on the following HTML document:
{browser-tab format="html"}
Consider every element of a tech stack, from frameworks to APIs through tools (analytics, monitoring, etc.). Include which fonts are used. Don't make any guesses on what’s used if there’s no evidence.`,
creativity: "low",
date: "2024-03-18",
icon: "globe-01",
model: "anthropic-claude-haiku",
},
{
id: "summarize-youtube-video",
title: "Summarize YouTube Video",
prompt: `Create a summary of a YouTube video using its transcript. You will use the following template:
"""
## Summary
{Multiple sentences summarising the YouTube video}
## Notes
{Bullet points that summarize the key points or important moments from the video’s transcript with explanations}
## Quotes
{Extract the best sentences from the transcript in a list}
"""
Transcript: {browser-tab}`,
creativity: "low",
model: "anthropic-claude-haiku",
date: "2024-03-18",
icon: "play-filled",
},
];
const code: Prompt[] = [
{
id: "json-data",
title: "Natural Language Processing",
prompt:
`Act as a natural language processing software. Analyze the given text and return me only a parsable and minified JSON object.\n
Here's the JSON Object structure:
{
"key1": /* Some instructions */,
"key2": /* Some instructions */,
}
Here are the rules you must follow:
- You MUST return a valid, parsable JSON object.
- More rules…
Here are some examples to help you out:
- Example 1…
- Example 2…` + generateSelection("Text", "JSON Data"),
creativity: "low",
date: "2023-12-22",
icon: "code",
},
{
id: "css-to-tailwind",
title: "Convert CSS code to Tailwind Classes",
prompt:
"Convert the following code into Tailwind CSS classes and give me the result in a code block. Make sure to remove any browser prefixes. Only give me what I can put into my HTML elements `class` properties." +
generateSelection("Code", "Tailwind CSS classes"),
creativity: "low",
date: "2023-06-06",
icon: "code",
},
{
id: "linux-terminal",
title: "Linux Terminal",
prompt:
"Act as a linux terminal. Execute the following code and reply with what the terminal should show. Only reply with the terminal output inside one unique code block, and nothing else. Do not write explanations." +
generateSelection("Code", "Terminal"),
creativity: "medium",
date: "2023-06-06",
icon: "code",
},
{
id: "code-interpreter",
title: "Code Interpreter",
prompt:
"Act as a {argument name=language} interpreter. Execute the {argument name=language} code and reply with the output. Do not provide any explanations." +
generateSelection("Code", "Output"),
creativity: "medium",
date: "2023-06-06",
icon: "code",
},
{
id: "git-commands",
title: "Git Commands",
prompt:
"Translate the text to Git commands. Only reply one unique code block, and nothing else. Do not write explanations." +
generateSelection("Text", "Git commands"),
creativity: "low",
date: "2023-06-06",
icon: "code",
},
{
id: "regex-generator",
title: "Regex Generator",
prompt:
"Generate a regular expression that match the specific patterns in the text. Return the regular expression in a format that can be easily copied and pasted into a regex-enabled text editor or programming language. Then, give clear and understandable explanations on what the regex is doing and how it is constructed." +
generateSelection("Text", "Regex"),
creativity: "medium",
date: "2023-06-06",
icon: "code",
},
{
id: "convert-html-to-markdown",
title: "Convert HTML to Markdown",
prompt: "Convert the HTML code to Markdown." + generateSelection("HTML code", "Markdown"),
creativity: "none",
date: "2023-06-06",
icon: "code",
},
{
id: "add-debug-statements",
title: "Add Debug Statements",
prompt:
"Act as a software engineer debugging its code. Add debug statements to the code. Add as many as necessary to make debugging easier." +
generateSelection("Code", "Debugged code"),
creativity: "medium",
date: "2023-06-06",
icon: "bug",
},
{
id: "write-tests",
title: "Write Tests",
prompt:
"As a software developer, I am currently working on a project using Jest, TypeScript, and React Testing Library. I would like you to help me generate unit tests for the given code. Analyze the given code and provide a single unit test with the necessary imports, without any additional explanations or comments, unless absolutely necessary. Avoid repeating imports and mocks you've mentioned already.\n\nIf I say 'next,' please give me another test for the same code. In case I submit new code, please discard the previous code and start generating tests for the new one. Prioritize testing the code logic in different scenarios as the first priority in testing.\n\nIf I provide specific instructions or ask you to test a particular part or scenario, please follow those instructions and generate the unit test accordingly. If I send you a Jest error, fix the problem and only return the lines which need to be changed in a readable format. Please format the output as a unique code block." +
generateSelection("Code", "Output"),
creativity: "medium",
date: "2023-06-06",
icon: "bug",
author: {
name: "Alireza Sheikholmolouki",
link: "https://github.com/Alireza29675",
},
},
{
id: "write-docstring",
title: "Write Docstring",
prompt:
"Write a docstring for the function. Make sure the documentation is detailed." +
generateSelection("Function", "Docstring"),
creativity: "low",
date: "2023-06-06",
icon: "blank-document",
},
{
id: "convert-to-crontab",
title: "Convert to Crontab Schedule",
prompt: `Act as a knowledgable unix server admin. Given a cronjob schedule in natural language, respond with the correct crontab format for this exact schedule. Double-check your results, ensure it's valid crontab syntax, and respond with nothing but the crontab format.
Example Schedule: at 5:30am every tuesday in may
Expected Crontab: 30 5 * 5 2
Schedule: {argument name="schedule"}
Crontab: `,
creativity: "low",
date: "2024-04-21",
icon: "code",
author: {
name: "Philipp Daun",
link: "https://github.com/daun",
},
},
];
const communication: Prompt[] = [
{
id: "translate-to-language",
title: "Translate to Language",
prompt: "Translate the text in {argument name=language}." + generateSelection("Text", "Translation"),
creativity: "low",
date: "2023-06-06",
icon: "speech-bubble",
},
{
id: "decline-mail",
title: "Decline this Mail",
prompt:
"Write a polite and friendly email to decline the following email. The email should be written in a way that it can be sent to the recipient." +
generateSelection("Email", "Declined email"),
creativity: "low",
date: "2023-06-06",
icon: "envelope",
},
{
id: "ask-question",
title: "Ask Question",
prompt:
"Rewrite the following text as a concise and friendly message, phrased as a question. This should be written in a way that it can be sent in a chat application like Slack." +
generateSelection("Text", "Question"),
creativity: "low",
date: "2023-06-06",
icon: "question-mark-circle",
},
{
id: "bluf-message",
title: "BLUF Message",
prompt:
`Rewrite the following text as a bottom line up front (BLUF) message formatted in Markdown. The format of the message should be made of two parts:
- The first part should be written in bold and convey the message's key information. It can either be a statement or a question. Don't lose any important detail in this part.
- The second part should be put onto a new line. This should give more details and provide some background about the message.
Make sure the message stays concise and clear so that readers don't lose extra time reading it.` +
generateSelection("Text", "Rewritten text"),
creativity: "low",
date: "2023-06-06",
icon: "speech-bubble-active",
},
{
id: "summarize-long-email",
title: "Summarize Long Emails",
prompt:
`Help me summarize the key points from the email text into a maximum of 5 bullet points, each preferably one sentence, and at most two sentences. Also, identify any action items requested of me.
Key points:
<one-liner one>
<one-liner two>
...
Asked from you:
<action point one>
<action point two>
If there are no action items, the "Asked from you" section will be left empty.` + generateSelection("Email", "Output"),
creativity: "low",
date: "2023-06-06",
icon: "envelope",
author: {
name: "Alireza Sheikholmolouki",
link: "https://github.com/Alireza29675",
},
},
{
id: "debate-controversial-topic",
title: "Debate a Topic",
prompt:
"Take a stance on the topic and {argument default=for} it. Construct a convincing argument and provide evidence to support your stance." +
generateSelection("Topic", "Argument"),
creativity: "high",
date: "2023-06-06",
icon: "speech-bubble-important",
},
{
id: "create-calendar-event",
title: "Create a Calendar Event",
prompt:
"Create a calendar event in ICS format based on the information. Include the start time, the end time, the location, all attendees, and a summary. If no end time is provided, assume the event will be one hour long. Add a reminder 1 hour before the event starts and 1 day before the event starts. Don't include the PRODID property. Only output the code block. Don't add any comments." +
generateSelection("Information", "ICS"),
creativity: "medium",
date: "2023-06-06",
icon: "calendar",
author: {
name: "Roel Van Gils",
link: "https://github.com/roelvangils",
},
},
{
id: "break-up-wall-of-text",
title: "Break Up Wall of Text",
prompt: `Take the wall of text below and write a cleaned up version inserting naturally appropriate paragraph breaks. It's important that the text does not change, only the whitespace.
Wall of text:
{selection}
Cleaned up version:
`,
creativity: "none",
date: "2023-11-06",
icon: "paragraph",
},
{
id: "summarize-and-sympathize",
title: "Summarize and sympathize text",
prompt:
"Please summarize and omit the following. Then express your empathy." + generateSelection("Text", "Sympathy"),
creativity: "low",
date: "2023-06-12",
icon: "speech-bubble",
author: {
name: "nagauta",
link: "https://github.com/nagauta",
},
},
{
id: "fill-the-gap",
title: "Fill in the gap",
prompt:
`Use the following instructions to rewrite the text
Give me 5 words that most accurarely fill in the blank in a sentence.
The blank is represented by a few underscores, such as ___, or ______.
So for example: "I'm super ___ to announce my new product".
1. I'm super happy to announce my new product
2. I'm super excited to announce my new product
3. I'm super pumped to announce my new product
4. I'm super proud to announce my new product
5. I'm super nervous to announce my new product
Now do the same for this sentece:` + generateSelection("Text", "Rewritten text"),
creativity: "high",
date: "2023-08-03",
icon: "speech-bubble",
author: {
name: "peduarte",
link: "https://github.com/peduarte",
},
},
];
const image: Prompt[] = [
{
id: "youtube-script",
title: "Create a YouTube Script",
prompt:
"Create a compelling and captivating YouTube script based on the text. Make sure to include B-Rolls in the script. Make the script as long as necessary to make a video of {argument name=minutes default=10} minutes." +
generateSelection("Text", "Script"),
creativity: "high",
date: "2023-06-06",
icon: "image",
},
{
id: "midjourney-prompt-generator",
title: "Midjourney Prompt Generator",
prompt:
`Based on the text, generate an "imagine prompt" that contains a maximum word count of 1,500 words that will be used as input for an AI-based text to image program called MidJourney based on the following parameters: /imagine prompt: [1], [2], [3], [4], [5], [6]
In this prompt, [1] should be replaced with a random subject and [2] should be a short concise description about that subject. Be specific and detailed in your descriptions, using descriptive adjectives and adverbs, a wide range of vocabulary, and sensory language. Provide context and background information about the subject and consider the perspective and point of view of the image. Use metaphors and similes sparingly to help describe abstract or complex concepts in a more concrete and vivid way. Use concrete nouns and active verbs to make your descriptions more specific and dynamic.
[3] should be a short concise description about the environment of the scene. Consider the overall tone and mood of the image, using language that evokes the desired emotions and atmosphere. Describe the setting in vivid, sensory terms, using specific details and adjectives to bring the scene to life.
[4] should be a short concise description about the mood of the scene. Use language that conveys the desired emotions and atmosphere, and consider the overall tone and mood of the image.
[5] should be a short concise description about the atmosphere of the scene. Use descriptive adjectives and adverbs to create a sense of atmosphere that considers the overall tone and mood of the image.
[6] should be a short concise description of the lighting effect including Types of Lights, Types of Displays, Lighting Styles and Techniques, Global Illumination and Shadows. Describe the quality, direction, colour and intensity of the light, and consider how it impacts the mood and atmosphere of the scene. Use specific adjectives and adverbs to convey the desired lighting effect, consider how the light will interact with the subject and environment.
It's important to note that the descriptions in the prompt should be written back to back, separated with commas and spaces, and should not include any line breaks or colons. Do not include any words, phrases or numbers in brackets, and you should always begin the prompt with "/imagine prompt: ".
Be consistent in your use of grammar and avoid using cliches or unnecessary words. Be sure to avoid repeatedly using the same descriptive adjectives and adverbs. Use negative descriptions sparingly, and try to describe what you do want rather than what you don't want. Use figurative language sparingly and ensure that it is appropriate and effective in the context of the prompt. Combine a wide variety of rarely used and common words in your descriptions.
The "imagine prompt" should strictly contain under 1,500 words. Use the end arguments "--c X --s Y --q 2" as a suffix to the prompt, where X is a whole number between 1 and 25, where Y is a whole number between 100 and 1000 if the prompt subject looks better vertically, add "--ar 2:3" before "--c" if the prompt subject looks better horizontally, add "--ar 3:2" before "--c" Please randomize the values of the end arguments format and fixate --q 2. Please do not use double quotation marks or punctuation marks. Please use randomized end suffix format.` +
generateSelection("Text", "Midjourney Prompt"),
creativity: "high",
date: "2023-06-06",
icon: "image",
},
{
id: "generate-icons",
title: "Generate Icons",
prompt:
"Generate base64 data URIs of 100x100 SVG icons representing the text. Do not provide any commentary other than the list of data URIs as markdown images. For each icon, explain how it relates to the text." +
generateSelection("Text", "Icons"),
creativity: "maximum",
date: "2023-06-06",
icon: "image",
author: {
name: "Stephen Kaplan",
link: "https://github.com/SKaplanOfficial",
},
},
];
const writing: Prompt[] = [
{
id: "write-story",
title: "Write a Story",
prompt:
"Write a story based on the text. Make the story engaging. The story shouldn't be more than {argument name=number default=500} words." +
generateSelection("Text", "Story"),
creativity: "high",
date: "2023-06-06",
icon: "pencil",
},
{
id: "blog-post",
title: "Write a Blog Post",
prompt:
"Write a blog post on the topic. Don't use more than {argument name=number default=1000} words" +
generateSelection("Topic", "Blog post"),
creativity: "high",
date: "2023-06-06",
icon: "pencil",
},
{
id: "twitter-thread",
title: "Twitter Thread",
prompt:
"Convert the text into a list of tweets (= Twitter thread). The first tweet should be clear and engaging. Each tweet should flow smoothly into the next, building anticipation and momentum. The last tweet should be impactful so that the user can reflect on the whole thread. Make sure each tweet doesn't exceed 280 characters. Don't add a single hashtag to any of the tweets." +
generateSelection("Text", "Tweets"),
creativity: "medium",
date: "2023-06-06",
icon: "bird",
},
];
const music: Prompt[] = [
{
id: "write-a-song",
title: "Write a Song",
prompt:
"Write a song based on the given text. The song should have a clear melody, lyrics that tell a story, and a memorable chorus. The mood of the song should be {argument name=mood}." +
generateSelection("Text", "Song"),
creativity: "high",
date: "2023-06-06",
icon: "music",
},
{
id: "playlist-maker",
title: "Playlist Maker",
prompt:
"Act as a song recommender. Based on the given song, create a playlist of 10 similar songs. Provide a name and description for the playlist. Do not choose songs that are the same name or artist. Do not include the original song in the playlist." +
generateSelection("Song", "Playlist"),
creativity: "high",
date: "2023-06-06",
icon: "music",
},
];
const ideas: Prompt[] = [
{
id: "write-alternatives",
title: "Write 10 Alternatives",
prompt:
"Give me 10 alternative versions of the text. Ensure that the alternatives are all distinct from one another." +
generateSelection("Text", "Alternatives"),
creativity: "high",
date: "2023-06-06",
icon: "shuffle",
},
{
id: "project-ideas",
title: "Project Ideas",
prompt:
"Brainstorm 5 project ideas based on the text. Make sure the ideas are distinct from one another." +
generateSelection("Text", "Ideas"),
creativity: "high",
date: "2023-06-06",
icon: "shuffle",
author: {
name: "Stephen Kaplan",
link: "https://github.com/SKaplanOfficial",
},
},
{
id: "create-analogies",
title: "Create Analogies",
prompt:
"Develop {argument name=number default=3} creative analogies or metaphors that help explain the main idea of the text." +
generateSelection("Text", "Analogies"),
creativity: "high",
date: "2023-06-06",
icon: "light-bulb",
},
];
const fun: Prompt[] = [
{
id: "act-as-a-character",
title: "Act As a Character",
prompt:
"Rewrite the text as if you were {argument name=character default=yoda}. Use {argument name=character default=yoda}'s tone, manner and vocabulary. You must know all of the knowledge of {argument name=character default=yoda}." +
generateSelection("Text", "Rewritten text"),
creativity: "medium",
date: "2023-06-06",
icon: "person",
},
{
id: "drunkgpt",
title: "DrunkGPT",
prompt: "Rewrite the text as if you were drunk." + generateSelection("Text", "Rewritten text"),
creativity: "medium",
date: "2023-06-06",
icon: "game-controller",
},
];
const misc: Prompt[] = [
{
id: "tldr",
title: "TL;DR",
prompt:
"Extract all facts from the text and summarize it in all relevant aspects in up to seven bullet points and a 1-liner summary. Pick a good matching emoji for every bullet point." +
generateSelection("Text", "Summary"),
creativity: "low",
date: "2023-06-06",
icon: "bullet-points",
},
{
id: "title-case",
title: "Title Case",
prompt: "Convert {selection} to title case.",
creativity: "low",
date: "2023-06-06",
icon: "text",
},
{
id: "emoji-suggestion",
title: "Emoji Suggestion",
prompt:
"Suggest emojis that relate to the text. Suggest around 10 emojis and order them by relevance. Don't add any duplicates. Only respond with emojis." +
generateSelection("Text", "Emojis"),
creativity: "medium",
date: "2023-06-06",
icon: "emoji",
},
{
id: "find-synonyms",
title: "Find Synonyms",
prompt:
"Find synonyms for the word {selection} and format the output as a list. Words should exist. Do not write any explanations. Do not include the original word in the list. The list should not have any duplicates.",
creativity: "medium",
date: "2023-06-06",
icon: "text",
},
{
id: "create-recipe",
title: "Give Me a Recipe",
prompt:
"Give me a recipe based on the ingredients. The recipe should be easy to follow." +
generateSelection("Ingredients", "Recipe"),
creativity: "medium",
date: "2023-06-06",
icon: "bullet-points",
},
{
id: "create-action-items",
title: "Create Action Items",
prompt:
"Generate a markdown list of action items to complete based on the text, using a unique identifier for each item as bold headings. If there are any errors in the text, make action items to fix them. In a sublist of each item, provide a description, priority, estimated level of difficulty, and a reasonable duration for the task." +
generateSelection("Text", "Action items"),
creativity: "medium",
date: "2023-06-06",
icon: "check-circle",
author: {
name: "Stephen Kaplan",
link: "https://github.com/SKaplanOfficial",
},
},
{
id: "create-task-list",
title: "Create Task List",
prompt:
"List detailed action steps in markdown format based on the provided text. Ensure the tasks can be efficiently completed." +
generateSelection("Text", "Tasks"),
creativity: "medium",
date: "2024-05-04",
icon: "flag",
author: {
name: "Abner Shang",
link: "https://www.linkedin.com/in/abnershang/",
},
},
{
id: "extract-email-addresses",
title: "Extract Email Addresses",
prompt:
"Extract all email addresses in the text and list them using markdown. Include anything that might be an email address. If possible, provide the name of the person or company to which the email address belongs." +
generateSelection("Text", "Email addresses"),
creativity: "low",
date: "2023-06-06",
icon: "envelope",
author: {
name: "Stephen Kaplan",
link: "https://github.com/SKaplanOfficial",
},
},
{
id: "extract-phone-numbers",
title: "Extract Phone Numbers",
prompt:
"Identify all phone numbers in the text and list them using markdown. Include anything that might be a phone number. If possible, provide the name of the person or company to which the phone number belongs." +
generateSelection("Text", "Phone numbers"),
creativity: "low",
date: "2023-06-06",
icon: "phone",
author: {
name: "Stephen Kaplan",
link: "https://github.com/SKaplanOfficial",
},
},
{
id: "extract-links",
title: "Extract Links",
prompt:
"Extract links in the text. Do not provide any commentary other than the list of Markdown links." +
generateSelection("Text", "Links"),
creativity: "low",
date: "2023-06-06",
icon: "link",
author: {
name: "Stephen Kaplan",
link: "https://github.com/SKaplanOfficial",
},
},
{
id: "pros-and-cons",
title: "Pros & Cons",
prompt:
"List pros and cons for the text based on the topics mentioned. Format the response as a markdown list of pros and cons. Do not provide any other commentary." +
generateSelection("Text", "Pros & Cons"),
creativity: "low",
date: "2023-06-06",
icon: "bullet-points",
author: {
name: "Stephen Kaplan",
link: "https://github.com/SKaplanOfficial",
},
},
{
id: "eli",
title: "Explain Like I'm a…",
prompt:
`Explain the text like I’m a {argument name=identity default="5 year old"}` +
generateSelection("Text", "Explanation"),
creativity: "low",
date: "2023-06-06",
icon: "book",
},
{
id: "text-analysis",
title: "Text Analysis",
prompt:
"Analyze the text and provide insights on its tone, style, and potential audience." +
generateSelection("Text", "Analysis"),
creativity: "medium",
date: "2023-06-06",
icon: "magnifying-glass",
},
{
id: "summarize-product-reviews",
title: "Summarize Product Reviews",
prompt:
`Carefully read the product reviews below. Translate them to English and create a summary of all the reviews in English and list them as Pros and Cons in the bullet point format. Remember that each bullet point should be one sentence or at max two short sentences. Most frequently mentioned should come first in each list and every bullet point should have a percentage showing how much evidence the reviews have brought for that pro or con. For example if reviews are mentioning that product is going bad easily and they brought some reasons for what they are saying, the percentage of your confidence should go higher, but if there are some reviews which are unsure about something or there are no evidence or it's not repeated frequently then the percentage should go lower. At the end you should write a paragraph about what I should pay attention to, before buying this product. These can be some warnings or some tips or some suggestions, points that I will miss, or anything that you think is important to know before buying this product.
You can use the following template to create the summary:
'''
## Summary of the reviews
**✅ Pros:**
- Pro 1 - percentage of your confidence%
- Pro 2 - percentage of your confidence%
...
- Pro n - percentage of your confidence%
**❌ Cons:**
- Con 1 - percentage of your confidence%
- Con 2 - percentage of your confidence%
...
- Con n - percentage of your confidence%
**💡 You should pay attention to:**
- Tip 1
- Tip 2
...
- Tip n
'''` + generateSelection("Product reviews", "Summary"),
creativity: "low",
date: "2023-06-16",
icon: "tag",
author: {
name: "Alireza Sheikholmolouki",
link: "https://github.com/Alireza29675",
},
},
];
const raycast: Prompt[] = [
{
id: "improve-writing-custom",
title: "Improve Writing - Editable",
prompt:
`Act as a spelling corrector, content writer, and text improver/editor. Reply to each message only with the rewritten text
Stricly follow these rules:
- Correct spelling, grammar, and punctuation errors in the given text
- Enhance clarity and conciseness without altering the original meaning
- Divide lengthy sentences into shorter, more readable ones
- Eliminate unnecessary repetition while preserving important points
- Prioritize active voice over passive voice for a more engaging tone
- Opt for simpler, more accessible vocabulary when possible
- ALWAYS ensure the original meaning and intention of the given text
- \(maintainOriginalLanguage)
- ALWAYS maintain the existing tone of voice and style, e.g. formal, casual, polite, etc.
- NEVER surround the improved text with quotes or any additional formatting
- If the text is already well-written and requires no improvement, don't change the given text` +
generateSelection("Text", "Improved Text"),
creativity: "low",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "anthropic-claude-haiku",
},
{
id: "fix-spelling-and-grammar-custom",
title: "Fix Spelling and Grammar - Editable",
prompt:
`Act as a spelling corrector and improver. \(replyWithRewrittenText)
Strictly follow these rules:
- Correct spelling, grammar and punctuation
- \(maintainOriginalLanguage)
- NEVER surround the rewritten text with quotes
- \(maintainURLs)
- Don't change emojis` + generateSelection("Text", "Fixed Text"),
creativity: "low",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "explain-this-in-simple-terms-custom",
title: "Explain This in Simple Terms - Editable",
prompt:
`Act as a dictionary and encyclopedia, providing clear and concise explanations for given words or concepts.
Strictly follow these rules:
- Explain the text in a simple and concise language
- For a single word, provide a brief, easy-to-understand definition
- For a concept or phrase, give a concise explanation that breaks down the main ideas into simple terms
- Use examples or analogies to clarify complex topics when necessary
- Only reply with the explanation or definition
Some examples:
Text: Philosophy
Explanation: Philosophy is the study of the fundamental nature of knowledge, reality, and existence. It is a system of ideas that attempts to explain the world and our place in it. Philosophers use logic and reason to explore the meaning of life and the universe.` +
generateSelection("Text", "Explanation"),
creativity: "low",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "make-longer-custom",
title: "Make Longer - Editable",
prompt:
`Act as a professional content writer tasked with expanding a client's text while maintaining its essence and style. \(replyWithRewrittenText)
Stictly follow these rules:
- ALWAYS preserve the original tone, voice, and language of the text
- Identify and expand the most critical information and key points
- Avoid repetition
- Stay factual close to the provided text
- Keep URLs in their original format without replacing them with markdown links
- Only reply with the expanded text` + generateSelection("Text", "Expanded text"),
creativity: "high",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "make-shorter-custom",
title: "Make Shorter - Editable",
prompt:
`Act as a professional content writer tasked with shortening a client's text while maintaining its essence and style. \(replyWithRewrittenText)
Strictly follow these rules:
- ALWAYS preserve the original tone, voice, and language of the text
- Identify and retain the most critical information and key points
- Eliminate redundancies and repetitive phrases or sentences
- Keep URLs in their original format without replacing them with markdown links
- Ensure the shortened text flows smoothly and maintains coherence
- Aim to reduce the word count as much as possible without compromising the core meaning and style
- Only reply with the shortend text` + generateSelection("Text", "Shortened text"),
creativity: "low",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "anthropic-claude-haiku",
},
{
id: "change-tone-to-professional",
title: "Change Tone to Professional - Editable",
prompt:
`Act as a professional content writer and editor. \(replyWithRewrittenText)
Strictly follow these rules:
- Professional tone of voice
- Formal language
- Accurate facts
- Correct spelling, grammar, and punctuation
- Concise phrasing
- meaning unchanged
- Length retained
- \(maintainURLs)
\(maintainOriginalLanguage)` + generateSelection("Text", "Rewritten text"),
creativity: "low",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "change-tone-to-friendly",
title: "Change Tone to Friendly - Editable",
prompt:
`Act as a content writer and editor. \(replyWithRewrittenText)
Strictly follow these rules:
- Friendly and optimistic tone of voice
- Correct spelling, grammar, and punctuation
- Meaning unchanged
- Length retained
- \(maintainURLs)
- \(maintainOriginalLanguage)` + generateSelection("Text", "Rewritten text"),
creativity: "low",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "change-tone-to-confident-custom",
title: "Change Tone to Confident - Editable",
prompt:
`Act as a content writer and editor. \(replyWithRewrittenText)
Strictly follow these rules:
- Use confident, formal and friendly tone of voice
- Avoid hedging, be definite where possible
- Skip apologies
- Focus on main arguments
- Correct spelling, grammar, and punctuation
- Keep meaning unchanged
- Keep length retained
- \(maintainURLs)
- \(maintainOriginalLanguage)` + generateSelection("Text", "Rewritten text"),
creativity: "low",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "change-tone-to-casual-custom",
title: "Change Tone to Casual - Editable",
prompt:
`Act as a content writer and editor. \(replyWithRewrittenText)
Strictly follow these rules:
- Use casual and friendly tone of voice
- Use active voice
- Keep sentences shorts
- Ok to use slang and contractions
- Keep grammatical person
- Correct spelling, grammar, and punctuation
- Keep meaning unchanged
- Keep length retained
- \(maintainURLs)
- \(maintainOriginalLanguage)` + generateSelection("Text", "Rewritten text"),
creativity: "low",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "rephrase-as-tweet-custom",
title: "Rephrase as Tweet - Editable",
prompt:
`You're an expert in the field and have the perfect opportunity to share your ideas and insights with a huge audience!. Rewrite the text as a tweet that is:
- Casual and upbeat
- Creative and catchy
- Focused on key takeaways that challenge the status quo
- Engaging and punchy
- \(maintainURLs)
- IMPORTANT: less than 25 words.
- IMPORTANT: doesn't include hash, hashtags and words starting with #, i.e. #innovation #Technology
- \(maintainOriginalLanguage)
Text:
The concept of Rayday is simple. Every Friday, everyone can use the day to work on something that benefits Raycast. From new features, to fixing bugs, drafting documentation or tidying up, it’s time for us to take a break from project work. As well as getting creative with our own ideas, it’s a great chance to act on feedback from our users and community too.
Tweet:
⚒️ We hack every Friday – we call it 'Rayday'. Everyone can use the day to work on something that benefits Raycast – aside from normal project work.` +
generateSelection("Text", "Tweet"),
creativity: "high",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "explain-code-custom",
title: "Explain Code Step by Step - Editable",
prompt:
`Act as a software engineer with deep understanding of any programming language and it's documentation. Explain how the code works step by step in a list. Be concise with a casual tone of voice and write it as documentation for others.
Code:
\`\`\`
function GoToPreviousPageAction() {
const [page, setPage] = useGlobalState("page");
return (
<Action
icon={Icon.ArrowLeftCircle}
title="Go to Previous Page"
shortcut={{ modifiers: ["cmd"], key: "[" }}
onAction={() => setPage(Math.max(page - 1, 0))}
/>
);
}
\`\`\`
Explanation:
The code is a React component that goes to the previous page.
1. The component renders an 'Action' component with an icon, title, and shortcut.
3. The 'useGlobalState' hook is used to get the current page number from the global state.
4. The 'onAction' prop is used to set the page number to one less than the current page number.
5. This will cause the page to go back one page when the action is taken.
6. The page is capped at 0 so that the page is never negative.` + generateSelection("Code", "Explanation"),
creativity: "medium",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "find-bugs-custom",
title: "Find Bugs in Code - Editable",
prompt:
`Act as a software engineer with deep understanding of any programming language. Review the code to fix logical bugs in the code. Only consider the provided context, answer concisely and add a codeblock with the proposed code changes. If you can't confidently find bugs, answer with "Nothing found - LGTM 👍"..
Code:
\`\`\`
function PrevAction() {
const [page, setPage] = useGlobalState("page");
return (
<Action
title="Go to Previous Page"
onAction={() => setPage(page - 1)}
/>
);
}
\`\`\`
Review:
The code is missing a check to make sure \`page\` is greater than 0 before subtracting 1. Otherwise, the page could be set to -1 which might cause unexpected behavior.
\`\`\`
function PrevAction() {
const [page, setPage] = useGlobalState("page");
return (
<Action
title="Go to Previous Page"
onAction={() => setPage(Math.max(page - 1, 0))}
/>
);
}
\`\`\`
Code:
\`\`\`
private func submit(_ text: String) {
guard !text.isEmpty else { return }
let prompt = OpenAIPrompt(prompt: text, imitateChatGPT: true)
submit(prompt)
}
\`\`\`
Review:
Nothing found - LGTM 👌` + generateSelection("Code", "Review"),
creativity: "medium",
date: "2024-04-23",
icon: "raycast-logo-neg",
model: "openai-gpt-4o-mini",
},
{
id: "summarize-website-custom",
title: "Summarize Website - Editable",
prompt: `Summarize the provided website with the following format:
"""
## <concise and easy-to-read website title>
<one to two sentence summary with the most important information>