|
@@ -43,12 +43,118 @@ include relevant statistics (add the links of the sources you use) and consider
|
|
|
|
|
|
title: 'SEO Content Brief',
|
|
title: 'SEO Content Brief',
|
|
content: `Create a SEO content brief for [keyword].`
|
|
content: `Create a SEO content brief for [keyword].`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/seo-ideas',
|
|
|
|
+
|
|
|
|
+ title: 'SEO Keyword Ideas',
|
|
|
|
+ content: `Generate a list of 20 keyword ideas on [topic].
|
|
|
|
+
|
|
|
|
+Cluster this list of keywords according to funnel stages whether they are top of the funnel, middle of the funnel or bottom of the funnel keywords.`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/summary',
|
|
|
|
+
|
|
|
|
+ title: 'Short Summary',
|
|
|
|
+ content: `Write a summary in 50 words that summarizes [topic or keyword].`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/email-subject',
|
|
|
|
+
|
|
|
|
+ title: 'Email Subject Line',
|
|
|
|
+ content: `Develop [5] subject lines for a cold email offering your [product or service] to a potential client.`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/facebook-ads',
|
|
|
|
+
|
|
|
|
+ title: 'Facebook Ads',
|
|
|
|
+ content: `Create 3 variations of effective ad copy to promote [product] for [audience].
|
|
|
|
+
|
|
|
|
+Make sure they are [persuasive/playful/emotional] and mention these benefits:
|
|
|
|
+
|
|
|
|
+[Benefit 1]
|
|
|
|
+
|
|
|
|
+[Benefit 2]
|
|
|
|
+
|
|
|
|
+[Benefit 3]
|
|
|
|
+
|
|
|
|
+Finish with a call to action saying [CTA].
|
|
|
|
+
|
|
|
|
+Add 3 emojis to it.`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/google-ads',
|
|
|
|
+
|
|
|
|
+ title: 'Google Ads',
|
|
|
|
+ content: `Create 10 google ads (a headline and a description) for [product description] targeting the keyword [keyword].
|
|
|
|
+
|
|
|
|
+The headline of the ad needs to be under 30 characters. The description needs to be under 90 characters. Format the output as a table.`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/insta-caption',
|
|
|
|
+
|
|
|
|
+ title: 'Instagram Caption',
|
|
|
|
+ content: `Write 5 variations of Instagram captions for [product].
|
|
|
|
+
|
|
|
|
+Use friendly, human-like language that appeals to [target audience].
|
|
|
|
+
|
|
|
|
+Emphasize the unique qualities of [product],
|
|
|
|
+
|
|
|
|
+use ample emojis, and don't sound too promotional.`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/linkedin-post',
|
|
|
|
+
|
|
|
|
+ title: 'LinkedIn Post',
|
|
|
|
+ content: `Create a narrative Linkedin post using immersive writing about [topic].
|
|
|
|
+
|
|
|
|
+Details:
|
|
|
|
+
|
|
|
|
+[give details in bullet point format]
|
|
|
|
+
|
|
|
|
+Use a mix of short and long sentences. Make it punchy and dramatic.`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/youtube-desc',
|
|
|
|
+
|
|
|
|
+ title: 'YouTube Video',
|
|
|
|
+ content: `Write a 100-word YouTube video description that compels [audience]
|
|
|
|
+
|
|
|
|
+to watch a video on [topic]
|
|
|
|
+
|
|
|
|
+and mentions the following keywords
|
|
|
|
+
|
|
|
|
+[keyword 1]
|
|
|
|
+
|
|
|
|
+[keyword 2]
|
|
|
|
+
|
|
|
|
+[keyword 3].`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/seo-meta',
|
|
|
|
+
|
|
|
|
+ title: 'SEO Meta',
|
|
|
|
+ content: `Suggest a meta description for the content above, make it user-friendly and with a call to action, include the keyword [keyword].`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/eli5',
|
|
|
|
+
|
|
|
|
+ title: 'ELI5',
|
|
|
|
+ content: `You are an expert teacher with the ability to explain complex topics in simpler terms. Explain the concept of [topic] in simple terms, so that my [grade level/subject] class can understand [this concept/specific example]?`
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ command: '/emoji-translate',
|
|
|
|
+
|
|
|
|
+ title: 'Emoji Translation',
|
|
|
|
+ content: `You are an emoji expert. Using only emojis, translate the following text to emojis. [insert numbered sentences].`
|
|
}
|
|
}
|
|
];
|
|
];
|
|
|
|
|
|
let filteredPromptCommands = [];
|
|
let filteredPromptCommands = [];
|
|
|
|
|
|
- $: filteredPromptCommands = promptCommands.filter((p) => p.command.includes(prompt));
|
|
|
|
|
|
+ $: filteredPromptCommands = promptCommands
|
|
|
|
+ .filter((p) => p.command.includes(prompt))
|
|
|
|
+ .sort((a, b) => a.title.localeCompare(b.title));
|
|
|
|
|
|
$: if (prompt) {
|
|
$: if (prompt) {
|
|
selectedCommandIdx = 0;
|
|
selectedCommandIdx = 0;
|