A repository of reusable prompts for Obsidian. Each prompt is stored as a markdown file with frontmatter metadata and can be accessed through raw.githubusercontent.com.
- This repository contains prompts for Large Language Models (LLMs) that are provided "as is" without any warranties.
- Users are responsible for reviewing and testing prompts before implementation in their applications.
- We do not guarantee the accuracy, reliability, or performance of any prompts in this repository.
- Users must ensure prompts comply with their LLM provider's terms of service and ethical guidelines.
- Prompts should not be used to generate harmful, malicious, or discriminatory content.
- We reserve the right to remove any prompts that violate ethical AI principles or promote harmful behavior.
- Do not include sensitive or personal information in prompts or examples.
- Be mindful of intellectual property rights when contributing prompts.
- Consider the potential implications of prompt outputs on privacy and security.
- This repository is not affiliated with any LLM providers or platforms.
- Contributors retain ownership of their submitted prompts under the repository's license.
- Users assume all responsibility for how they use these prompts and any resulting outputs.
.
├── prompts/ # Markdown files containing prompts
├── .github/
│ ├── workflows/ # GitHub Actions workflows
│ └── scripts/ # Scripts for generating prompts.json
├── prompts.json # Auto-generated JSON file of all prompts
-
Fork this repository and clone it locally:
git clone https://github.com/YOUR_USERNAME/obsidian-prompts-store.git cd obsidian-prompts-store -
Create a new branch for your prompt:
git checkout -b add-my-prompt
-
Create a new markdown file in the
promptsdirectory:- Filename must only contain letters, numbers, and hyphens (e.g.,
my-prompt.md) - Example:
summarize-text.md,analyze-data.md
- Filename must only contain letters, numbers, and hyphens (e.g.,
-
Add frontmatter with required metadata:
--- prompt-desc: "A clear, concise description of what your prompt does" ---
-
Add your prompt content below the frontmatter
-
Commit your changes:
git add prompts/your-prompt.md git commit -m "Add new prompt: your-prompt" -
Push to your fork and create a pull request:
git push origin add-my-prompt
Then go to GitHub and create a pull request from your fork to this repository.
Note: Your pull request will be automatically validated to ensure the filename and frontmatter meet the required format.