fix(skills): close six opc-marketing gaps found by round-2 behavior eval #13
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install pinned Claude Code CLI | |
| run: npm install --global @anthropic-ai/claude-code@2.1.201 | |
| - name: Validate plugin manifests | |
| run: claude plugin validate . | |
| - name: Structural check | |
| run: bash scripts/check-skills.sh | |
| - name: Contract check | |
| run: bash scripts/check-contract.sh |