From 7d99dc3b926ce69148b82b13abb37aa93ec7b891 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=7BAI=7Df=20D=2E=20M=C3=BCller?= Date: Thu, 14 May 2026 17:42:16 +0200 Subject: [PATCH 1/2] fix(seo): list brownfield reports and contracts in sitemap and llms.txt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Brownfield reports, the Socratic Recovery Skill page, and the contracts page were pre-rendered but missing from sitemap.xml and llms.txt — so claude.ai and other fetchers could not discover them. Also adds a "Documentation" section at the top of llms.txt listing every top-level doc page with a one-sentence summary, following the llms.txt convention. Co-Authored-By: Claude Opus 4.7 (1M context) --- docs/all-anchors.adoc | 2 + scripts/generate-llms-txt.js | 80 +++++++++ scripts/generate-sitemap.js | 6 +- website/public/llms.txt | 120 ++++++++++++- website/public/sitemap.xml | 328 +++++++++++++++++++---------------- 5 files changed, 385 insertions(+), 151 deletions(-) diff --git a/docs/all-anchors.adoc b/docs/all-anchors.adoc index 14c323b..38c6c67 100644 --- a/docs/all-anchors.adoc +++ b/docs/all-anchors.adoc @@ -209,6 +209,8 @@ include::anchors/what-would-chuck-norris-do.adoc[leveloffset=+2] == Requirements Engineering +include::anchors/cockburn-use-cases.adoc[leveloffset=+2] + include::anchors/ears-requirements.adoc[leveloffset=+2] include::anchors/invest.adoc[leveloffset=+2] diff --git a/scripts/generate-llms-txt.js b/scripts/generate-llms-txt.js index e561f01..896b6f2 100644 --- a/scripts/generate-llms-txt.js +++ b/scripts/generate-llms-txt.js @@ -215,6 +215,86 @@ function generateLlmsTxt() { lines.push('') } + // Top-level documentation pages (each pre-rendered as a standalone HTML page) + const DOC_PAGES = [ + { + title: 'About', + url: 'https://llm-coding.github.io/Semantic-Anchors/about', + summary: 'What semantic anchors are, why they matter for LLM communication, and how the catalog is curated.', + }, + { + title: 'Spec-Driven Development', + url: 'https://llm-coding.github.io/Semantic-Anchors/spec-driven-development', + summary: + 'Greenfield workflow — from requirements to specification to implementation, powered by semantic anchors.', + }, + { + title: 'Brownfield Workflow', + url: 'https://llm-coding.github.io/Semantic-Anchors/brownfield', + summary: + 'Applying semantic anchors to brownfield codebases using a bounded-context approach with reverse-engineered safety nets.', + }, + { + title: 'Brownfield Experiment 1a Report', + url: 'https://llm-coding.github.io/Semantic-Anchors/brownfield-experiment-report', + summary: + 'Controlled experiment: delete documentation from a greenfield project, regenerate from code, compare. Methodology, findings, and the Brownfield Preparation Checklist.', + }, + { + title: 'Brownfield Fair Comparison', + url: 'https://llm-coding.github.io/Semantic-Anchors/brownfield-fair-comparison', + summary: + 'Three approaches (Direct, Socratic, Two-Phase) compared with identical team answers. Measures the structural value of the Question Tree, not the answers.', + }, + { + title: 'Socratic Code-Theory Recovery Skill', + url: 'https://llm-coding.github.io/Semantic-Anchors/socratic-recovery-skill', + summary: + 'Installable Claude Code Skill that packages the brownfield documentation-recovery workflow as a two-phase Question Tree with Q-ID traceability.', + }, + { + title: 'Semantic Contracts', + url: 'https://llm-coding.github.io/Semantic-Anchors/contracts', + summary: + 'Composable contracts that define what terms mean in your project — pick and copy into your AGENTS.md or CLAUDE.md.', + }, + { + title: 'AgentSkill', + url: 'https://llm-coding.github.io/Semantic-Anchors/agentskill', + summary: + 'The semantic-anchor-translator AgentSkill — install semantic anchors into Claude Code, Codex, Cursor, and other coding agents.', + }, + { + title: 'Evaluations', + url: 'https://llm-coding.github.io/Semantic-Anchors/evaluations', + summary: 'Multiple-choice evaluations of semantic anchor recognition across 10 LLMs.', + }, + { + title: 'Full Reference', + url: 'https://llm-coding.github.io/Semantic-Anchors/all-anchors', + summary: 'All semantic anchors in one long document — readable offline, linkable, easy to Ctrl-F.', + }, + { + title: 'Changelog', + url: 'https://llm-coding.github.io/Semantic-Anchors/changelog', + summary: 'Chronological record of all semantic anchors added to the catalog.', + }, + { + title: 'Contributing', + url: 'https://llm-coding.github.io/Semantic-Anchors/contributing', + summary: 'How to propose new semantic anchors, quality criteria, and the contribution workflow.', + }, + ] + + lines.push('## Documentation') + lines.push('') + for (const page of DOC_PAGES) { + lines.push(`- [${page.title}](${page.url}): ${page.summary}`) + } + lines.push('') + lines.push('---') + lines.push('') + // Anchors by category for (const category of categories) { lines.push(`## ${category.name}`) diff --git a/scripts/generate-sitemap.js b/scripts/generate-sitemap.js index 3c64936..5b04b49 100755 --- a/scripts/generate-sitemap.js +++ b/scripts/generate-sitemap.js @@ -30,8 +30,6 @@ const BASE_URL = 'https://llm-coding.github.io/Semantic-Anchors' // shell to non-JS crawlers and claude.ai fetchers. // // Excluded on purpose: -// - /contracts — interactive JS page (localStorage, client-side data -// fetching); no static content worth serving // - /anchor/:id — rendered per entry via the anchor loop below // // priority: 1.0 homepage, 0.8 top-level content, 0.7 contributing/meta, 0.6 anchors @@ -40,6 +38,10 @@ const PAGES = [ { path: '/about', priority: '0.8', changefreq: 'monthly' }, { path: '/spec-driven-development', priority: '0.8', changefreq: 'monthly' }, { path: '/brownfield', priority: '0.8', changefreq: 'monthly' }, + { path: '/brownfield-experiment-report', priority: '0.7', changefreq: 'monthly' }, + { path: '/brownfield-fair-comparison', priority: '0.7', changefreq: 'monthly' }, + { path: '/socratic-recovery-skill', priority: '0.7', changefreq: 'monthly' }, + { path: '/contracts', priority: '0.7', changefreq: 'monthly' }, { path: '/evaluations', priority: '0.8', changefreq: 'monthly' }, { path: '/all-anchors', priority: '0.8', changefreq: 'weekly' }, { path: '/agentskill', priority: '0.7', changefreq: 'monthly' }, diff --git a/website/public/llms.txt b/website/public/llms.txt index 6931e42..78aaacc 100644 --- a/website/public/llms.txt +++ b/website/public/llms.txt @@ -1,6 +1,6 @@ # Semantic Anchors — Complete Reference -> 136 well-defined terms, methodologies, and frameworks +> 137 well-defined terms, methodologies, and frameworks > that serve as precision reference points when communicating with LLMs. > Source: https://github.com/LLM-Coding/Semantic-Anchors > Website: https://llm-coding.github.io/Semantic-Anchors/ @@ -9,6 +9,39 @@ # About Semantic Anchors +++++ +
+ +
+ Two-hour live coding session with Johannes Rabauer and Ralf D. Müller (May 2026). + Read Johannes' session summary on rabauer.dev. +
+
+++++ + ## What are Semantic Anchors? **Semantic anchors** are well-defined terms, methodologies, and frameworks that serve as reference points when communicating with Large Language Models (LLMs). They act as shared vocabulary that triggers specific, contextually rich knowledge domains within an LLM's training data. @@ -307,6 +340,23 @@ Ready to explore? [Browse the catalog →](https://llm-coding.github.io/Semantic --- +## Documentation + +- [About](https://llm-coding.github.io/Semantic-Anchors/about): What semantic anchors are, why they matter for LLM communication, and how the catalog is curated. +- [Spec-Driven Development](https://llm-coding.github.io/Semantic-Anchors/spec-driven-development): Greenfield workflow — from requirements to specification to implementation, powered by semantic anchors. +- [Brownfield Workflow](https://llm-coding.github.io/Semantic-Anchors/brownfield): Applying semantic anchors to brownfield codebases using a bounded-context approach with reverse-engineered safety nets. +- [Brownfield Experiment 1a Report](https://llm-coding.github.io/Semantic-Anchors/brownfield-experiment-report): Controlled experiment: delete documentation from a greenfield project, regenerate from code, compare. Methodology, findings, and the Brownfield Preparation Checklist. +- [Brownfield Fair Comparison](https://llm-coding.github.io/Semantic-Anchors/brownfield-fair-comparison): Three approaches (Direct, Socratic, Two-Phase) compared with identical team answers. Measures the structural value of the Question Tree, not the answers. +- [Socratic Code-Theory Recovery Skill](https://llm-coding.github.io/Semantic-Anchors/socratic-recovery-skill): Installable Claude Code Skill that packages the brownfield documentation-recovery workflow as a two-phase Question Tree with Q-ID traceability. +- [Semantic Contracts](https://llm-coding.github.io/Semantic-Anchors/contracts): Composable contracts that define what terms mean in your project — pick and copy into your AGENTS.md or CLAUDE.md. +- [AgentSkill](https://llm-coding.github.io/Semantic-Anchors/agentskill): The semantic-anchor-translator AgentSkill — install semantic anchors into Claude Code, Codex, Cursor, and other coding agents. +- [Evaluations](https://llm-coding.github.io/Semantic-Anchors/evaluations): Multiple-choice evaluations of semantic anchor recognition across 10 LLMs. +- [Full Reference](https://llm-coding.github.io/Semantic-Anchors/all-anchors): All semantic anchors in one long document — readable offline, linkable, easy to Ctrl-F. +- [Changelog](https://llm-coding.github.io/Semantic-Anchors/changelog): Chronological record of all semantic anchors added to the catalog. +- [Contributing](https://llm-coding.github.io/Semantic-Anchors/contributing): How to propose new semantic anchors, quality criteria, and the contribution workflow. + +--- + ## Communication & Presentation ### 4MAT @@ -3381,6 +3431,55 @@ GPT-5.3 Codex activates the decisiveness signal but **not** the character voice ## Requirements Engineering +### Cockburn Use Cases + +***Full Name***: Cockburn Use Cases (Writing Effective Use Cases) + +***Also known as***: Fully Dressed Use Cases, Goal-Level Use Cases, Cockburn Format + +[discrete] +## **Core Concepts**: + +***Fully Dressed Format*** +A structured textual template for describing system behavior from the actor's perspective. Each use case includes: Primary Actor, Stakeholders & Interests, Preconditions, Trigger, Main Success Scenario (numbered steps), Extensions (alternative/failure paths with step references), Postconditions (success guarantee and minimal guarantee), and Technology & Data Variations. + +***Goal Levels*** +Three abstraction levels that organise use cases into a hierarchy: + +* **Summary** (Kite/Cloud) — business-process-level goals spanning multiple user sessions. Example: "Manage customer lifecycle." +* **User Goal** (Sea Level) — the sweet spot: one actor, one sitting, one measurable outcome. Example: "Place an order." Most use cases live here. +* **Subfunction** (Fish/Clam) — steps that support a user goal but are not goals in themselves. Example: "Authenticate user." Extract only when reused across multiple user-goal use cases. + +***Scope*** +Defines the system boundary — what is inside the "design scope" and what is an external actor. Cockburn uses icons (a box for the system, a person for actors) to make the boundary visual. Getting scope right prevents use cases from being either too vague (organisational scope) or too detailed (component scope). + +***Actor-Goal List*** +The discovery technique: list every actor and every goal they have against the system. This produces a candidate use case list before writing any prose. The goal level test: "Does the actor go home happy if this goal is achieved?" filters out subfunctions masquerading as user goals. + +**What Cockburn does **not** prescribe** +Cockburn's format is deliberately **prose-based and notation-agnostic**. It does not mandate Activity Diagrams, Gherkin, EARS, or any formal syntax. Those are complementary representations that can be layered on top — Activity Diagrams for visual flow, Gherkin for executable acceptance criteria, EARS for structured requirement statements. + +***Key Proponents***: Alistair Cockburn (_Writing Effective Use Cases_, Addison-Wesley, 2001). The book remains the canonical reference; Cockburn also contributed to the Agile Manifesto and Crystal methodologies. + +[discrete] +## **When to Use**: + +* Discovering what a system needs to do before deciding how to build it — the Actor-Goal List is a fast, structured brainstorm +* Structuring requirements conversations with stakeholders who think in scenarios, not features +* Decomposing a large system into manageable behavioural units at the right granularity (goal-level test) +* Brownfield theory recovery: reconstructing what a system does by writing use cases from observed behaviour +* Feeding downstream artifacts: each use case becomes a natural unit for Activity Diagrams, Gherkin scenarios, and test plans +* Complementing arc42: use cases populate Section 6 (Runtime View) and inform Section 3 (Context and Scope) + +[discrete] +## **Related Anchors**: + +* Gherkin - Executable acceptance criteria that can be derived from each extension path in a use case +* BDD Given/When/Then - Formalises the scenario steps that Cockburn describes in prose +* EARS Requirements - Structured syntax for individual requirement statements; complements Cockburn's scenario-level structure +* arc42 - Use cases feed Section 6 (Runtime View) and inform Section 3 (Context and Scope) +* ISO 25010 - Quality goals that use case extensions should address (error handling, performance, security) + ### EARS-Requirements ***Full Name***: Easy Approach to Requirements Syntax @@ -5537,11 +5636,14 @@ Select and download: https://llm-coding.github.io/Semantic-Anchors/#/contracts ## Specification When we talk about a "specification" or "spec", we mean: -- Use Cases with Trigger, Main Flow, Alternative Flows, Postconditions, and Business Rules (BR-IDs) +- Persona Use Cases in Cockburn's Fully Dressed format (Primary Actor, Trigger, Main Success Scenario, Extensions, Postconditions) at User Goal level, with Business Rules (BR-IDs) +- System Use Cases for each technical interface (API endpoint, CLI command, event, file format): input/validation, processing, output/status codes, error responses - Activity Diagrams for all flows (not just the happy path) - Acceptance criteria in Gherkin format (Given/When/Then) +- Individual requirements in EARS syntax where applicable (When/While/If/Shall) +- Supplementary Specifications as needed: Entity Model, State Machines, Interface Contracts, Validation Rules -*Referenced anchors: gherkin, bdd-given-when-then* +*Referenced anchors: cockburn-use-cases, gherkin, bdd-given-when-then, ears-requirements* ## Requirements Discovery @@ -5624,6 +5726,18 @@ Documentation follows Docs-as-Code according to Ralf D. Müller: *Referenced anchors: docs-as-code, plain-english-strunk-white, gutes-deutsch-wolf-schneider* +## Socratic Code Theory Recovery + +Recover a program's "theory" (Naur 1985) from source code through recursive question refinement. +- Start with 5 high-level questions: Problem/Users, Specification, Architecture, Quality Goals, Risks +- Decompose each question using Semantic Anchors as guides: arc42 (12 sub-questions), Cockburn Use Cases, ISO 25010, Nygard ADRs +- Each leaf is either `[ANSWERED]` (with code evidence) or `[OPEN]` (with Category, Ask role, and why unanswerable) +- The Question Tree is the primary artifact; documentation is synthesized from answered leaves +- Open Questions are the handoff document: routed by role (Product Owner, Architect, Developer, Domain Expert, Operations) +- Two-phase workflow: Phase 1 builds the tree, team answers Open Questions, Phase 2 produces documentation with Q-ID traceability + +*Referenced anchors: socratic-method, arc42, iso-25010, adr-according-to-nygard, mental-model-according-to-naur* + ## Concise Response (TLDR) Responses lead with the conclusion first (BLUF). Keep to essential points. No filler, no preamble. Use short sentences, active voice, and no unnecessary words (Strunk & White). diff --git a/website/public/sitemap.xml b/website/public/sitemap.xml index 44af458..0f1d400 100644 --- a/website/public/sitemap.xml +++ b/website/public/sitemap.xml @@ -2,70 +2,98 @@ https://llm-coding.github.io/Semantic-Anchors/ - 2026-04-21 + 2026-05-14 weekly 1.0 https://llm-coding.github.io/Semantic-Anchors/about - 2026-04-21 + 2026-05-14 monthly 0.8 - https://llm-coding.github.io/Semantic-Anchors/workflow - 2026-04-21 + https://llm-coding.github.io/Semantic-Anchors/spec-driven-development + 2026-05-14 monthly 0.8 https://llm-coding.github.io/Semantic-Anchors/brownfield - 2026-04-21 + 2026-05-14 monthly 0.8 + + https://llm-coding.github.io/Semantic-Anchors/brownfield-experiment-report + 2026-05-14 + monthly + 0.7 + + + + https://llm-coding.github.io/Semantic-Anchors/brownfield-fair-comparison + 2026-05-14 + monthly + 0.7 + + + + https://llm-coding.github.io/Semantic-Anchors/socratic-recovery-skill + 2026-05-14 + monthly + 0.7 + + + + https://llm-coding.github.io/Semantic-Anchors/contracts + 2026-05-14 + monthly + 0.7 + + https://llm-coding.github.io/Semantic-Anchors/evaluations - 2026-04-21 + 2026-05-14 monthly 0.8 https://llm-coding.github.io/Semantic-Anchors/all-anchors - 2026-04-21 + 2026-05-14 weekly 0.8 https://llm-coding.github.io/Semantic-Anchors/agentskill - 2026-04-21 + 2026-05-14 monthly 0.7 https://llm-coding.github.io/Semantic-Anchors/changelog - 2026-04-21 + 2026-05-14 weekly 0.7 https://llm-coding.github.io/Semantic-Anchors/contributing - 2026-04-21 + 2026-05-14 monthly 0.7 https://llm-coding.github.io/Semantic-Anchors/rejected-proposals - 2026-04-21 + 2026-05-14 monthly 0.5 @@ -73,7 +101,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/4mat - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -81,7 +109,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/adr-according-to-nygard - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -89,7 +117,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/arc42 - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -97,7 +125,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/atam - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -105,7 +133,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/bdd-given-when-then - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -113,7 +141,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/bem-methodology - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -121,7 +149,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/bluf - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -129,7 +157,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/c4-diagrams - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -137,7 +165,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/chain-of-thought - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -145,7 +173,15 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/clean-architecture - 2026-04-21 + 2026-05-14 + monthly + 0.6 + + + + + https://llm-coding.github.io/Semantic-Anchors/anchor/cockburn-use-cases + 2026-05-14 monthly 0.6 @@ -153,7 +189,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/code-smells - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -161,7 +197,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/cohesion-criteria - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -169,7 +205,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/control-chart-shewhart - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -177,7 +213,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/conventional-commits - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -185,7 +221,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/cqrs - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -193,7 +229,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/crc-cards - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -201,7 +237,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/cynefin-framework - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -209,7 +245,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/definition-of-done - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -217,7 +253,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/devils-advocate - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -225,7 +261,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/diataxis-framework - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -233,7 +269,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/docs-as-code - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -241,7 +277,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/domain-driven-design - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -249,7 +285,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/ears-requirements - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -257,7 +293,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/effective-go - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -265,7 +301,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/event-driven-architecture - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -273,7 +309,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/fagan-inspection - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -281,7 +317,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/feynman-technique - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -289,7 +325,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/fichtean-curve - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -297,7 +333,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/five-whys - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -305,7 +341,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/fowler-patterns - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -313,7 +349,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/freytags-pyramid - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -321,7 +357,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gherkin - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -329,7 +365,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/github-flow - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -337,7 +373,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-abstract-factory-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -345,7 +381,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-adapter-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -353,7 +389,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-bridge-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -361,7 +397,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-builder-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -369,7 +405,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-chain-of-responsibility-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -377,7 +413,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-command-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -385,7 +421,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-composite-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -393,7 +429,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-decorator-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -401,7 +437,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-design-patterns - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -409,7 +445,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-facade-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -417,7 +453,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-factory-method-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -425,7 +461,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-flyweight-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -433,7 +469,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-interpreter-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -441,7 +477,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-iterator-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -449,7 +485,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-mediator-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -457,7 +493,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-memento-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -465,7 +501,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-observer-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -473,7 +509,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-prototype-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -481,7 +517,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-proxy-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -489,7 +525,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-singleton-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -497,7 +533,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-state-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -505,7 +541,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-strategy-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -513,7 +549,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-template-method-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -521,7 +557,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gof-visitor-pattern - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -529,7 +565,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gom - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -537,7 +573,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/grasp - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -545,7 +581,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gtd - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -553,7 +589,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/gutes-deutsch-wolf-schneider - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -561,7 +597,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/hemingway-bridge - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -569,7 +605,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/heros-journey - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -577,7 +613,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/hexagonal-architecture - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -585,7 +621,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/iec-61508-sil-levels - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -593,7 +629,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/impact-mapping - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -601,7 +637,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/invest - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -609,7 +645,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/iso-25010 - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -617,7 +653,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/jobs-to-be-done - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -625,7 +661,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/kishotenketsu - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -633,7 +669,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/kiss-principle - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -641,7 +677,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/lasr - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -649,7 +685,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/lehmans-classification - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -657,7 +693,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/linddun - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -665,7 +701,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/llm-evaluations - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -673,7 +709,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/madr - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -681,7 +717,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/mece - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -689,7 +725,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/mental-model-according-to-naur - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -697,7 +733,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/mikado-method - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -705,7 +741,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/morphological-box - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -713,7 +749,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/moscow - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -721,7 +757,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/mutation-testing - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -729,7 +765,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/mvp - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -737,7 +773,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/myers-briggs-type-indicator - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -745,7 +781,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/nelson-rules - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -753,7 +789,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/occams-razor - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -761,7 +797,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/owasp-top-10 - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -769,7 +805,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/para-method - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -777,7 +813,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/pert - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -785,7 +821,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/plain-english-strunk-white - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -793,7 +829,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/prd - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -801,7 +837,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/problem-space-nvc - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -809,7 +845,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/property-based-testing - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -817,7 +853,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/pugh-matrix - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -825,7 +861,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/pyramid-principle - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -833,7 +869,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/red-green-tdd - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -841,7 +877,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/regulated-environment - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -849,7 +885,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/save-the-cat - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -857,7 +893,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/semantic-versioning - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -865,7 +901,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/single-level-of-abstraction-principle - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -873,7 +909,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/socratic-method - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -881,7 +917,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/solid-dip - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -889,7 +925,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/solid-isp - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -897,7 +933,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/solid-lsp - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -905,7 +941,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/solid-ocp - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -913,7 +949,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/solid-principles - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -921,7 +957,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/solid-srp - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -929,7 +965,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/sota - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -937,7 +973,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/spc - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -945,7 +981,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/spike-solution - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -953,7 +989,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/ssot-principle - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -961,7 +997,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/story-circle-dan-harmon - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -969,7 +1005,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/stride - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -977,7 +1013,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/swot - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -985,7 +1021,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/tdd-chicago-school - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -993,7 +1029,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/tdd-london-school - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1001,7 +1037,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/test-double-dummy - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1009,7 +1045,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/test-double-fake - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1017,7 +1053,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/test-double-meszaros - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1025,7 +1061,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/test-double-mock - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1033,7 +1069,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/test-double-spy - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1041,7 +1077,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/test-double-stub - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1049,7 +1085,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/testing-pyramid - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1057,7 +1093,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/thin-vertical-slice - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1065,7 +1101,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/three-act-structure - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1073,7 +1109,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/timtowtdi - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1081,7 +1117,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/todotxt-flavoured-markdown - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1089,7 +1125,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/tracer-bullet - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1097,7 +1133,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/user-story-mapping - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1105,7 +1141,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/vertical-slice-architecture - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1113,7 +1149,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/walking-skeleton - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1121,7 +1157,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/wardley-mapping - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1129,7 +1165,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/what-qualifies-as-a-semantic-anchor - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1137,7 +1173,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/what-would-chuck-norris-do - 2026-04-21 + 2026-05-14 monthly 0.6 @@ -1145,7 +1181,7 @@ https://llm-coding.github.io/Semantic-Anchors/anchor/yagni - 2026-04-21 + 2026-05-14 monthly 0.6 From 53901a4ba8d41e62bbceaaf45771cb74e8b1e932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=7BAI=7Df=20D=2E=20M=C3=BCller?= Date: Thu, 14 May 2026 18:01:56 +0200 Subject: [PATCH 2/2] style: prettier-format DOC_PAGES block in generate-llms-txt.js Co-Authored-By: Claude Opus 4.7 (1M context) --- scripts/generate-llms-txt.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/generate-llms-txt.js b/scripts/generate-llms-txt.js index 896b6f2..248b367 100644 --- a/scripts/generate-llms-txt.js +++ b/scripts/generate-llms-txt.js @@ -220,7 +220,8 @@ function generateLlmsTxt() { { title: 'About', url: 'https://llm-coding.github.io/Semantic-Anchors/about', - summary: 'What semantic anchors are, why they matter for LLM communication, and how the catalog is curated.', + summary: + 'What semantic anchors are, why they matter for LLM communication, and how the catalog is curated.', }, { title: 'Spec-Driven Development', @@ -272,7 +273,8 @@ function generateLlmsTxt() { { title: 'Full Reference', url: 'https://llm-coding.github.io/Semantic-Anchors/all-anchors', - summary: 'All semantic anchors in one long document — readable offline, linkable, easy to Ctrl-F.', + summary: + 'All semantic anchors in one long document — readable offline, linkable, easy to Ctrl-F.', }, { title: 'Changelog', @@ -282,7 +284,8 @@ function generateLlmsTxt() { { title: 'Contributing', url: 'https://llm-coding.github.io/Semantic-Anchors/contributing', - summary: 'How to propose new semantic anchors, quality criteria, and the contribution workflow.', + summary: + 'How to propose new semantic anchors, quality criteria, and the contribution workflow.', }, ]