fix: finish Kinetic rename in llms.txt, llms-full.txt and api-ai.json - #50
Merged
Merged
Conversation
Same rename defect as #49: the fleet-jsonld WebSite node still had name "Email Manager". Updated in place to name "Kinetic" with alternateName "Email Manager" (retired alias). The block sits inside fleet-jsonld:start/end markers (generated by apply-agent-surfaces, an external fleet tool not run by pnpm build), so the in-place edit will not be stripped on next build; the upstream registry should also be updated to keep future regenerations consistent.
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.
Summary
public/llms.txt,public/llms-full.txt, andpublic/api-ai.json.alternateNamein JSON, a "Formerly "Email Manager" (retired alias)" line in the txt files), never as the primary name.src/agent-edge.mjs(theAGENT_SURFACEpayload that serves/api/aiand embeds the llms/llms-full/indexMd strings), since it is marked "generated by apply-agent-surfaces" — an external fleet tool not invoked bypnpm build, so leaving it stale would serve the old name at runtime and drift from the static files.Files changed
public/llms.txt— heading# Kinetic; added "Formerly "Email Manager" (retired alias)" line.public/llms-full.txt— heading and## Indexentry →# Kinetic; added retired-alias line.public/api-ai.json—name→Kinetic; addedalternateName: "Email Manager".src/agent-edge.mjs—AGENT_SURFACE.name,catalog.name→KineticwithalternateName; embeddedllmsTxt/llmsFullTxt/indexMdstrings updated to match the public files.Generator involvement
src/agent-edge.mjsand the JSON-LD block inindex.htmlare both tagged "generated by apply-agent-surfaces", which is an external fleet tool and is not run bypnpm build(build runsvite build,build:landing,overlay-landing.mjs,verify:indexing— none regenerate these files). So the edits will not be stripped on next build. I fixed the in-repo source so the runtime-served/api/aimatches.Test plan
pnpm lint— cleanpnpm typecheck— cleanpnpm test— 98 passedCloses #49