feat: sovereign orchestrator, NERV terminal, agent visibility fixes #272
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: Validate Agents | |
| on: | |
| pull_request: | |
| branches: [ "main", "master" ] | |
| push: | |
| branches: [ "main", "master" ] | |
| jobs: | |
| validate-agents: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Validate agent character files | |
| run: node scripts/validate_agents.js | |
| working-directory: ./ |