Add longform CV to llms.txt and the other text exports - #4
Open
erasmus wants to merge 1 commit into
Open
Conversation
llms.txt, llms-full.txt, and cv.txt are all generated from src/data/cv.ts, which only carried a one-line note per role. Positions can now also carry a `summary` paragraph and `highlights` bullets, filled in for Lineage Labs, Concordium, and the SatoshiPay/Pendulum tenure and deduplicated against the existing notes. A shared helper renders the experience list for the two markdown exports, cv.txt prints the indented plain-text form, and llms.txt gains an Experience section so a single fetch answers who this is. The HTML pages are unchanged. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
src/data/cv.ts: a position can now carry an optionalsummaryparagraph andhighlightsbullets alongside its one-linenote. Filled in for Lineage Labs (WaySpace and WayID), Concordium, and the SatoshiPay/Pendulum tenure.src/lib/txt.ts: newexperienceMarkdown()helper that renders the experience list as a markdown list with highlights nested beneath each role.src/pages/llms.txt.ts: new Experience section between Docs and Projects, and the CV link now says what cv.txt adds (education and languages).src/pages/llms-full.txt.ts: experience section uses the shared helper.src/pages/cv.txt.ts: prints the summary and highlights under each role in indented plain text.Why
The three text endpoints are the version of the site that agents and LLMs read, and the CV in them was a single line per role, with nothing at all for Concordium. This adds the longform CV so one fetch of llms.txt gives a complete picture of the experience.
Notes for review
/and/cv/are unchanged.CvSection.astroignores the new fields, and the built output was checked for leaks.npm run checkreports 0 errors andnpm run buildsucceeds. The regenerateddist/llms.txtgrows from about 2 KB to about 6 KB.🤖 Generated with Claude Code