Document client safety-layer blocks and the server-resolved domain alias #8
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
| name: Checks | |
| # Content validation on every push/PR (the release workflow only fires on version tags): | |
| # 1. The Gemini mirrors (skills/, agents/ at the repo root) match plugins/cpln/. | |
| # 2. Every MCP tool mentioned in skills/rules/agents/commands exists in the MCP server's | |
| # registry and respects toolset-profile visibility (see scripts/check-tool-mentions.mjs; | |
| # regenerate scripts/tools-manifest.json from the MCP server repo when tools change). | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| validate: | |
| name: Mirrors and tool mentions | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Gemini mirrors are in sync | |
| run: scripts/sync-gemini-content.sh --check | |
| - name: Tool mentions exist and respect toolset profiles | |
| run: node scripts/check-tool-mentions.mjs |