jekyll-llms-generator 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61e7af91faf01c8a0511432b9a91cb7981314a6721dc9e0290eb65d9709fe141
4
- data.tar.gz: 562bc7af8bc4fdec062271fafb8ebe9b15e0caa90752f467f5c013439f8f2e39
3
+ metadata.gz: 8409a3c30c79e3ffef23420295ff8f62f75e6c4ed5d6a9967abfc11e52931eae
4
+ data.tar.gz: f1ba06610f40eff111d59bfa6b7734ed6bb284793a74459c211d222b83d35008
5
5
  SHA512:
6
- metadata.gz: 597fd7a9fe2f2ef89770f8aa8dad5fbc6069e12478d914b4a6192c1b3f66af800285ee04bc5ab3bce031c7e83e3e9669783013721afe979bc0175201ea760bdd
7
- data.tar.gz: dc583c5de51a5092d2c905b02a8a04552a9bdb9cd2b0b0646799c034225cbc306ec0c57fbd1742e27afea3ec05a54a0f46c1e2d25d0daba0024fe8dd32345fbc
6
+ metadata.gz: 36926514eba932fb3a5e1cc53f07db07c71778d2be1d7efb5cfbbaadce353aa48de10530cf08ad9eb0b59fb2cd39427b48823bf5e006875b254824049b792ee1
7
+ data.tar.gz: f0f88e6ec7392fdc2d58ee02ea47f163ec25604cf14a76b8baeba62cf372a9da19af4f64e21311fd18c7f7275c0d40eacb542ed4e039a51807bfc3e45738d2d8
data/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.3.1] - 2026-08-20
6
+
7
+ ### Changed
8
+ - Repository renamed to match gem name: github.com/jchance/jekyll-llms-generator
9
+
10
+ ## [0.3.0] - 2026-08-20
11
+
12
+ ### Added
13
+ - When `full: true`, `llms.txt` now includes a `[Full content version](/llms-full.txt)` link in the header section so LLM crawlers can discover the full content file from the compact index
14
+
5
15
  ## [0.2.0] - 2026-08-20
6
16
 
7
17
  ### Changed
data/README.md CHANGED
@@ -58,7 +58,7 @@ llms_txt:
58
58
  | `tagline` | site `description` | Blockquote line below the title |
59
59
  | `intro` | _(none)_ | Optional paragraph after the tagline |
60
60
  | `link_tag` | `true` | Inject `<link rel="ai" href="/llms.txt">` into HTML head |
61
- | `full` | `false` | Also generate `/llms-full.txt` with full content |
61
+ | `full` | `false` | Also generate `/llms-full.txt` with full stripped-HTML content; adds a discovery link in `llms.txt` header |
62
62
  | `sections` | `[]` | Array of section definitions (see below) |
63
63
 
64
64
  ### Section options
@@ -90,15 +90,20 @@ The plugin looks for a description in this order:
90
90
  2. `tagline:` frontmatter
91
91
  3. Automatically generated excerpt (first paragraph)
92
92
 
93
+ Descriptions use the first complete sentence — no hard character truncation.
94
+
93
95
  ## Output
94
96
 
95
- **`/llms.txt`** — compact reference with title, tagline, intro, and a bulleted list of links per section.
97
+ **`/llms.txt`** — compact reference: title, tagline, intro, and a bulleted list of links with first-sentence descriptions per section. When `full: true`, includes a `[Full content version](/llms-full.txt)` link in the header so LLM crawlers can discover the full file.
96
98
 
97
- **`/llms-full.txt`** — same structure but each item also includes the full plain-text content of the document (when `full: true`).
99
+ **`/llms-full.txt`** — full content file (when `full: true`). Each entry uses `### [Title](url)` headings, a `> description` blockquote, the complete stripped-HTML article text, and `---` separators between articles making article boundaries unambiguous for LLM parsers.
98
100
 
99
101
  ## Discovery
100
102
 
101
- AI crawlers discover `llms.txt` by checking `<your-site>/llms.txt` directly, the same way they check `robots.txt` or `sitemap.xml`. The optional `<link rel="ai">` injection in the `<head>` of every page provides an additional signal.
103
+ AI crawlers discover `llms.txt` by checking `<your-site>/llms.txt` directly, the same way they check `robots.txt` or `sitemap.xml`. Additional discovery signals:
104
+
105
+ - The optional `<link rel="ai" href="/llms.txt">` injected into every HTML page's `<head>` (`link_tag: true`, on by default)
106
+ - The `[Full content version]` link in the `llms.txt` header points crawlers to `llms-full.txt`
102
107
 
103
108
  You can also submit your site to the [llmstxt.org directory](https://directory.llmstxt.cloud/) for broader discovery.
104
109
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllLlmsGenerator
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-llms-generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Chance
@@ -44,13 +44,13 @@ files:
44
44
  - lib/jekyll-llms-generator.rb
45
45
  - lib/jekyll-llms-generator/version.rb
46
46
  - lib/jekyll/llms_txt_generator.rb
47
- homepage: https://github.com/jchance/jekyll-llms-txt
47
+ homepage: https://github.com/jchance/jekyll-llms-generator
48
48
  licenses:
49
49
  - MIT
50
50
  metadata:
51
- homepage_uri: https://github.com/jchance/jekyll-llms-txt
52
- source_code_uri: https://github.com/jchance/jekyll-llms-txt
53
- changelog_uri: https://github.com/jchance/jekyll-llms-txt/blob/main/CHANGELOG.md
51
+ homepage_uri: https://github.com/jchance/jekyll-llms-generator
52
+ source_code_uri: https://github.com/jchance/jekyll-llms-generator
53
+ changelog_uri: https://github.com/jchance/jekyll-llms-generator/blob/main/CHANGELOG.md
54
54
  rdoc_options: []
55
55
  require_paths:
56
56
  - lib