From 28bea5758b43ed5b8e1b74e23339fde9018a42c4 Mon Sep 17 00:00:00 2001 From: Vivian Phung Date: Mon, 4 May 2026 11:29:02 -0700 Subject: [PATCH] fix(docs): point llms.txt links to real pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Why: the hardcoded URLs in generateLlmsTxt() referenced pages that don't exist (quick-start, installation, what-is-cis, solve-problems), producing 404s for anyone — human or LLM — following them. Co-Authored-By: Claude Opus 4.7 (1M context) --- tools/build-docs.mjs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/build-docs.mjs b/tools/build-docs.mjs index 3ff54ae..8f15220 100644 --- a/tools/build-docs.mjs +++ b/tools/build-docs.mjs @@ -145,14 +145,14 @@ function generateLlmsTxt(outputDir) { '', '## Quick Start', '', - `- **[Quick Start](${siteUrl}/tutorials/quick-start)** - Get started with CIS`, - `- **[Installation](${siteUrl}/reference/installation)** - Installation guide`, + `- **[Getting Started](${siteUrl}/tutorials/getting-started/)** - Install CIS and run your first sessions`, + `- **[Configuration](${siteUrl}/reference/configuration/)** - Configure CIS settings and agent behavior`, '', '## Core Concepts', '', - `- **[What is CIS?](${siteUrl}/explanation/what-is-cis)** - Understanding the suite`, - `- **[Brainstorming](${siteUrl}/how-to/brainstorm)** - Brainstorming workflows`, - `- **[Problem Solving](${siteUrl}/how-to/solve-problems)** - Problem-solving agents`, + `- **[Creative Intelligence](${siteUrl}/explanation/creative-intelligence/)** - Understanding the suite`, + `- **[Brainstorming](${siteUrl}/how-to/brainstorm/)** - Brainstorming workflows`, + `- **[Problem Solving](${siteUrl}/how-to/problem-solving/)** - Problem-solving agents`, '', '---', '',