After installing Autoloop, any agent (Copilot coding agent, Claude, etc.) that modifies agentic workflow files can forget to run gh aw compile and apm compile afterward. This causes the APM Self-Check CI gate to fail because generated integration files are stale.
Suggestion
During install (Step 3 or after Step 4), add an entry to AGENTS.md (or CLAUDE.md / COPILOT.md as appropriate) with a rule like:
## Agentic Workflows
After modifying any `.md` workflow file under `.github/workflows/`, always recompile:
```bash
gh aw compile
apm compile
Commit the regenerated .lock.yml and integration files together with your changes.
This ensures every coding agent that reads the repo instructions knows to recompile, preventing CI failures from stale generated files.
After installing Autoloop, any agent (Copilot coding agent, Claude, etc.) that modifies agentic workflow files can forget to run
gh aw compileandapm compileafterward. This causes the APM Self-Check CI gate to fail because generated integration files are stale.Suggestion
During install (Step 3 or after Step 4), add an entry to
AGENTS.md(orCLAUDE.md/COPILOT.mdas appropriate) with a rule like:Commit the regenerated
.lock.ymland integration files together with your changes.