| layout | default |
|---|---|
| title | Prompts Collection |
This section contains curated AI prompts organized by category. Each prompt includes detailed metadata, usage instructions, and examples.
Prompts for software development, debugging, and code review.
{% assign coding_prompts = site.prompts | where: "category", "coding" %} {% if coding_prompts.size > 0 %}
-
{% for prompt in coding_prompts %}
- {{ prompt.title }} - {{ prompt.description | default: "No description available" }} {% endfor %}
No coding prompts available yet. Contribute some!
{% endif %}Prompts for content creation, editing, and documentation.
{% assign writing_prompts = site.prompts | where: "category", "writing" %} {% if writing_prompts.size > 0 %}
-
{% for prompt in writing_prompts %}
- {{ prompt.title }} - {{ prompt.description | default: "No description available" }} {% endfor %}
No writing prompts available yet. Contribute some!
{% endif %}Prompts for data analysis, research, and evaluation.
{% assign analysis_prompts = site.prompts | where: "category", "analysis" %} {% if analysis_prompts.size > 0 %}
-
{% for prompt in analysis_prompts %}
- {{ prompt.title }} - {{ prompt.description | default: "No description available" }} {% endfor %}
No analysis prompts available yet. Contribute some!
{% endif %}Prompts for brainstorming, ideation, and creative writing.
{% assign creative_prompts = site.prompts | where: "category", "creative" %} {% if creative_prompts.size > 0 %}
-
{% for prompt in creative_prompts %}
- {{ prompt.title }} - {{ prompt.description | default: "No description available" }} {% endfor %}
No creative prompts available yet. Contribute some!
{% endif %}Prompts for task management, planning, and optimization.
{% assign productivity_prompts = site.prompts | where: "category", "productivity" %} {% if productivity_prompts.size > 0 %}
-
{% for prompt in productivity_prompts %}
- {{ prompt.title }} - {{ prompt.description | default: "No description available" }} {% endfor %}
No productivity prompts available yet. Contribute some!
{% endif %}{% assign all_prompts = site.prompts | sort: "title" %} {% if all_prompts.size > 0 %}
{% for prompt in all_prompts %} {% endfor %}| Title | Category | Description |
|---|---|---|
| {{ prompt.title }} | {{ prompt.category | default: "General" }} | {{ prompt.description | default: "No description available" }} |
No prompts available yet. Start by adding some prompts to the _prompts directory!
To add a new prompt:
- Create a new markdown file in the
_promptsdirectory - Use the following front matter template:
---
title: "Your Prompt Title"
category: "coding|writing|analysis|creative|productivity"
description: "Brief description of what this prompt does"
tags: ["tag1", "tag2"]
use_case: "When to use this prompt"
---
Your prompt content goes here...- Include examples and variations if applicable