docs(agents): restructure AGENTS.md with progressive disclosure and skills.sh integration #1091
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: {} | |
| # Cancel superseded runs on the same PR / branch so the single | |
| # self-hosted GPU runner isn't blocked by stale jobs. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| skit: | |
| name: Skit | |
| uses: ./.github/workflows/skit.yml | |
| ui: | |
| name: UI | |
| uses: ./.github/workflows/ui.yml | |
| plugins: | |
| name: Plugins | |
| uses: ./.github/workflows/plugins.yml | |
| e2e: | |
| name: E2E | |
| uses: ./.github/workflows/e2e.yml | |
| all-checks: | |
| name: All Checks Passed | |
| runs-on: ubuntu-22.04 | |
| needs: [skit, ui, plugins, e2e] | |
| steps: | |
| - name: All checks passed | |
| run: echo "All CI checks passed successfully!" |