Route get_space — a space is a graph, and nothing told agents to read it #6
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: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install jq (hook tests parse real JSON payloads) | |
| run: sudo apt-get update && sudo apt-get install -y jq | |
| - name: Validate plugin (skills + MCP + manifest + hooks) | |
| run: bash scripts/validate-skills.sh | |
| - name: Hook tests (L-009 — real captured payloads, fire/silence/no-loop) | |
| run: bash plugins/basalt/hooks/tests/run.sh |