Add Codex plugin metadata and Svix Skill evals#11
Open
rforgeon wants to merge 2 commits into
Open
Conversation
svix-pluiz
requested changes
Jun 30, 2026
svix-pluiz
left a comment
Contributor
There was a problem hiding this comment.
Hey @rforgeon, thanks for contributing!
Before we merge this, could you address my comments?
Comment on lines
+42
to
+52
| ## Telvine packaging | ||
|
|
||
| If this plugin is published through Telvine, publish the repository as the plugin | ||
| and treat each Svix Skill as a plugin component: | ||
|
|
||
| ```bash | ||
| npm i -g telvine | ||
| telvine login | ||
| telvine publish . | ||
| ``` | ||
|
|
Contributor
There was a problem hiding this comment.
As we're not using Telvine, could you remove this section?
Suggested change
| ## Telvine packaging | |
| If this plugin is published through Telvine, publish the repository as the plugin | |
| and treat each Svix Skill as a plugin component: | |
| ```bash | |
| npm i -g telvine | |
| telvine login | |
| telvine publish . | |
| ``` |
Contributor
There was a problem hiding this comment.
Could you explain where and when this skill eval script is meant to run? It feels like this is out of the scope for this project
Author
|
Thanks for the review. I pushed e151b42 addressing both points:
I also revalidated the manifest and JSONL locally: |
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
The plugin is the installable package for agent workspaces. Each Svix Skill remains a focused
SKILL.mdworkflow inside that plugin.Privacy / telemetry
The eval docs explicitly avoid prompts, source files, webhook payloads, API keys, signing secrets, tenant identifiers, tool arguments, and model outputs.
Validation
node -e "JSON.parse(require('fs').readFileSync('.codex-plugin/plugin.json','utf8')); const lines=require('fs').readFileSync('evals/svix-agent-skills/cases.jsonl','utf8').trim().split(/\n/); lines.forEach(JSON.parse); console.log('valid plugin json and jsonl lines='+lines.length);"Output: