fix: add missing OKF frontmatter to homepage example README - #33
Open
nahwan-kim wants to merge 1 commit into
Open
fix: add missing OKF frontmatter to homepage example README#33nahwan-kim wants to merge 1 commit into
nahwan-kim wants to merge 1 commit into
Conversation
- validate-okf.mjs treats every non index/log markdown file as an OKF concept, so the frontmatter-less example README failed repo validation and CI - matches the frontmatter convention already used by README.md and consumer-reference/agent-native/README.md Confidence: high Scope-risk: narrow Reversibility: clean Tested: node scripts/validate-okf.mjs --json (ok, 0 failures), node scripts/test-validate-okf.mjs --json (ok) Not-tested: full validate.yml workflow
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.
scripts/validate-okf.mjswalks every Markdown file in the repo and treats anything that is notindex.md/log.mdas an OKF concept document, requiring frontmatter with atype.examples/stylegallery-homepage/README.mdshipped in 0.1.4 without frontmatter, so repo validation and theValidate StyleGalleryworkflow (.github/workflows/validate.yml,node scripts/validate-okf.mjs --json) fail onmain.This adds the frontmatter block, matching the convention already used by
README.md(type: Repository Guide) andconsumer-reference/agent-native/README.md(type: Interface Guide). No prose or validator changes.Verified locally on top of
upstream/main(9049f13):Not verified: the rest of
validate.ymlbeyond the OKF steps.