Skip to content

docs: rename Agent Registry → AgentLedger (#9) #38

docs: rename Agent Registry → AgentLedger (#9)

docs: rename Agent Registry → AgentLedger (#9) #38

Workflow file for this run

name: Global Manifest Validation
on: [push, pull_request]
jobs:
check-json:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install validator
run: pip install jsonschema
- name: Run validation
run: |
for file in examples/*.json; do
echo "Checking $file..."
python validate_manifest.py "$file"
done