{% extends "base.html" %} {% from "components/tutorial_card.html" import tutorial_card %} {% block title %}Tutorials - CmdForge{% endblock %} {% block meta_description %}Learn how to use CmdForge with step-by-step tutorials. From basic setup to advanced workflows.{% endblock %} {% block content %}

Tutorials

Learn CmdForge from the ground up with step-by-step guides.

Getting Started

New to CmdForge? Start here with the fundamentals.

{{ tutorial_card( title="Installation & Setup", description="Install CmdForge and configure your first AI provider.", href=url_for('web.tutorials_path', path='installation'), step_number=1 ) }} {{ tutorial_card( title="Your First Tool", description="Create a simple AI-powered command in under 5 minutes.", href=url_for('web.tutorials_path', path='first-tool'), step_number=2 ) }} {{ tutorial_card( title="Understanding YAML Config", description="Learn the structure of CmdForge configuration files.", href=url_for('web.tutorials_path', path='yaml-config'), step_number=3 ) }}

Core Concepts

Understand the key concepts that power CmdForge.

Advanced Topics

Take your tools to the next level with advanced techniques.

{% if video_tutorials %}

Video Tutorials

Prefer watching? Check out our video guides.

{% for video in video_tutorials %}
{{ video.title }}

{{ video.title }}

{{ video.duration }}

{% endfor %}
{% endif %}
{% endblock %}