Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/validate-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ jobs:
npx --yes ajv-cli@5 validate --spec=draft2020 -s /tmp/mcp.schema.json -d mcp.json
echo "✓ plugin.json and mcp.json conform to Agent Plugins 1.0.0 schemas"

- name: Check Version Sync
run: |
ROOT=$(jq -r '.version' plugin.json)
CODEX=$(jq -r '.version' .codex-plugin/plugin.json)
echo "plugin.json=$ROOT .codex-plugin/plugin.json=$CODEX"
if [ "$ROOT" != "$CODEX" ]; then
echo "Error: version mismatch between plugin.json and .codex-plugin/plugin.json"
exit 1
fi
echo "✓ Versions are in sync"

- name: Check Skill Frontmatter
run: |
for f in skills/*/SKILL.md; do
Expand Down
1 change: 1 addition & 0 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "perplexity-platform",
"version": "0.3.0",
"description": "Skills for building on the Perplexity API Platform (Agent API, Search API, Embeddings).",
"author": {
"name": "Perplexity"
Expand Down