[UC-3697] Establish Quad-Agent development architecture, pre-commit tooling, and Emscripten safety - #7
Merged
Jelle Spijker (jellespijker) merged 0 commit intoAug 20, 2026
Conversation
Copilot started reviewing on behalf of
Jelle Spijker (jellespijker)
July 29, 2026 10:14
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a repository-wide pre-commit configuration to run basic hygiene checks, Talisman secret scanning, and a local “absolute path” blocker to prevent committing environment-specific paths.
Changes:
- Introduces
.pre-commit-config.yamlwithpre-commit-hookschecks (YAML/JSON validation, whitespace, EOF, large files). - Adds Talisman
talisman-commithook for secret scanning with an exclusion list. - Adds a local
pygrephook to block absolute home-directory path references.
Comments suppressed due to low confidence (1)
.pre-commit-config.yaml:42
- In this
excluderegex,AGENTS.md/README.mduse.which matches any character in regex. If you mean the literal filenames, escape the dots to avoid unintentionally excluding similarly-named files.
AGENTS.md|
README.md|
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
Author
🛡️ Adversarial Security Audit & Quad-Agent Review Summary
|
Jelle Spijker (jellespijker)
force-pushed
the
UC-3697_AI_DF
branch
from
August 19, 2026 12:11
6126912 to
5279676
Compare
Jelle Spijker (jellespijker)
marked this pull request as ready for review
August 19, 2026 12:11
Jelle Spijker (jellespijker)
force-pushed
the
UC-3697_AI_DF
branch
from
August 20, 2026 08:15
3499269 to
258f111
Compare
Jelle Spijker (jellespijker)
changed the base branch from
main
to
UC-3697-cpp-fixes-and-formatting
August 20, 2026 08:15
Jelle Spijker (jellespijker)
force-pushed
the
UC-3697_AI_DF
branch
from
August 20, 2026 08:30
8311c06 to
6ca7865
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Stacked PR (Layer 2 of Stack #9) establishing Quad-Agent development architecture and pre-commit tooling.
Base layer: #8 (
UC-3697-cpp-fixes-and-formatting).Why
Establish a unified Quad-Agent collaborative development environment (Gemini/Antigravity, Claude Code, GitHub Copilot, OpenCode) for CuraFormulaeEngine, integrate automated quality control pre-commit hooks, and protect secrets and local paths.
What
.agents/configuration synchronized with.claude/,.github/, and.opencode/viascripts/sync_agentic_configs.sh..pre-commit-config.yamlwithclang-format, Talisman secret scanning, local path blockers, rule frontmatter validators, file size ratchets, and complexity checks..github/workflows/unit-test.ymland.github/workflows/package.ymlto trigger onUC-*/NP-*branches.How
.agents/rules/and.agents/agents/. Symlinks and generated rule manifests ensure 100% parity across Claude Code, Copilot, and OpenCode..aiignorecompiled into platform-specific exclude configurations (.ignore,.claude/settings.json,.github/copilot-content-exclusion.yml,opencode.json).Verification & Validation (V&V)
1. Parity Audit
python3 .agents/hooks/audit_quad_agent_parity.py # ==> Parity audit PASSED across Antigravity, Claude Code, Copilot, and OpenCode2. Guard Fire-Proofing Table
3. Pre-Commit Hook Suite
pre-commit run --all-files # ==> 19 / 19 hooks passed cleanly4. Catch2 Unit Tests
ctest --preset conan-release --output-on-failure # ==> 158 / 158 tests passed (100%)PR Checklist