feat(fetch): discover agent resources - #174
Merged
Merged
Conversation
Co-Authored-By: yolop <yolop@everruns.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
Regular Markdown fetches now discover agent-facing resources advertised through HTTP
Linkheaders, HTML link/meta declarations, and a bounded set of conventional same-origin paths. Results are returned as structured metadata and appended as compact Markdown navigation links.The conventional probes include
llms.txt,llms-full.txt,auth.md, OAuth/OpenID metadata, API catalogs, MCP server cards, A2A agent cards, and Agent Skills indexes.Public documentation, the behavioral specification, threat model, changelog, and test coverage are included.
Why
Agents receiving fetched content need a safe, predictable way to find related machine-readable documentation, authentication instructions, APIs, and agent endpoints without independently guessing conventions or recursively crawling a site.
Before / After
Before: a Markdown fetch returned only the requested page; advertised and conventional agent resources were not surfaced.
After: the same fetch includes structured
agent_resourcesmetadata and, when resources exist, an appendix such as:End-to-end CLI smoke test against a local HTTP server confirmed discovery from HTTP headers, HTML declarations,
/llms.txt, and/auth.md.Risk
HEADrequests.Checklist
Produced by yolop