feat(conversation): add conversation list command #67
Workflow file for this run
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: Skill Sync Check | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| skill-sync: | |
| name: SKILL.md Sync | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build | |
| - name: Check SKILL.md is in sync | |
| run: npm run check:skill-sync | |
| - name: Validate SKILL.md against agentskills.io spec | |
| run: | | |
| if ! gh skill --help >/dev/null 2>&1; then | |
| echo "::notice::gh skill subcommand not available on this runner (requires gh >= 2.90.0); skipping validation" | |
| exit 0 | |
| fi | |
| gh skill publish --dry-run | |
| env: | |
| GH_TOKEN: ${{ github.token }} |