llm-contracts Documentation

This directory contains the documentation for the llm-contracts project, published using GitHub Pages.

Local Development

To preview the documentation locally:

  1. Install Jekyll and dependencies:
    gem install jekyll bundler
    bundle install
    
  2. Run the Jekyll server:
    bundle exec jekyll serve
    
  3. Open your browser to http://localhost:4000

Documentation Structure

Adding Content

To add new pages:

  1. Create a new Markdown file with the following front matter:
    ---
    layout: default
    title: Your Page Title
    nav_order: [order number]
    description: "Page description"
    ---
    
  2. Add your content in Markdown format

Publishing

The documentation is automatically published to GitHub Pages when changes are pushed to the main branch.