Add claude-cortex-code-router in new agent-to-agent-skills directory #16
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: Update Skills Table | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'snowflake-skills/*/SKILL.md' | |
| - 'general-skills/*/SKILL.md' | |
| - '.github/scripts/generate-skills-table.sh' | |
| - '.github/scripts/sync-agent-rules.sh' | |
| jobs: | |
| update-readme: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Generate skills table | |
| run: .github/scripts/generate-skills-table.sh | |
| - name: Sync agent rules | |
| run: .github/scripts/sync-agent-rules.sh | |
| - name: Commit if changed | |
| run: | | |
| git diff --quiet && exit 0 | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add snowflake-skills/README.md general-skills/README.md .cursor/rules/ .windsurf/rules/ .claude/rules/ .gemini/ | |
| git commit -m "Sync skills table and agent rules [skip ci]" | |
| git push |