| layout | default |
|---|---|
| title | Instructions Collection |
Step-by-step guides and procedures for AI tools and workflows.
Installation and configuration guides.
{% assign setup_instructions = site.instructions | where: "type", "setup" %} {% if setup_instructions.size > 0 %}
-
{% for instruction in setup_instructions %}
- {{ instruction.title }} - {{ instruction.description | default: "No description available" }} {% endfor %}
No setup instructions available yet. Contribute some!
{% endif %}How-to guides for tools and workflows.
{% assign usage_instructions = site.instructions | where: "type", "usage" %} {% if usage_instructions.size > 0 %}
-
{% for instruction in usage_instructions %}
- {{ instruction.title }} - {{ instruction.description | default: "No description available" }} {% endfor %}
No usage instructions available yet. Contribute some!
{% endif %}Recommended approaches and methodologies.
{% assign best_practice_instructions = site.instructions | where: "type", "best-practices" %} {% if best_practice_instructions.size > 0 %}
-
{% for instruction in best_practice_instructions %}
- {{ instruction.title }} - {{ instruction.description | default: "No description available" }} {% endfor %}
No best practices available yet. Contribute some!
{% endif %}{% assign all_instructions = site.instructions | sort: "title" %} {% if all_instructions.size > 0 %}
{% for instruction in all_instructions %} {% endfor %}| Title | Type | Difficulty | Description |
|---|---|---|---|
| {{ instruction.title }} | {{ instruction.type | default: "General" }} | {{ instruction.difficulty | default: "N/A" }} | {{ instruction.description | default: "No description available" }} |
No instructions available yet. Start by adding some instructions to the _instructions directory!
To add a new instruction:
- Create a new markdown file in the
_instructionsdirectory - Use the following front matter template:
---
title: "Your Instruction Title"
type: "setup|usage|best-practices"
difficulty: "beginner|intermediate|advanced"
time_required: "Estimated time to complete"
prerequisites: "What you need before starting"
description: "Brief description of what this instruction covers"
---
Your instruction content goes here...
## Prerequisites
- List any requirements
## Steps
1. Step one
2. Step two
3. Step three
## Troubleshooting
Common issues and solutions...