| layout | default |
|---|---|
| title | Modes Collection |
AI interaction modes and configurations for different use cases.
Coding and software development configurations.
{% assign development_modes = site.modes | where: "mode_type", "development" %} {% if development_modes.size > 0 %}
-
{% for mode in development_modes %}
- {{ mode.title }} - {{ mode.description | default: "No description available" }} {% endfor %}
No development modes available yet. Contribute some!
{% endif %}Information gathering and analysis configurations.
{% assign research_modes = site.modes | where: "mode_type", "research" %} {% if research_modes.size > 0 %}
-
{% for mode in research_modes %}
- {{ mode.title }} - {{ mode.description | default: "No description available" }} {% endfor %}
No research modes available yet. Contribute some!
{% endif %}Technical writing and documentation configurations.
{% assign documentation_modes = site.modes | where: "mode_type", "documentation" %} {% if documentation_modes.size > 0 %}
-
{% for mode in documentation_modes %}
- {{ mode.title }} - {{ mode.description | default: "No description available" }} {% endfor %}
No documentation modes available yet. Contribute some!
{% endif %}Problem-solving and debugging configurations.
{% assign troubleshooting_modes = site.modes | where: "mode_type", "troubleshooting" %} {% if troubleshooting_modes.size > 0 %}
-
{% for mode in troubleshooting_modes %}
- {{ mode.title }} - {{ mode.description | default: "No description available" }} {% endfor %}
No troubleshooting modes available yet. Contribute some!
{% endif %}{% assign all_modes = site.modes | sort: "title" %} {% if all_modes.size > 0 %}
{% for mode in all_modes %} {% endfor %}| Title | Type | AI Model | Description |
|---|---|---|---|
| {{ mode.title }} | {{ mode.mode_type | default: "General" }} | {{ mode.ai_model | default: "Any" }} | {{ mode.description | default: "No description available" }} |
No modes available yet. Start by adding some modes to the _modes directory!
To add a new mode:
- Create a new markdown file in the
_modesdirectory - Use the following front matter template:
---
title: "Your Mode Title"
mode_type: "development|research|documentation|troubleshooting"
ai_model: "Recommended AI model (e.g., GPT-4, Claude, etc.)"
context_length: "Recommended context length"
best_for: "What this mode is best suited for"
description: "Brief description of this mode"
---
Your mode description and instructions go here...
## Configuration
Specific settings and parameters...
## Example Usage
How to use this mode effectively...