Prerequisites

Usage

The llm command allows you to generate LLM instruction files for CLI automation. Usage:
./heex llm [OPTIONS]

Available Options

OptionDescription
-h, --helpShow this message and exit.
-of, --output-file FILEPath where to save the instruction file, allowed extensions: [‘md’, ‘json’, ‘yaml’, ‘txt’] [required]

Examples

Basic Usage

Generate LLM instruction files to a markdown file:
./heex llm --output-file instructions.md

Save as JSON

Generate LLM instruction files to a JSON file:
./heex llm --output-file instructions.json

Save as YAML

Generate LLM instruction files to a YAML file:
./heex llm --output-file instructions.yaml
This file can be used as input for your own LLM and help setup the automation of CLI commands to interact with your Heex Environment.

Save as Text

Generate LLM instruction files to a text file:
./heex llm --output-file instructions.txt

Getting Help

./heex llm --help