Update TODO with new tasks and priorities #27
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 Agent Docs | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| validate-agent-docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.26.x" | |
| - name: Test validator | |
| run: go test ./scripts/validate-agent-docs.go ./scripts/validate-agent-docs_test.go | |
| - name: Validate policy docs and skills | |
| run: go run ./scripts/validate-agent-docs.go |