🤖 Bip Bop - Fusion Framework Release #83
Workflow file for this run
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: Agent context | |
| # The AI context files (CODEMAP.md, instruction frontmatter) are hand-maintained. | |
| # When they drift, agents skip searching and act on stale paths — so verify them | |
| # on every change to the workspace shape or to the files themselves. | |
| on: | |
| pull_request: | |
| paths: | |
| - CODEMAP.md | |
| - AGENTS.md | |
| - package.json | |
| - .github/copilot-instructions.md | |
| - .github/instructions/** | |
| - .github/scripts/verify-agent-context.mjs | |
| - packages/**/package.json | |
| - cookbooks/*/package.json | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| name: Verify agent context is in sync | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24 | |
| # Reads manifests directly — no dependency install needed. | |
| - name: Verify agent context | |
| run: node .github/scripts/verify-agent-context.mjs |