feat: add gemara-bundle skill for bundle manifest creation - #7
Open
sonupreetam wants to merge 1 commit into
Open
feat: add gemara-bundle skill for bundle manifest creation#7sonupreetam wants to merge 1 commit into
sonupreetam wants to merge 1 commit into
Conversation
sonupreetam
force-pushed
the
feat/gemara-bundle-skill
branch
from
July 31, 2026 10:51
7e87af9 to
79e9819
Compare
Guides LLMs through creating bundle manifests with correct plain-path format, layer ordering, and file existence verification. Prevents common LLM hallucination of object-style entries (e.g. '- path: ...') that break the publish workflow's discover step. Signed-off-by: sonupreetam <spreetam@redhat.com>
sonupreetam
force-pushed
the
feat/gemara-bundle-skill
branch
from
July 31, 2026 10:53
79e9819 to
e63f755
Compare
sonupreetam
marked this pull request as ready for review
July 31, 2026 11:09
Contributor
Author
|
As PR #6 is merged, @hbraswelrh & @jpower432, this PR is ready for review. This from the UAT testing to prevent LLM hallucination. |
slegarraga
approved these changes
Aug 7, 2026
slegarraga
left a comment
Contributor
There was a problem hiding this comment.
The skill reads well and the core rule is clear: plain string paths, no key-value entries, relative to the repo root, and the last entry is the root artifact. That directly addresses the hallucination failure described in the PR. One optional follow-up would be linking to an existing bundle manifest or the discover step so the contract is discoverable from the skill itself. No blocking issues from my side.
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
skills/gemara-bundle/SKILL.md— guides LLMs through creating bundle manifests with correct format- path: ...) are used instead of plain strings (- ...), which breaks the publish workflow's discover stepNaming
The skill uses the
gemara-prefix for consistency with other skills in this plugin (gemara-policy,gemara-artifact-authoring, etc.), even though bundle manifests do not have a corresponding CUE schema definition — they are a CI convention for the publish workflow.Context
Observed CI failure in an exercise repo where the LLM generated:
instead of:
The bundle manifest is a CI convention (not a Gemara schema type), so it doesn't belong in
gemara-mcp. This skill provides the "last mile" context after artifacts are authored — wiring them for OCI publishing.Depends on