Skip to content

feat(conversation): add conversation list command #67

feat(conversation): add conversation list command

feat(conversation): add conversation list command #67

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 }}