From 2f2bf1801caf52c1dcc0ccf872937c7e98565011 Mon Sep 17 00:00:00 2001 From: Stephen Meech Date: Sun, 9 Mar 2025 09:29:11 +0000 Subject: [PATCH] Revert "add LLM Prompts package" --- packages/llm-prompts/0.1.0/README.md | 97 ------------------------ packages/llm-prompts/0.1.0/_manifest.yml | 7 -- packages/llm-prompts/0.1.0/package.yml | 61 --------------- 3 files changed, 165 deletions(-) delete mode 100644 packages/llm-prompts/0.1.0/README.md delete mode 100644 packages/llm-prompts/0.1.0/_manifest.yml delete mode 100644 packages/llm-prompts/0.1.0/package.yml diff --git a/packages/llm-prompts/0.1.0/README.md b/packages/llm-prompts/0.1.0/README.md deleted file mode 100644 index 70705b2..0000000 --- a/packages/llm-prompts/0.1.0/README.md +++ /dev/null @@ -1,97 +0,0 @@ -# LLM Prompts Package for Espanso - -This package provides a collection of useful prompt templates for Large Language Models (LLMs) like ChatGPT, Claude, and others. It allows you to quickly insert well-structured prompts into any text field using Espanso's text expansion capabilities. - -## Installation - -This package is designed for [Espanso](https://espanso.org/), a cross-platform text expander. - -If you already have Espanso installed, you can install this package with: - -```bash -espanso install llm-prompts -``` - -## Usage - -You can use these prompts in two ways: - -1. Type `:prompt` to open a search menu with all available prompts -2. Use the specific trigger for each prompt directly (e.g., `:rtf`, `:bab`) - -After inserting a prompt template, fill in the details as needed. The cursor will be positioned at the first input field. - -## Available Prompts - -### Simple Prompts - -- `:pirate` - "Speak like a pirate." -- `:helpful` - "You are a helpful assistant." - -### Structured Frameworks - -#### Role-Task-Format (`:rtf`) -A framework to clearly define the role the AI should assume, the task it should perform, and the format of the response. - -``` -Role: -Task: -Format: -``` - -Source: [LinkedIn post by Jeremy Grandillon](https://www.linkedin.com/posts/jeremygrandillon_5-chatgpt-prompt-frameworks-that-make-your-activity-7301956962898837504-NR_i) - -#### Before-After-Bridge (`:bab`) -A framework to describe the current state, desired outcome, and steps to get there. - -``` -Before: -After: -Bridge: outline the steps or actions to bridge the gap. -``` - -Source: [LinkedIn post by Jeremy Grandillon](https://www.linkedin.com/posts/jeremygrandillon_5-chatgpt-prompt-frameworks-that-make-your-activity-7301956962898837504-NR_i) - -#### Situation-Complication-Question-Answer (`:scqa`) -A problem-solving framework that provides context, identifies complications, poses a question, and seeks an answer. - -``` -Situation: -Complication: -Question: -Answer: -``` - -Source: [LinkedIn post by Jeremy Grandillon](https://www.linkedin.com/posts/jeremygrandillon_5-chatgpt-prompt-frameworks-that-make-your-activity-7301956962898837504-NR_i) - -### Special Purpose Prompts - -#### Goal Setting (`:goals`) -A prompt designed to help you set more ambitious goals through a series of challenging questions. - -Source: [Forbes article by Jodie Cook](https://www.forbes.com/sites/jodiecook/2024/07/23/5-chatgpt-prompt-frameworks-to-accelerate-your-success-make-leapfrog-moves/) - -#### Abundance Mindset Quiz (`:abundance`) -A comprehensive prompt that: -1. Creates an 8-question quiz to assess your mindset -2. Analyzes your responses -3. Provides suggestions to develop a more abundant mindset - -Source: [Forbes article by Jodie Cook](https://www.forbes.com/sites/jodiecook/2024/07/23/5-chatgpt-prompt-frameworks-to-accelerate-your-success-make-leapfrog-moves/) (modified) - -#### Startup Investor (`:startup`) -A prompt that makes the AI act as a startup angel investor to: -1. Analyze potential startup pitches -2. Provide feedback on market potential, scalability, competitive landscape, and team competence -3. Score each factor out of 10 -4. Conclude with investment recommendation - -Source: [GitHub Awesome ChatGPT Prompts](https://github.com/f/awesome-chatgpt-prompts/pull/828) - -## Contributing - -Feel free to suggest additional prompt frameworks or improvements to existing ones by opening an issue or pull request. - -## License - -This package is available under the MIT License. diff --git a/packages/llm-prompts/0.1.0/_manifest.yml b/packages/llm-prompts/0.1.0/_manifest.yml deleted file mode 100644 index 72320c5..0000000 --- a/packages/llm-prompts/0.1.0/_manifest.yml +++ /dev/null @@ -1,7 +0,0 @@ -name: "llm-prompts" -title: "LLM Prompts" -description: A package with helpful prompts for AI Chat and LLMs like ChatGPT, Gemini, Claude, ... -homepage: https://github.com/mmarschall/prompt-expander -version: 0.1.0 -author: Matthias Marschall -tags: ["AI","LLM", "Prompt", "GenAI"] diff --git a/packages/llm-prompts/0.1.0/package.yml b/packages/llm-prompts/0.1.0/package.yml deleted file mode 100644 index ce579f6..0000000 --- a/packages/llm-prompts/0.1.0/package.yml +++ /dev/null @@ -1,61 +0,0 @@ -# You can use either :prompt to open a search menu or use the shortcut directly -matches: - - triggers: [:prompt, :pirate] - replace: "Speak like a pirate. " - - triggers: [:prompt, :helpful] - replace: "You are a helpful assistant. " - -# Source: https://www.linkedin.com/posts/jeremygrandillon_5-chatgpt-prompt-frameworks-that-make-your-activity-7301956962898837504-NR_i - - triggers: [:prompt, :rtf] - replace: | - Role: $|$ - Task: - Format: - label: "Role - Task - Format" - -# Source: https://www.linkedin.com/posts/jeremygrandillon_5-chatgpt-prompt-frameworks-that-make-your-activity-7301956962898837504-NR_i - - triggers: [:prompt, :bab] - replace: | - Before: $|$ - After: - Bridge: outline the steps or actions to bridge the gap. - label: "Before - After - Bridge" - -# Source: https://www.linkedin.com/posts/jeremygrandillon_5-chatgpt-prompt-frameworks-that-make-your-activity-7301956962898837504-NR_i - - triggers: [:prompt, :scqa] - replace: | - Situation: $|$ - Complication: - Question: - Answer: - label: "Situation - Complication - Question - Answer" - -# Source: https://www.forbes.com/sites/jodiecook/2024/07/23/5-chatgpt-prompts-to-accelerate-your-success-make-leapfrog-moves/ - - triggers: [:prompt, :goals] - replace: | - I want to set new goals. Start by asking me about my current goals, then dismiss them. - Tell me in a direct way that they are far too small, and press me with questions, delivered one by one, - that require me to create new, bigger goals. - Do not stop pressing me on these goals until they are significantly more aspirational than before. - -# Original: https://www.forbes.com/sites/jodiecook/2024/07/23/5-chatgpt-prompts-to-accelerate-your-success-make-leapfrog-moves/ -# modified to avoid Gemini 2 to answer the questions itself, randomize the order of options and focus the analysis and proposals on the outcomes, which lack an abundance mindset - - triggers: [:prompt, :abundance] - replace: | - Context: I believe that acting from a mindset of abundance instead of scarcity will lead to more success. - An abundance mindset is grateful, optimistic and believes there is more to go around. - A scarcity mindset operates from lack, and believes in protecting what you have, and playing zero sum games. - Step 1: Create a 8 question quiz where you test which mindset I have right now. - Use multiple choice questions with 5 options for each answer, ensuring there isn’t an obviously scarce or abundant option and the options randomly mixed. - Step 2: Ask for my input and wait for my input. Only proceed after I have given my input. Don't give the input yourself. - Step 3: Analyze my input: After I provide my answers, give me the results. - Step 4: make an assessment and suggest ways I can act from abundance more often, based on my answers. Propose concrete things to make an abundance mindset a habit for the areas where I have room to improve. - -# Source: https://github.com/f/awesome-chatgpt-prompts/pull/828 -# Example conversation with ChatGPT: https://chatgpt.com/share/678aa024-fbcc-800f-a13a-d8c160dfd725 - - triggers: [:prompt, :startup] - replace: | - I want you to act as a startup angel investor. - You will analyze potential startup pitches, provide feedback, and assess their viability for investment. - I will describe a startup idea or pitch, and you will evaluate it based on factors such as market potential, scalability, competitive landscape, and team competence. - Please provide a score out of 10 for each factor and conclude with your overall thoughts on whether you would invest and why. \ No newline at end of file