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 +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +9 -4
- data/lib/jekyll-llms-generator/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8409a3c30c79e3ffef23420295ff8f62f75e6c4ed5d6a9967abfc11e52931eae
|
|
4
|
+
data.tar.gz: f1ba06610f40eff111d59bfa6b7734ed6bb284793a74459c211d222b83d35008
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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`** —
|
|
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`.
|
|
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
|
|
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.
|
|
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-
|
|
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-
|
|
52
|
-
source_code_uri: https://github.com/jchance/jekyll-llms-
|
|
53
|
-
changelog_uri: https://github.com/jchance/jekyll-llms-
|
|
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
|