Skip to content

docs(agents): restructure AGENTS.md with progressive disclosure and skills.sh integration #1092

docs(agents): restructure AGENTS.md with progressive disclosure and skills.sh integration

docs(agents): restructure AGENTS.md with progressive disclosure and skills.sh integration #1092

Workflow file for this run

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!"