docs: update async task documentation and enhance references for Open… #8
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
| # Mechanical harness checks only (script index + skills README sync). | |
| # Does not run natural-language semantic smoke; see CONTRIBUTING.md. | |
| name: CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install PyYAML | |
| run: pip install "PyYAML>=6.0.1" | |
| - name: Verify script index | |
| run: python scripts/verify_script_index.py | |
| - name: Verify skills README | |
| run: python scripts/verify_skills_readme.py |