1
0
mirror of synced 2025-12-19 18:06:02 -05:00

Rename release-manifest to manifest in skills

Update all skill docs to use the new `manifest` link relation
name instead of `release-manifest`.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Rich Lander
2025-12-18 23:34:30 -08:00
parent f964f5aca9
commit e01663790c
6 changed files with 11 additions and 11 deletions

View File

@@ -82,7 +82,7 @@ ASCII flow diagrams are highly effective for LLM comprehension:
```
llms.json
└─► _embedded.latest_patches[] ─► _links["release-manifest"]
└─► _embedded.latest_patches[] ─► _links["manifest"]
manifest.json ─► DONE

View File

@@ -25,7 +25,7 @@ llms.json
└─► _embedded.latest_patches[] ─► find version (e.g., "10.0")
└─► _links["release-manifest"]
└─► _links["manifest"]
manifest.json
@@ -41,7 +41,7 @@ llms.json
1. Fetch `llms.json`
2. Find `_embedded.latest_patches[]` where `release == "X.0"`
3. Follow `_links["release-manifest"]` → manifest.json
3. Follow `_links["manifest"]` → manifest.json
4. Follow `_links["compatibility"]` → compatibility.json
### TFMs for .NET X (2 fetches)

View File

@@ -54,7 +54,7 @@ From `_embedded.latest_patches[]._links`:
| Relation | Target |
| -------- | ------ |
| `release-manifest` | manifest.json (OS, breaking changes) |
| `manifest` | manifest.json (OS, breaking changes) |
| `latest-security` | Last security patch |
From `llms.json._links`:

View File

@@ -24,7 +24,7 @@ llms.json
└─► _embedded.latest_patches[] ─► DONE (version, EOL, support)
├─► _links.release-manifest ─► manifest.json
├─► _links.manifest ─► manifest.json
│ ├─► compatibility-json ─► breaking changes
│ ├─► supported-os-json ─► distros
│ └─► os-packages-json ─► packages
@@ -86,7 +86,7 @@ From llms.json:
From latest_patches[]:
release-major ───────────► X.0/index.json (patches, timeline)
release-manifest ────────► manifest.json (reference data)
manifest ────────────────► manifest.json (reference data)
latest-security ─────────► last security patch
From manifest.json:

View File

@@ -31,7 +31,7 @@ From `os-packages.json`:
```
llms.json
└─► _embedded.latest_patches[] ─► _links["release-manifest"]
└─► _embedded.latest_patches[] ─► _links["manifest"]
manifest.json
@@ -44,13 +44,13 @@ llms.json
## Common Queries
### Distro support (2 fetches)
`llms.json``release-manifest``supported-os-json` → check `distributions[]`
`llms.json``manifest``supported-os-json` → check `distributions[]`
### Package list (2 fetches)
`llms.json``release-manifest``os-packages-json` → read `distributions[].releases[].packages[]`
`llms.json``manifest``os-packages-json` → read `distributions[].releases[].packages[]`
### Minimum glibc (2 fetches)
`llms.json``release-manifest``supported-os-json` → filter `libc[]` by `name == "glibc"`
`llms.json``manifest``supported-os-json` → filter `libc[]` by `name == "glibc"`
## supported-os.json Structure

View File

@@ -33,7 +33,7 @@ Paths are illustrative—always follow `_links["..."].href`.
| `latest`, `latest-lts` | Newest release; diverge when STS is newer than current LTS |
| `latest-security` | Newest security patch |
| `latest-security-month` | Current security month |
| `release-major`, `release-manifest` | Cross-references |
| `release-major`, `manifest` | Cross-references |
| `releases-index`, `timeline-index` | Root indexes |
| `compatibility-json`, `supported-os-json`, `os-packages-json` | Data resources |
| `cve-json` | Full CVE details (CVSS vectors, CWE) |