feat(skills): add turso-libsql skill with vector search and embedded … #15
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: Generate Catalog | |
| on: | |
| push: | |
| branches: [ main, develop ] | |
| jobs: | |
| generate-catalog: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run catalog generation script | |
| run: bash ./scripts/generate-catalog.sh | |
| - name: Commit and push catalog if changed | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add opencode-catalog.json | |
| if git diff --cached --quiet; then | |
| echo "Catalog unchanged, skipping commit and push" | |
| else | |
| git commit -m "chore: update catalog" | |
| git push | |
| fi | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |