Add Tesseract configuration (tesseract_config.yaml) - #6277
Merged
madskristensen merged 1 commit intoAug 31, 2026
Conversation
Register a catalog entry for tesseract_config.yaml, the configuration file for a Tesseract (https://github.com/pasteurlabs/tesseract-core). The schema is self-hosted and regenerated on every docs build, so the catalog url points at the stable docs alias which always serves the schema for the latest tagged release. No re-submission is needed per release.
dionhaefner
requested review from
hyperupcall and
madskristensen
as code owners
August 31, 2026 12:30
Contributor
|
Thanks for the PR! This section of the codebase is owned by @madskristensen and |
Contributor
|
Thanks! |
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.
Adds a catalog entry for
tesseract_config.yaml, the configuration file for a Tesseract — a tool for packaging simulation/ML components into differentiable, containerized units.What this registers
fileMatch:tesseract_config.yaml/tesseract_config.yml— a distinctive, non-generic filename, so no false-positive risk against other configs.url: points at our self-hosted schema, regenerated from theTesseractConfigmodel on every docs build and served from thestabledocs alias, which always tracks the latest tagged release. No per-release re-submission needed.Self-hosted, so catalog-only
Following the self-hosted/remote/external guidance, this PR only registers the catalog entry, no in-repo schema file or test fixtures, since those key to a local
src/schemas/json/*.jsonthat doesn't exist for an external URL.Verified locally with
node ./cli.js check(passes) andprettier --check.