AGENTS.md@.github ยท diff
git:20260410.e1d2091 to git:20260903.12a565b
1 added, 1 removed. Audit A to A.
# .github Agent Guide
## Purpose
Repository automation: Dependabot and GitHub Actions. **Start here for humans**: [README.md](README.md) (full file index, triggers, local commands). Workflow-focused summary: [workflows/README.md](workflows/README.md).
## Files
- [dependabot.yml](dependabot.yml): Dependabot for pip and GitHub Actions (weekly Monday UTC).
- - [workflows/](workflows/): CI (test matrix with Ruff on 3.12, Bandit SARIF), docs audit, actionlint, dependency review, CodeQL, scheduled supply-chain `pip-audit`.
+ - [workflows/](workflows/): CI (test matrix with Ruff/mypy/doc audits on 3.12, v3 orchestration acceptance, Bandit SARIF), MCP tool-count audit, weekly all-extras suite, docs audit, actionlint, dependency review, CodeQL, scheduled supply-chain `pip-audit`.
## Operating rules
- Keep permissions least-privilege at workflow and job level.
- Expect [dependency review](workflows/dependency-review.yml) to be limited or skipped for PRs from forks (GitHub dependency graph behavior).
- Keep dependency operations deterministic (`--frozen` where lockfile behavior matters).
- Validate workflow changes with actionlint before merge (see [workflows/actionlint.yml](workflows/actionlint.yml)).
- Keep `output/` tracked in git; do not use `.github` automation to alter that policy.
## Maintenance checklist
- Review workflow action major versions periodically.
- Review Dependabot grouping and cadence when PR volume changes.
- Ensure new workflows include `concurrency`, `permissions`, and `timeout-minutes`.