Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
.github/workflows/validate.yml
1name: Validate Researcher Operating System23on:4push:5branches: [main]6pull_request:7branches: [main]8workflow_dispatch:910jobs:11validate:12runs-on: ubuntu-latest13timeout-minutes: 514steps:15- name: Checkout16uses: actions/checkout@v41718- name: Set up Python19uses: actions/setup-python@v520with:21python-version: "3.12"2223- name: Compile researcher scripts24run: |25python -m py_compile \26researcher/scripts/validate_repo.py \27researcher/scripts/validate_run.py \28researcher/scripts/research_loop.py \29researcher/scripts/novelty_check.py \30researcher/scripts/compare_skill_revisions.py \31researcher/scripts/check_activation_cases.py \32researcher/scripts/run_benchmarks.py \33researcher/scripts/skill_health.py \34researcher/scripts/loop_common.py \35researcher/scripts/loop_discover.py \36researcher/scripts/loop_step.py \37researcher/scripts/loop_daily.py \38researcher/scripts/loop_status.py3940- name: Validate repository (strict)41run: python researcher/scripts/validate_repo.py --strict4243- name: Skill health (strict)44run: python researcher/scripts/skill_health.py --strict --no-history4546- name: Activation regression tests47run: python researcher/scripts/check_activation_cases.py4849- name: Adversarial benchmark harness50run: python researcher/scripts/run_benchmarks.py51