Skip to content

Latest commit

 

History

History
120 lines (100 loc) · 3.41 KB

File metadata and controls

120 lines (100 loc) · 3.41 KB
layout default
title Modes Collection

Modes Collection

AI interaction modes and configurations for different use cases.

Categories

💻 Development Modes

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 %}
{% else %}

No development modes available yet. Contribute some!

{% endif %}

🔍 Research Modes

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 %}
{% else %}

No research modes available yet. Contribute some!

{% endif %}

📝 Documentation Modes

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 %}
{% else %}

No documentation modes available yet. Contribute some!

{% endif %}

🛠️ Troubleshooting Modes

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 %}
{% else %}

No troubleshooting modes available yet. Contribute some!

{% endif %}

All Modes

{% 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" }}
{% else %}

No modes available yet. Start by adding some modes to the _modes directory!

{% endif %}

Contributing

To add a new mode:

  1. Create a new markdown file in the _modes directory
  2. 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...