-
-
Notifications
You must be signed in to change notification settings - Fork 241
Add HOL skill-publish validate workflow (schema + safety + trust signals) #314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| name: HOL Skill Validate | ||
| on: | ||
| push: | ||
| branches: [main, master] | ||
| pull_request: | ||
| jobs: | ||
| validate-skill: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | ||
| - name: Validate skill package | ||
| uses: hashgraph-online/skill-publish@c182a4aa4dba68fb7f3c01be4ca560dfb759ae9e # v1 | ||
| with: | ||
| skill-dir: . | ||
|
Comment on lines
+14
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The new workflow Suggested FixThe new workflow file Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong
skill-dirpoints to root, missing skill filesHigh Severity
The
skill-diris set to.(repo root), but the repository has noSKILL.mdorskill.jsonat the root. The actualSKILL.mdfiles live underskills/xcodebuildmcp/andskills/xcodebuildmcp-cli/. Additionally, there is noskill.jsonfile anywhere in the repository, which theskill-publishaction requires alongsideSKILL.mdfor validation. This workflow will always fail.Reviewed by Cursor Bugbot for commit 78e4fc7. Configure here.