Skip to content

Latest commit

 

History

History
111 lines (92 loc) · 3.13 KB

File metadata and controls

111 lines (92 loc) · 3.13 KB
layout default
title Instructions Collection

Instructions Collection

Step-by-step guides and procedures for AI tools and workflows.

Categories

⚙️ Setup Instructions

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

No setup instructions available yet. Contribute some!

{% endif %}

📖 Usage Instructions

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

No usage instructions available yet. Contribute some!

{% endif %}

⭐ Best Practices

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

No best practices available yet. Contribute some!

{% endif %}

All Instructions

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

No instructions available yet. Start by adding some instructions to the _instructions directory!

{% endif %}

Contributing

To add a new instruction:

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