From 52f47e07da70b7838bfa019d2c3082f4f3128a3c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:17:06 +0000 Subject: [PATCH 1/4] Initial plan From bd8a32f839c5e2e4abddc000ba00efeb6a4184ca Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:22:59 +0000 Subject: [PATCH 2/4] Rename ARCHITECTURE.md to THEORY-OF-OPERATIONS.md Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com> --- .github/pull_request_template.md | 2 +- README.md | 4 ++-- ARCHITECTURE.md => THEORY-OF-OPERATIONS.md | 0 src/DemaConsulting.ReviewMark/GlobMatcher.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename ARCHITECTURE.md => THEORY-OF-OPERATIONS.md (100%) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index bcad5c2..6d0dad9 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -57,7 +57,7 @@ Please run the following checks before submitting: ### Documentation - [ ] Updated README.md (if applicable) -- [ ] Updated ARCHITECTURE.md (if applicable) +- [ ] Updated THEORY-OF-OPERATIONS.md (if applicable) - [ ] Added code examples for new features (if applicable) - [ ] Updated requirements.yaml (if applicable) diff --git a/README.md b/README.md index 85e1c9b..12d157a 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ reviews: - "src/Auth/**/*.cs" ``` -See [ARCHITECTURE.md][link-architecture] for the full design including fingerprinting, evidence +See [THEORY-OF-OPERATIONS.md][link-architecture] for the full design including fingerprinting, evidence indexing, and compliance report formats. ## Installation @@ -177,5 +177,5 @@ By contributing to this project, you agree that your contributions will be licen [link-security]: https://sonarcloud.io/dashboard?id=demaconsulting_ReviewMark [link-nuget]: https://www.nuget.org/packages/DemaConsulting.ReviewMark [link-guide]: https://github.com/demaconsulting/ReviewMark/blob/main/docs/guide/guide.md -[link-architecture]: https://github.com/demaconsulting/ReviewMark/blob/main/ARCHITECTURE.md +[link-architecture]: https://github.com/demaconsulting/ReviewMark/blob/main/THEORY-OF-OPERATIONS.md [link-continuous-compliance]: https://github.com/demaconsulting/ContinuousCompliance diff --git a/ARCHITECTURE.md b/THEORY-OF-OPERATIONS.md similarity index 100% rename from ARCHITECTURE.md rename to THEORY-OF-OPERATIONS.md diff --git a/src/DemaConsulting.ReviewMark/GlobMatcher.cs b/src/DemaConsulting.ReviewMark/GlobMatcher.cs index aa4479e..45d1863 100644 --- a/src/DemaConsulting.ReviewMark/GlobMatcher.cs +++ b/src/DemaConsulting.ReviewMark/GlobMatcher.cs @@ -60,7 +60,7 @@ internal static IReadOnlyList GetMatchingFiles(string baseDirectory, IRe // Process patterns in order, maintaining a running set of matched files. // Each include pattern adds files; each exclude pattern removes files. - // This implements the documented ordered semantics from ARCHITECTURE.md, + // This implements the documented ordered semantics from THEORY-OF-OPERATIONS.md, // allowing a later include to re-add files removed by an earlier exclude. var fileSet = new HashSet(StringComparer.Ordinal); foreach (var pattern in patterns) From 88192252ad0de33d43922e0dc69dec5bb6fe6fdf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:29:15 +0000 Subject: [PATCH 3/4] Address PR review feedback on template and README Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com> --- .github/pull_request_template.md | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 6d0dad9..bcad5c2 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -57,7 +57,7 @@ Please run the following checks before submitting: ### Documentation - [ ] Updated README.md (if applicable) -- [ ] Updated THEORY-OF-OPERATIONS.md (if applicable) +- [ ] Updated ARCHITECTURE.md (if applicable) - [ ] Added code examples for new features (if applicable) - [ ] Updated requirements.yaml (if applicable) diff --git a/README.md b/README.md index 12d157a..ad1259e 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,8 @@ reviews: - "src/Auth/**/*.cs" ``` -See [THEORY-OF-OPERATIONS.md][link-architecture] for the full design including fingerprinting, evidence -indexing, and compliance report formats. +See [THEORY-OF-OPERATIONS.md][link-architecture] for the theory of operations including fingerprinting, +evidence indexing, and compliance report formats. ## Installation From bb6e106d7922f6a17dc6499334379ceb8cdcd297 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:42:17 +0000 Subject: [PATCH 4/4] Rename link reference key from link-architecture to link-theory-of-operations in README.md Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ad1259e..6c9e016 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ reviews: - "src/Auth/**/*.cs" ``` -See [THEORY-OF-OPERATIONS.md][link-architecture] for the theory of operations including fingerprinting, +See [THEORY-OF-OPERATIONS.md][link-theory-of-operations] for the theory of operations including fingerprinting, evidence indexing, and compliance report formats. ## Installation @@ -177,5 +177,5 @@ By contributing to this project, you agree that your contributions will be licen [link-security]: https://sonarcloud.io/dashboard?id=demaconsulting_ReviewMark [link-nuget]: https://www.nuget.org/packages/DemaConsulting.ReviewMark [link-guide]: https://github.com/demaconsulting/ReviewMark/blob/main/docs/guide/guide.md -[link-architecture]: https://github.com/demaconsulting/ReviewMark/blob/main/THEORY-OF-OPERATIONS.md +[link-theory-of-operations]: https://github.com/demaconsulting/ReviewMark/blob/main/THEORY-OF-OPERATIONS.md [link-continuous-compliance]: https://github.com/demaconsulting/ContinuousCompliance