| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
If you believe you've found a security issue in this plugin or in the TranscriptAPI service, email hello@transcriptapi.com. Please do not open a public issue for security reports.
We aim to acknowledge reports within 2 business days.
# 1. manifests against the canonical schemas
curl -sO https://agent-plugins.org/schemas/1.0.0/plugin.schema.json
curl -sO https://agent-plugins.org/schemas/1.0.0/mcp.schema.json
npx -y ajv-cli@5 validate --spec=draft2020 -s plugin.schema.json -d plugin.json
npx -y ajv-cli@5 validate --spec=draft2020 -s mcp.schema.json -d mcp.json
# 2. every skill against the Agent Skills specification (Agent Plugins §7.1)
pip install "git+https://github.com/agentskills/agentskills.git#subdirectory=skills-ref"
for d in skills/*/; do skills-ref validate "$d"; done
# 3. normative requirements a schema cannot express
python .github/scripts/check_conformance.pyAll three must pass. CI runs steps 2 and 3 on every pull request. See .github/workflows/validate-plugin.yml. Step 1 is the canonical schema check; check_conformance.py enforces the same rules, so CI doesn't repeat it.
| Back | FazBrowse Home | New Git URL |