Revise timeline for AI agent memory development #2
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: v3 memory | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| validate-v3-example: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: python -m pip install PyYAML | |
| - name: Lint v3 vault | |
| working-directory: examples/v3-minimal-vault | |
| run: python tools/lint.py | |
| - name: Rebuild views | |
| working-directory: examples/v3-minimal-vault | |
| run: | | |
| MEMORY_TODAY=2026-05-11 tools/rebuild-views.sh | |
| git diff --exit-code -- memory/_views | |