Executive summary
Read through the Production lens — the standard calibration. *Green* means good enough to run in production. The score is absolute and comparable across repos.
kgrzybek/modular-monolith-with-ddd is in a workable but fragile state (65%). It is not in crisis, but it carries material risk that makes change slower and incidents harder to contain if left unaddressed.
It is strongest in Event-Driven (90%) — its messaging keeps components properly decoupled. Architecture (87%) is solid too.
Most urgent: a critical security exposure was detected (see the Security & Compliance lens). Treat it as a priority regardless of the overall grade.
The area that most needs attention is Code Health (59%) — changes there are slower and more error-prone. Domain Modelling (66%) is the next concern — the domain model leaks and drifts, so business rules are harder to trust and change.
Leadership focus, highest impact first: Finish or delete the unfinished stubs (NotImplementedException… (Incompleteness & stubs); Enable <Nullable>enable</Nullable> across all projects… (Nullable reference types); Sync-over-async (deadlock risk) (Async correctness).
For scale: Medium (~23,660 production lines); rebuilding it from scratch would take roughly ~0.3 person-years (~1 engineer). Approximate, ±~30%.
It builds on a genuinely strong Event-Driven foundation (90%); the priorities above are the highest-leverage way to bring the rest up to that level.
Raise Code Health 59 → 70 (the Healthy floor) ⇒ headline 65 → ~69.
New since the last scan (11+)
- D4 · Duplicated block (28 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Mediation/MediatorModule.cs
- D4 · Duplicated block (19 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Processing/LoggingCommandHandlerWithResultDecorator.cs
- D4 · Duplicated block (19 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Processing/Outbox/OutboxModule.cs
- D4 · Duplicated block (16 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Quartz/SerilogLogProvider.cs
- D4 · Duplicated block (14 lines × 3) src/Modules/Meetings/Infrastructure/Configuration/Processing/ProcessingModule.cs
- D4 · Duplicated block (13 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Mediation/MediatorModule.cs
- D4 · Duplicated block (11 lines × 2) src/Modules/Meetings/Infrastructure/Configuration/Quartz/QuartzStartup.cs
- D5 · Off the main sequence: CompanyName.MyMeetings.Modules.UserAccess.Infrastructure
- D5 · Off the main sequence: CompanyName.MyMeetings.Modules.Meetings.Infrastructure
- D5 · Off the main sequence: CompanyName.MyMeetings.Modules.Payments.Infrastructure
- SC1 · NuGet dependencies are not locked
Rebuild cost & value ~ Modeled — €17,000–€82,000
| Cost to rebuild | €17,000–€82,000 |
| Domain complexity | Very high |
| Quality factor | 0.9× (at 65% quality) |
| Size & shape | Medium · 54% boilerplate · 37% straight-line · 9% branching logic |
This codebase represents roughly ~0.3 person-years of build effort (about ~€49,000 to rebuild). Its weakest lens is Code Health at 59% — the part of that asset most exposed by the findings below.
Top priorities
Diagnosis — what's actually going on
Trajectory
Architecture — bounded-context dependency graph
At a glance — Code Health
At a glance — Architecture
At a glance — Maturity
At a glance — Readiness
At a glance — Security
At a glance — Domain Modelling
At a glance — Event-Driven
Security & Compliance — OWASP Top-10 mapping
| OWASP category | Findings | Severity |
|---|---|---|
| A05:2021 — Security Misconfiguration | 7 | High / Critical |
| A02:2021 — Cryptographic Failures | 3 | High / Critical |
Roadmap
Top priorities: Finish or delete the unfinished stubs (NotImplementedException / empty / constant-returning bodies) — they are dead surface that looks live; Enable <Nullable>enable</Nullable> across all projects and resolve warnings rather than suppressing with `!`; Sync-over-async (deadlock risk).
| Do this | Helps | Effort | Dimension |
|---|---|---|---|
| Resolve the 2 NoWarnInCsproj finding(s) in Explicit Debt — start with _build.csproj (2). | +4.9 pts | Low | Explicit Debt |
| Finish or delete the unfinished stubs (NotImplementedException / empty / constant-returning bodies) — they are dead surface that looks live. | +5.5 pts | Medium | Incompleteness & stubs |
| Enable <Nullable>enable</Nullable> across all projects and resolve warnings rather than suppressing with `!`. | +5.5 pts | Medium | Nullable reference types |
| Sync-over-async (deadlock risk) | +5.5 pts | Medium | Async correctness |
| Thread a CancellationToken through async methods so work stops promptly on cancellation. | +5.4 pts | Medium | Cancellation propagation |
| Adopt strongly-typed ids across the domain — finish the migration or document the boundary; primitive ids invite transposed-argument bugs. | +2.0 pts | Medium | Strongly-typed ids |
| Move business rules onto the aggregates/entities they govern so invariants are enforced at the source, not in anemic services. | +2.0 pts | Medium | Rich vs anemic model |
| Make retry-prone mutations idempotent — guard each write with an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write, so a re-run doesn't double-apply. | +1.9 pts | Medium | Idempotency |
File quality
| File | Score | Band | Worst signal |
|---|---|---|---|
| src/Database/Dockerfile | 4.8 | Mixed | IaC & Container Security: Critical IaC: DS-0031 |
| src/Dockerfile | 6.2 | Mixed | IaC & Container Security: High IaC: DS-0002 |
| build/_build.csproj | 6.4 | Mixed | Explicit Debt: NoWarnInCsproj |
| src/API/CompanyName.MyMeetings.API/Modules/Meetings/MeetingComments/MeetingCommentsController.cs | 6.5 | Mixed | Change Coupling: Boundary-crossing change coupling: MeetingCommentsController.cs ↔ MeetingComment.cs |
| src/Modules/Meetings/Infrastructure/Configuration/Quartz/SerilogLogProvider.cs | 7.0 | Mixed | Code Duplication: Duplicated block (16 lines × 4) |
| src/API/CompanyName.MyMeetings.API/Modules/Payments/PriceListItems/PriceListItemsController.cs | 7.0 | Mixed | Change Coupling: Boundary-crossing change coupling: PriceListItemsController.cs ↔ PriceListItem.cs |
| src/API/CompanyName.MyMeetings.API/appsettings.json | 7.2 | Mixed | Secrets (history): Secret: generic-api-key |
| src/API/CompanyName.MyMeetings.API/tempkey.rsa | 7.2 | Mixed | Secrets (history): Secret: generic-api-key |
| src/Modules/UserAccess/Application/Authentication/Authenticate/PasswordManager.cs | 7.4 | Mixed | Code Duplication: Duplicated block (19 lines × 2) |
| src/Modules/Meetings/Infrastructure/Configuration/Mediation/MediatorModule.cs | 7.8 | Mixed | Code Duplication: Duplicated block (28 lines × 4) |
| src/Modules/Meetings/Infrastructure/Configuration/Processing/Outbox/OutboxModule.cs | 7.8 | Mixed | Code Duplication: Duplicated block (19 lines × 4) |
| src/Modules/Payments/Application/PriceListItems/ActivatePriceListItem/ActivatePriceListItemCommandHandler.cs | 7.8 | Mixed | Change Coupling: Change coupling: ActivatePriceListItemCommandHandler.cs ↔ DeactivatePriceListItemCommandHandler.cs |
| src/Modules/Payments/Application/PriceListItems/GetPriceListItem/PriceListItemsProjector.cs | 7.8 | Mixed | Change Coupling: Change coupling: PriceListItemsProjector.cs ↔ PriceListItem.cs |
| src/Tests/SUT/TestCases/CleanDatabaseTestCase.cs | 8.0 | Near-clean | Test Quality: No assertions: Prepare |
| src/Tests/SUT/TestCases/CreateMeeting.cs | 8.0 | Near-clean | Test Quality: No assertions: Prepare |
| src/Tests/SUT/TestCases/OnlyAdminTestCase.cs | 8.0 | Near-clean | Test Quality: No assertions: Prepare |
| src/Modules/Meetings/Domain/MeetingComments/MeetingComment.cs | 8.2 | Near-clean | Explicit Debt: BarePragmaDisable |
| src/API/CompanyName.MyMeetings.API/Configuration/Authorization/AuthorizationChecker.cs | 8.5 | Near-clean | Cognitive Complexity: AuthorizationChecker.CheckAllEndpoints (cognitive 16) |
| src/Modules/UserAccess/Infrastructure/Configuration/Quartz/QuartzStartup.cs | 8.5 | Near-clean | Code Duplication: Duplicated block (56 lines × 2) |
| src/Modules/Meetings/Infrastructure/Configuration/EventsBus/IntegrationEventGenericHandler.cs | 8.5 | Near-clean | Code Duplication: Duplicated block (21 lines × 4) |
Methodology & how to trust this report
Watchdog is a deep, periodic assessment — run each sprint, monthly, or quarterly, taking the time to go wider and deeper than a quick check and surfacing in one coherent report what you'd otherwise piece together from a dozen separate tools. It scores deterministically: the same commit yields the same score, every run. 63 of 63 evaluated dimensions are computed purely by tools and static analysis (confidence 1.0); none rely on LLM judgement. Overall confidence is 0.7 — the weighted average across measured dimensions; it falls as more of the score leans on LLM-assisted judgement and rises when it's fully tool-backed.
What we checked — 63 dimensions across the health lenses
- Can you open the finding? Real findings cite a repo-relative file and line you can open at the cited line — never an absolute scratch path. Here, 103 of 139 do; the remainder are repo-wide signals — a dimension-level measurement, not a single line.
- Is there a tool behind the number? Every score below names the method that produced it — Roslyn, git, a scanner, or (for a handful of documentation/naming dimensions) an LLM labelled sampled · advisory — not a narrative.
- Does re-running give the same result? Run it again on the same commit and the score — and this report, byte for byte — is identical. A report whose numbers move between runs is describing the run, not the code.
Tools & methods
| Method | Backs | Version | Evaluator |
|---|---|---|---|
| Roslyn static analysis | Complexity, cohesion, coupling, dead code, API surface, layering | 5.3.0 | ✓ deterministic |
| Native secret scanner | Hardcoded secrets / credentials | 1.0.0 | ✓ deterministic |
| jscpd | Code duplication | — | ✓ deterministic |
| Coverage (coverlet / dotnet-coverage) | Line & branch coverage | 10.0.301 | ✓ deterministic |
| NuGet / dotnet | Outdated, vulnerable & deprecated dependencies | 10.0.301 | ✓ deterministic |
| git / LibGit2Sharp | Churn hotspots, knowledge concentration, history | 2.43.0 · 0.31.0 | ✓ deterministic |
| gitleaks · semgrep · trivy · checkov | Secrets in history, SAST, CVEs, IaC & container, PII / GDPR | 1.86.0 · 0.69.3 | ✓ deterministic |
| LLM (sampled · advisory) | Documentation quality, ADR conformance, naming — sampled over a bounded sample; advisory, never a deterministic measurement | — | ◐ LLM · sampled · advisory |
Run transparency — what happened this run
- D30 Dependency Vulnerabilities — scanner not present in this environment — The backing tool was not installed where this scan ran, so this dimension was not scored. Install the tool (or run in the hosted environment, where it is always present) for a graded result.
- D32 Data Compliance (PII/GDPR) — scanner not present in this environment — The backing tool was not installed where this scan ran, so this dimension was not scored. Install the tool (or run in the hosted environment, where it is always present) for a graded result.
- D33 JS/npm Dependency Vulnerabilities — scanner not present in this environment — The backing tool was not installed where this scan ran, so this dimension was not scored. Install the tool (or run in the hosted environment, where it is always present) for a graded result.
- D36 Supply-chain Provenance & Signing — scanner not present in this environment — The backing tool was not installed where this scan ran, so this dimension was not scored. Install the tool (or run in the hosted environment, where it is always present) for a graded result.
- D37 Vulnerability-disclosure Policy — scanner not present in this environment — The backing tool was not installed where this scan ran, so this dimension was not scored. Install the tool (or run in the hosted environment, where it is always present) for a graded result.
- D38 OSV Dependency Vulnerabilities — scanner not present in this environment — The backing tool was not installed where this scan ran, so this dimension was not scored. Install the tool (or run in the hosted environment, where it is always present) for a graded result.
Limitations & what we did not check
Watchdog assesses the repository exactly as committed, and only the repository. By design it does not reach outside the source tree: the live cloud account, the running CI/CD pipeline, the host's branch-protection and approval rules, the production configuration, or a restore actually exercised against a backup are all out of scope. That boundary is a feature, not a gap — a repo-relative, deterministic scan re-runs identically on any commit and every finding opens at a real file and line, where a live audit can neither be reproduced nor traced. The visible consequence is that controls which leave no in-repo evidence are reported as "not evidenced" and excluded from the score rather than awarded a number a static scan cannot justify.
Per-dimension blind spots
- D1 Cyclomatic Complexity: Cyclomatic complexity counts branches statically — it cannot tell an essential decision tree from accidental tangle, nor see complexity that lives in data or configuration (large switch-case token tables, DSL lexers/parsers, data-as-code rule tables) rather than control flow: a tokenizer's many single-character cases read as high complexity though each branch is trivial.
- D2 Cognitive Complexity: Cognitive-complexity heuristics approximate how hard code is to follow; genuine domain difficulty and well-named intent that eases reading are not captured.
- D3 God Classes: "God class" is sized by members and responsibilities visible in the type — a deliberately broad facade over a coherent subsystem can read the same as an accidental grab-bag. For front-end JS the file-length check is cohesion-aware (a single-responsibility module — one class/IIFE — earns a 3× threshold), but cohesion is approximated from top-level declarations, not true dependency structure.
- D4 Code Duplication: Duplication is token-similarity (jscpd) — it finds copy-paste, not semantic duplication expressed differently. Committed machine-written code (EF migration scaffolds, *.Designer.cs, model snapshots) is EXCLUDED — its repetition is the tool's, not the team's — so the score reflects hand-written duplication only; the generated footprint is reported separately under Solution Shape.
- D5 Coupling: Coupling is measured between projects/assemblies — runtime coupling through DI, reflection, messaging or shared databases is invisible to a static reference graph.
- D6 Cohesion (LCOM4): LCOM4 cohesion is syntactic — it infers connectivity from which methods touch which fields/methods by name, not from real runtime behaviour or intent.
- D9 Test Distribution: The test-pyramid shape is inferred from project/folder naming and references, with a single test host bucketed per-file by its path tier and content signals — a suite that names tiers unconventionally and gives no per-file signal can still be mis-bucketed.
- D10 Test Quality: Assertion density is structural — it cannot tell a meaningful behavioural assertion from a trivial one, only that an assertion is present.
- D11 Test Reliability: Flakiness is inferred from history/markers — Watchdog runs the suite once (for coverage), not the repeated runs under varied conditions that reveal nondeterminism, so a flaky test never recorded as failing is invisible here.
- D12 Dependency Hygiene: Dependency health reads manifests and lockfiles — a vulnerability in a vendored/copied dependency, or risk from how a dependency is actually used, is outside this view.
- D13 Secret Scanning: Secret detection is signature- and entropy-based on the current tree — a secret that does not match a known pattern, or one already rotated, will not be flagged (a clean scan is "nothing matched", not "no secrets exist").
- D14 License Compliance: License compatibility is checked against declared package metadata and a policy — mislabelled or missing license metadata, and obligations that depend on how you distribute, are not resolved here.
- D15 Churn × Complexity Hotspots: Churn hotspots come from git history — a freshly imported or squashed repository has no churn signal, and recent rewrites can mask a historically risky file.
- D16 Bus Factor: Bus-factor is a time-decayed model of commit attribution (who has recently, repeatedly worked a file), not comprehension — pairing, review and reading-without-committing spread knowledge it can't see; bot commits and shared accounts still distort it.
- D17 Explicit Debt: Acknowledged-debt signals (TODO/FIXME, suppressions, dead code) are textual — undocumented debt that nobody marked, and debt that lives in design rather than annotations, is invisible. Committed machine-written code (EF migrations, designer files, snapshots) is excluded — it is never the team's dead code to delete.
- D18 Solution Shape: Build integrity reflects whether the solution compiled in this environment — a build that needs a private feed, a specific SDK, or a generated file absent from the repo can read as broken when it is merely unreproducible here.
- D20 ADR Quality: ADR quality is an LLM read of the decision records present — it cannot know about decisions made and never recorded, and its verdict is sampled and advisory.
- D23 Boundary Type-Coupling: Boundary leakage is detected from type references across detected contexts — leaks that flow through primitives, serialization or shared infrastructure may not surface as a typed reference.
- D26 Project Cohesion: Project focus is sized from members/namespaces per project — a project that is broad by deliberate design reads the same as one that has sprawled.
- D28 Secrets (history): Secret-history scanning sweeps the git log for known patterns — a secret that predates the available history, or never matched a signature, is not found (clean means "nothing matched in the history we can see").
- D29 Static Analysis (SAST): SAST findings are pattern-based (semgrep) — it finds classes of bug it has rules for; logic flaws, auth/authorization gaps and issues needing runtime context are out of reach (and clean means "no rule matched").
- D31 IaC & Container Security: IaC scanning checks Dockerfiles/Terraform/Kubernetes against best-practice rules — it cannot see the live cloud account, runtime configuration, or drift between the committed config and what is actually deployed.
- D34 Knowledge Freshness: Freshness is decayed commit RECENCY, not comprehension — code read often but rarely committed reads as orphaned, and stable code that genuinely needs no changes is penalised the same as forgotten code; bot/squash commits distort it like the bus factor.
- D35 Change Coupling: Change coupling is co-change in COMMITS — files split across separate commits, or coupled only through a shared config/build step, read as uncoupled, and a sweeping commit (rename/format) is excluded so it doesn't couple everything. It shows that files change together, not WHY: a high coupling can be a healthy cohesive pair as readily as a hidden leak.
- AX10 Code composition: Role is inferred from namespace/folder convention, not semantics — a domain concept living in a folder named "Services" reads as application, and the split is lines-of-code, not business value. The business-logic-share score is a SOFT, FLOORED signal: it contributes to the Architecture lens but is floored at the Critical gate, so an infrastructure-heavy design (a gateway, an ETL, a driver) is legitimately low without being nuked to zero.
- AX9 CQS / query purity: Handlers are found by interface/name convention — a query handler using neither is not seen. Mutation is a resolved write/publish invocation (SaveChanges/repository/bus), so a write hidden behind a hand-rolled wrapper, reflection, or a string-keyed service locator resolves to a non-persistence type and isn't flagged; it detects that a query writes state, not whether the write is a legitimate read-side cache update. Clean means "no resolved write/publish in a query body", not a proof of CQS purity.
- DM4 Rich vs anemic model: Behaviour is detected as state mutation inside a method body — a method that enforces an invariant by validating-and-throwing without mutating reads as a query, and mutation delegated through an interface the scan can't resolve isn't credited; entities with zero public properties still drop out of the population. It detects that state changes, not whether the rule is correct.
- DM6 Domain ↔ infrastructure boundary: Infrastructure reached through a hand-rolled wrapper, a domain-named facade, reflection, or a string-keyed service locator resolves to a non-infra type and isn't seen; the body scan is symbol resolution over syntax, not full dataflow. A clean result means "no resolved infra reference in a domain body", not a proof of purity.
- ED5 Idempotency: Idempotency is judged from the handler body's visible writes and guards — a guard enforced by a database unique constraint, a broker's exactly-once delivery, or a domain method whose no-op-when-applied logic the scan can't follow may read as at-risk; the at-risk candidates are confirmed by a SAMPLED LLM verdict (advisory, not exhaustive) and degrade to heuristic-only when no model is configured. It flags the at-least-once double-apply SHAPE, not a runtime proof of a duplicate effect.
- P4 Deployment & Rollback: Approval/branch-protection rules live in repository settings the scan cannot see — only their in-repo evidence (config files, workflows) is checked, so a control enforced purely in the host's settings reads as "not evidenced".
The LLM boundary
Dimensions
D1 · Cyclomatic Complexity
0 method(s) exceeded the cyclomatic complexity threshold of 15.
D2 · Cognitive Complexity
1 method(s) exceeded the cognitive complexity threshold of 15; the worst was AuthorizationChecker.CheckAllEndpoints at 16.
D3 · God Classes
0 god class(es) detected.
D4 · Code Duplication
17 duplicated block group(s) detected.
D5 · Coupling
47 projects, 0 dependency cycle(s), 0 unstable depended-on project(s).
What to do
- Resolve the 6 Off the main sequence finding(s) in Coupling. — One of this dimension's main actionable groups (6 warning-level).
- Enforce Coupling in CI to reach Verified (currently Documented). — Hardens enforcement from Documented toward Prevented — provenance only; does not change the score.
D6 · Cohesion (LCOM4)
6 of 95 classes have LCOM4 above 3.
D9 · Test Distribution
277 test methods: 239 unit, 38 integration, 0 BDD, 0 e2e.
D10 · Test Quality
0 skipped, 3 zero-assertion, no mocking-framework packages referenced (hand-written doubles or no mocking) across 280 tests.
D11 · Test Reliability
0 flaky across 3 measured tier(s). unit: measured (0 flaky); integration: measured (0 flaky); other: measured (0 flaky).
D12 · Dependency Hygiene
0 outdated, 0 vulnerable, 0 deprecated packages.
D13 · Secret Scanning
Secret scan ran and found no leaked secrets.
D14 · License Compliance
0 of 5 packages use a banned license.
D15 · Churn × Complexity Hotspots
No churn × complexity hotspots in the window.
D16 · Bus Factor
No source file's living knowledge is concentrated in a single author.
D17 · Explicit Debt
3 deducted debt markers + 0 dead symbols across 23460 LoC (0.1/KLoC) → score 9.8.
D18 · Solution Shape
47 projects, 1064 .cs files, 32419 hand-written lines of code (23460 production / 8959 test), 96 inter-project edges (build failed).
D20 · ADR Quality
No architecture decision records were found.
What to do
- Resolve the 1 No ADRs found finding(s) in ADR Quality. — One of this dimension's main actionable groups (1 recommendation-level).
D23 · Boundary Type-Coupling
1 domain type(s) cross context boundaries across 9 contexts.
D26 · Project Cohesion
0 of 47 projects flagged as possibly oversized/incoherent.
D28 · Secrets (history)
2 finding(s): 0 critical, 2 high, 0 medium, 0 low. Remediation for historically-committed secrets is credential rotation — they remain in history regardless of later deletion.
What to do
- Resolve the 2 Secret finding(s) in Secrets (history) — start with appsettings.json, tempkey.rsa. — One of this dimension's main actionable groups (2 issue-level).
- Resolve the 1 Rotate the exposed credentials finding(s) in Secrets (history). — One of this dimension's main actionable groups (1 recommendation-level).
D29 · Static Analysis (SAST)
semgrep found no security issues.
D31 · IaC & Container Security
7 finding(s): 1 critical, 2 high, 0 medium, 4 low.
What to do
- Resolve the 2 High IaC finding(s) in IaC & Container Security — start with Dockerfile (2). — One of this dimension's main actionable groups (2 issue-level).
- Resolve the 1 Critical IaC finding(s) in IaC & Container Security — start with Dockerfile. — One of this dimension's main actionable groups (1 issue-level).
- Resolve the 4 Low IaC finding(s) in IaC & Container Security — start with Dockerfile (4). — One of this dimension's main actionable groups (4 recommendation-level).
D34 · Knowledge Freshness
100 of 100 significant source file(s) are orphaned — their living knowledge has decayed to nothing, so no one currently understands them. The largest is src/Modules/Meetings/Domain/Meetings/Meeting.cs.
What to do
- Resolve the 1 Dormant codebase finding(s) in Knowledge Freshness. — One of this dimension's main actionable groups (1 recommendation-level).
D35 · Change Coupling
Strongest change-coupling: ActivatePriceListItemCommandHandler.cs↔DeactivatePriceListItemCommandHandler.cs 70%; ActivatePriceListItemCommandHandler.cs↔ChangePriceListItemAttributesCommandHandler.cs 60%; ChangePriceListItemAttributesCommandHandler.cs↔DeactivatePriceListItemCommandHandler.cs 60%
Frontend & cross-cutting dimensions
AX1 · Captive dependencies
AX10 · Code composition
AX2 · Stateful singletons
AX3 · Project dependency cycles
AX4 · Dependency direction
AX5 · Architecture & structure
AX6 · Interface segregation
AX7 · Slice cohesion
AX9 · CQS / query purity
C1 · Data Protection
What to do
- Strengthen data-at-rest protection: vault your keys (Azure Key Vault / AWS KMS / IDataProtector key ring) and encrypt the most sensitive columns (EF HasConversion encryption or provider-native column encryption) — partial coverage still leaves gaps.
C2 · Access Controls
DM1 · Aggregate boundaries
DM2 · Strongly-typed ids
- `MeetingEditedDomainEvent.MeetingId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingId { Guid Value }`). — MeetingEditedDomainEvent.cs:12
- `MeetingFeePaymentCreatedDomainEvent.MeetingFeeId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingFeeId { Guid Value }`). — MeetingFeePaymentCreatedDomainEvent.cs:17
- `MeetingFeePaymentCreatedDomainEvent.MeetingFeePaymentId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingFeePaymentId { Guid Value }`). — MeetingFeePaymentCreatedDomainEvent.cs:19
- `MeetingFeePaymentExpiredDomainEvent.MeetingFeePaymentId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingFeePaymentId { Guid Value }`). — MeetingFeePaymentExpiredDomainEvent.cs:13
- `MeetingFeePaymentPaidDomainEvent.MeetingFeePaymentId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingFeePaymentId { Guid Value }`). — MeetingFeePaymentPaidDomainEvent.cs:13
- `MeetingFeeCanceledDomainEvent.MeetingFeeId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingFeeId { Guid Value }`). — MeetingFeeCanceledDomainEvent.cs:13
- `MeetingFeeCreatedDomainEvent.MeetingFeeId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingFeeId { Guid Value }`). — MeetingFeeCreatedDomainEvent.cs:23
- `MeetingFeeCreatedDomainEvent.PayerId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PayerId { Guid Value }`). — MeetingFeeCreatedDomainEvent.cs:25
- `MeetingFeeCreatedDomainEvent.MeetingId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingId { Guid Value }`). — MeetingFeeCreatedDomainEvent.cs:27
- `MeetingFeeExpiredDomainEvent.MeetingFeeId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingFeeId { Guid Value }`). — MeetingFeeExpiredDomainEvent.cs:13
- `MeetingFeePaidDomainEvent.MeetingFeeId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct MeetingFeeId { Guid Value }`). — MeetingFeePaidDomainEvent.cs:13
- `PayerCreatedDomainEvent.PayerId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PayerId { Guid Value }`). — PayerCreatedDomainEvent.cs:7
- `PriceListItemActivatedDomainEvent.PriceListItemId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PriceListItemId { Guid Value }`). — PriceListItemActivatedDomainEvent.cs:12
- `PriceListItemAttributesChangedDomainEvent.PriceListItemId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PriceListItemId { Guid Value }`). — PriceListItemAttributesChangedDomainEvent.cs:17
- `PriceListItemCreatedDomainEvent.PriceListItemId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PriceListItemId { Guid Value }`). — PriceListItemCreatedDomainEvent.cs:25
- `PriceListItemDeactivatedDomainEvent.PriceListItemId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PriceListItemId { Guid Value }`). — PriceListItemDeactivatedDomainEvent.cs:12
- `SubscriptionPaymentCreatedDomainEvent.SubscriptionPaymentId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionPaymentId { Guid Value }`). — SubscriptionPaymentCreatedDomainEvent.cs:25
- `SubscriptionPaymentCreatedDomainEvent.PayerId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PayerId { Guid Value }`). — SubscriptionPaymentCreatedDomainEvent.cs:27
- `SubscriptionPaymentExpiredDomainEvent.SubscriptionPaymentId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionPaymentId { Guid Value }`). — SubscriptionPaymentExpiredDomainEvent.cs:13
- `SubscriptionPaymentPaidDomainEvent.SubscriptionPaymentId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionPaymentId { Guid Value }`). — SubscriptionPaymentPaidDomainEvent.cs:13
- `SubscriptionRenewalPaymentCreatedDomainEvent.SubscriptionRenewalPaymentId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionRenewalPaymentId { Guid Value }`). — SubscriptionRenewalPaymentCreatedDomainEvent.cs:27
- `SubscriptionRenewalPaymentCreatedDomainEvent.PayerId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PayerId { Guid Value }`). — SubscriptionRenewalPaymentCreatedDomainEvent.cs:29
- `SubscriptionRenewalPaymentCreatedDomainEvent.SubscriptionId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionId { Guid Value }`). — SubscriptionRenewalPaymentCreatedDomainEvent.cs:31
- `SubscriptionRenewalPaymentPaidDomainEvent.SubscriptionRenewalPaymentId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionRenewalPaymentId { Guid Value }`). — SubscriptionRenewalPaymentPaidDomainEvent.cs:15
- `SubscriptionRenewalPaymentPaidDomainEvent.SubscriptionId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionId { Guid Value }`). — SubscriptionRenewalPaymentPaidDomainEvent.cs:17
- `SubscriptionCreatedDomainEvent.PayerId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PayerId { Guid Value }`). — SubscriptionCreatedDomainEvent.cs:25
- `SubscriptionCreatedDomainEvent.SubscriptionPaymentId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionPaymentId { Guid Value }`). — SubscriptionCreatedDomainEvent.cs:27
- `SubscriptionCreatedDomainEvent.SubscriptionId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionId { Guid Value }`). — SubscriptionCreatedDomainEvent.cs:29
- `SubscriptionExpiredDomainEvent.SubscriptionId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionId { Guid Value }`). — SubscriptionExpiredDomainEvent.cs:15
- `SubscriptionRenewedDomainEvent.SubscriptionId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct SubscriptionId { Guid Value }`). — SubscriptionRenewedDomainEvent.cs:21
- `SubscriptionRenewedDomainEvent.PayerId` is a raw `Guid` — give it a strongly-typed id (`readonly record struct PayerId { Guid Value }`). — SubscriptionRenewedDomainEvent.cs:25
What to do
- Adopt strongly-typed ids across the domain — finish the migration or document the boundary; primitive ids invite transposed-argument bugs.
DM3 · Integration-event coupling
DM4 · Rich vs anemic model
- `Member` is an aggregate/entity with 1 data propert(ies) but no state-changing behaviour (only data and queries) — the business logic lives in a service. (×2) — Member.cs:7, Member.cs:6
- `User` is an aggregate/entity with 1 data propert(ies) but no state-changing behaviour (only data and queries) — the business logic lives in a service. — User.cs:6
What to do
- Move business rules onto the aggregates/entities they govern so invariants are enforced at the source, not in anemic services.
DM5 · Encapsulated state
DM6 · Domain ↔ infrastructure boundary
- `MeetingGroupProposalEntityTypeConfiguration` (domain layer) uses `EF Core` inside a method body — infrastructure reached without it appearing in any signature. — MeetingGroupProposalEntityTypeConfiguration.cs:8
- `MeetingGroupProposalRepository` (domain layer) uses `EF Core` inside a method body — infrastructure reached without it appearing in any signature. — MeetingGroupProposalRepository.cs:6
- `MemberEntityTypeConfiguration` (domain layer) uses `EF Core` inside a method body — infrastructure reached without it appearing in any signature. — MemberEntityTypeConfiguration.cs:7
- `MemberRepository` (domain layer) uses `EF Core` inside a method body — infrastructure reached without it appearing in any signature. — MemberRepository.cs:6
What to do
- Invert domain→infrastructure dependencies: declare interfaces in the domain, implement them in infrastructure (Dependency Inversion).
DM8 · Value-object opportunities
- The parameters [email, firstname, id, lastname, login, name] travel together across 3 signatures — that's a missing value object. Extracting them into one type (e.g. `Address`, `Money`, `Coordinate`) removes repetition, prevents argument-order mistakes, and gives the concept a home for its rules. — Member.cs:28
What to do
- Extract recurring primitive parameter clusters into value objects so the concept (and its rules) lives in one place.
ED1 · Handler temporal coupling
ED2 · Event/command shape
ED3 · Event naming
- `DomainEventBase` reads as an instruction, not a fact that happened. Events describe something that already occurred — name them in the past tense (e.g. `OrderPlaced`, `PaymentCaptured`) so the ubiquitous language stays clear. — DomainEventBase.cs:3
- `IDomainEvent` reads as an instruction, not a fact that happened. Events describe something that already occurred — name them in the past tense (e.g. `OrderPlaced`, `PaymentCaptured`) so the ubiquitous language stays clear. — IDomainEvent.cs:5
- `DomainNotificationBase` reads as an instruction, not a fact that happened. Events describe something that already occurred — name them in the past tense (e.g. `OrderPlaced`, `PaymentCaptured`) so the ubiquitous language stays clear. — DomainNotificationBase.cs:5
- `IDomainEventNotification` reads as an instruction, not a fact that happened. Events describe something that already occurred — name them in the past tense (e.g. `OrderPlaced`, `PaymentCaptured`) so the ubiquitous language stays clear. (×2) — IDomainEventNotification.cs:5, IDomainEventNotification.cs:10
What to do
- Name events in the past tense — they record facts that already happened.
ED4 · Outbox / dual-write
- `ProcessOutboxCommandHandler.Handle` writes to the database AND publishes to the message bus in the same flow, with no outbox referenced in this path. These two writes aren't atomic — a crash between them either loses the message (DB committed, publish failed) or emits a phantom event (publish succeeded, DB rolled back). Use the transactional outbox pattern (e.g. MassTransit's EF/Marten outbox) so the message is committed in the same transaction as the state change and dispatched afterwards. — ProcessOutboxCommandHandler.cs:32
What to do
- Adopt the transactional outbox pattern so DB writes and message publishes commit atomically — no lost or phantom events on a crash.
ED5 · Idempotency
- `AddAdminUser.AddAdminUserCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — AddAdminUserCommandHandler.cs:17
- `CreateUser.CreateUserCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — CreateUserCommandHandler.cs:15
- `MeetingCommentingConfigurations.MeetingCreatedEventHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — MeetingCreatedEventHandler.cs:21
- `AddMeetingComment.AddMeetingCommentCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — AddMeetingCommentCommandHandler.cs:33
- `AddMeetingCommentLike.AddMeetingCommentLikeCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — AddMeetingCommentLikeCommandHandler.cs:30
- `AddMeetingCommentReply.AddReplyToMeetingCommentCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — AddReplyToMeetingCommentCommandHandler.cs:28
- `ProposeMeetingGroup.ProposeMeetingGroupCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — ProposeMeetingGroupCommandHandler.cs:21
- `CreateNewMeetingGroup.CreateNewMeetingGroupCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — CreateNewMeetingGroupCommandHandler.cs:20
- `CreateMeeting.CreateMeetingCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — CreateMeetingCommandHandler.cs:24
- `CreateMember.CreateMemberCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) (×2) — CreateMemberCommandHandler.cs:15, CreateMemberCommandHandler.cs:15
- `ChangeSubscriptionExpirationDateForMember.ChangeSubscriptionExpirationDateForMemberCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — ChangeSubscriptionExpirationDateForMemberCommandHandler.cs:15
- `Outbox.ProcessOutboxCommandHandler.Handle` mutates persistent state (an event publish) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) (×5) — ProcessOutboxCommandHandler.cs:32, ProcessOutboxCommandHandler.cs:32, ProcessOutboxCommandHandler.cs:32, …
- `AcceptMeetingGroupProposal.MeetingGroupProposalAcceptedNotificationHandler.Handle` mutates persistent state (an event publish) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — MeetingGroupProposalAcceptedNotificationHandler.cs:16
- `RequestMeetingGroupProposalVerification.RequestMeetingGroupProposalVerificationCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — RequestMeetingGroupProposalVerificationCommandHandler.cs:17
- `RegisterNewUser.NewUserRegisteredPublishEventHandler.Handle` mutates persistent state (an event publish) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — NewUserRegisteredPublishEventHandler.cs:16
- `RegisterNewUser.RegisterNewUserCommandHandler.Handle` mutates persistent state (a repository write) with no visible idempotency guard. Under a client retry or at-least-once redelivery a re-run could double-apply it — confirm it's safe to re-run, or add an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write. (Configure an LLM to auto-classify this.) — RegisterNewUserCommandHandler.cs:19
What to do
- Make retry-prone mutations idempotent — guard each write with an exists/dedup check, an upsert, an idempotency-key/inbox, or a versioned write, so a re-run doesn't double-apply.
GD1 · Unfinished & placeholder code
- A shipped member still throws NotImplementedException — generated scaffolding that was never completed. Implement it or remove the dead surface. (×16) — CommandsScheduler.cs:40, SerilogLogProvider.cs:55, SerilogLogProvider.cs:60, …
- A placeholder string ("_changeMemberId") is still in shipped code — typical of generated boilerplate that was never filled in. — MeetingEntityTypeConfiguration.cs:21
- A placeholder string ("ChangeMemberId") is still in shipped code — typical of generated boilerplate that was never filled in. — MeetingEntityTypeConfiguration.cs:21
What to do
- Finish or delete NotImplementedException stubs and replace placeholder literals before shipping.
IC1 · Incompleteness & stubs
- `SerilogLogProvider` has 3 unfinished members out of 4 — a scaffolded type that was never implemented. (×5) — SerilogLogProvider.cs:6, SerilogLogProvider.cs:6, SerilogLogProvider.cs:6, …
- `OpenNestedContext` is a shipped member whose whole body throws NotImplementedException — scaffolding that was never completed. Implement it or remove the dead surface. (×5) — SerilogLogProvider.cs:53, SerilogLogProvider.cs:53, SerilogLogProvider.cs:53, …
- `OpenMappedContext` is a shipped member whose whole body throws NotImplementedException — scaffolding that was never completed. Implement it or remove the dead surface. (×10) — SerilogLogProvider.cs:58, SerilogLogProvider.cs:63, SerilogLogProvider.cs:58, …
- `Handle` looks like it should compute a result but its body just returns a constant — a placeholder return that was never filled in. — MemberCratedNotificationHandler.cs:7
- `EnqueueAsync` is a shipped member whose whole body throws NotImplementedException — scaffolding that was never completed. Implement it or remove the dead surface. — CommandsScheduler.cs:38
- `When` looks like it should compute a result but its body just returns a constant — a placeholder return that was never filled in. — ProjectorBase.cs:7
- A line of code has been commented out rather than removed — dead weight that rots and confuses. Delete it (version control remembers). (×4) — Startup.cs:120, MeetingsContext.cs:48, EventsBusStartup.cs:19, …
- `StartConsuming` has an empty body — confirm it's an intentional no-op and not an unfinished method. — InMemoryEventBusClient.cs:31
- A test is skipped/ignored — coverage that looks present but never runs. Re-enable it or delete it so the green run means something. — SubscriptionLifecycleTests.cs:21
What to do
- Finish or delete the unfinished stubs (NotImplementedException / empty / constant-returning bodies) — they are dead surface that looks live.
- Clear the softer debt: remove commented-out code and dead branches, re-enable or delete skipped tests, and replace blanket warning suppressions with targeted ones.
M1 · Documentation (README)
What to do
- Add a README to the 47 of 47 project(s) that lack one — worth up to 2 pts.
M2 · Architecture documentation
What to do
- Grow the ADR log (currently 17) — reach 20 to raise the maturity tier; document significant decisions as they're made.
M3 · Folder & project structure
- Test projects aren't grouped under a tests/ folder — the test surface isn't separable from production code at a glance.
What to do
- Group test projects under tests/ (or test/, spec/) so the test surface is discoverable and CI can scope it.
P1 · CI/CD gates
P2 · Observability
- Only 9/14 service-like projects use logging (pure contract/DTO projects are excluded — they have nothing to log).
What to do
- Extend structured logging to the remaining service-like projects so the whole executable surface is diagnosable in production.
- Consider OpenTelemetry tracing/metrics and a health-check endpoint for operability.
P3 · Security & performance tooling
What to do
- Enable Dependabot/Renovate or a dependency-review gate.
- Add gitleaks/trufflehog in CI to block PRs that introduce committed secrets.
P4 · Deployment & Rollback
- Deployment automation exists but no readiness/liveness probes, rolling-update strategy, lifecycle hooks or migration job were evidenced — a bad release is harder to detect and reverse.
What to do
- Add readiness/liveness probes and a rolling-update (or blue/green) strategy so a bad release is caught and rolled back automatically.
- Add an approval/environment gate (required reviewers / protection rules) before production promotion.
P8 · Schema migrations
S1 · Web-Security Posture
- `RequireHttpsMetadata = false` allows the OIDC discovery doc to be fetched over plain HTTP. Safe for loopback-only fetches (Aspire / on-host); risky for any other path. — IdentityConfiguration.cs:29
- No Content-Security-Policy / X-Frame-Options / X-Content-Type-Options configuration found — defense in depth, even when a reverse proxy could set them. (−2.0 on this card.)
- No CookieSecurePolicy/HttpOnly/SameSite configuration found. (−1.5 on this card; skip if the app sets no cookies.)
What to do
- Set RequireHttpsMetadata = true in prod (or pin MetadataAddress to a localhost URL the API can hit directly).
- Add security response headers (Content-Security-Policy, X-Frame-Options, X-Content-Type-Options) — defense in depth, even when a reverse proxy could set them.
- Set secure cookie flags — CookieSecurePolicy.Always, HttpOnly, and SameSite (Strict/Lax) on auth/session cookies. Skip only if the app sets no cookies.
X1 · Async correctness
- Blocking on a Task with `.Wait()`/`.GetAwaiter().GetResult()` can deadlock (and wastes a thread). Make the caller `async` and `await` instead. (×25) — QuartzStartup.cs:24, QuartzStartup.cs:28, QuartzStartup.cs:54, …
What to do
- Sync-over-async (deadlock risk)
X2 · Cancellation propagation
- Only 159/338 async methods accept a CancellationToken, so requests can't be cancelled cleanly under load or on client disconnect. In Blazor Server circuits and other short-write hosts, omitting it can be an accepted convention — judge against your hosting model.
- No CancellationToken parameter — work can't be cancelled cleanly on disconnect/shutdown. (×25) — CorrelationMiddleware.cs:13, MeetingGroupProposalsController.cs:21, MeetingGroupProposalsController.cs:32, …
What to do
- Thread a CancellationToken through async methods so work stops promptly on cancellation.
X3 · Exception handling
X4 · Structured logging
X5 · Nullable reference types
- 0/27 projects enable <Nullable>enable</Nullable>. NRTs catch a whole class of null-deref bugs at compile time.
What to do
- Enable <Nullable>enable</Nullable> across all projects and resolve warnings rather than suppressing with `!`.
Reference — by lens
| Lens | Score | Rating | Impact |
|---|---|---|---|
| Code Health | 59% | Adequate — gated by X5 | Capped at Fair by a Critical contributor — resolve it before relying on this lens. |
| Architecture | 87% | Strong | Solid. |
| Maturity | 76% | Adequate — gated by D34 | Capped at Fair by a Critical contributor — resolve it before relying on this lens. |
| Readiness | 66% | Adequate | Acceptable, with room to improve. |
| Security | 75% | Strong | Solid. |
| Domain Modelling | 66% | Adequate — gated by DM2 | Capped at Fair by a Critical contributor — resolve it before relying on this lens. |
| Event-Driven | 90% | Exemplary | Strongest area. |
Not included — 41 check(s) not relevant to this codebase
- AC1 Text alternatives — No web markup found — accessibility is not applicable to this repository.
- AC2 Forms & labels — No web markup found — accessibility is not applicable to this repository.
- AC3 Page structure — No web markup found — accessibility is not applicable to this repository.
- AC4 Keyboard semantics — No web markup found — accessibility is not applicable to this repository.
- AC5 ARIA correctness — No web markup found — accessibility is not applicable to this repository.
- AC6 Visual & motion safety — No web markup found — accessibility is not applicable to this repository.
- AC7 A11y enforcement — No web markup found — accessibility is not applicable to this repository.
- AX8 Test isolation — no test/production split to check
- AXB2 Runtime readiness — no data
- C3 Audit Trail — Repo shows no audit-logging mechanism (IAuditable, an immutable audit log, an EF SaveChanges interceptor) for sensitive changes — absence of evidence is not evidence of a working control. Record an audit trail in code (or document where it lives) so this dimension can be scored.
- C4 Data Retention — Repo shows no data-retention / TTL / cleanup mechanism for personal data — absence of evidence is not evidence of a working control. Define retention periods and a purge/cleanup job (or TTL) in code, or document where retention is enforced, so this dimension can be scored.
- C5 Data-Subject Rights — Repo shows no corroborated data-subject-rights mechanism (erasure / export-portability / consent) tied to a subject id or GDPR vocabulary — absence of evidence is not evidence of a working control. Implement erasure, data export/portability and consent tracking over the subject's records.
- D19 Documentation Quality — LLM dimension skipped
- D21 Naming Consistency — LLM dimension skipped
- D22 Internal API Consistency — LLM dimension skipped
- D24 Comment Value — LLM dimension skipped
- D25 ADR Conformance — no ADRs to check
- D27 Navigability — Navigability unmeasured — symbol resolution incomplete
- D30 Dependency Vulnerabilities — Not applicable
- D32 Data Compliance (PII/GDPR) — Not applicable
- D33 JS/npm Dependency Vulnerabilities — Not applicable
- D36 Supply-chain Provenance & Signing — Not applicable
- D37 Vulnerability-disclosure Policy — Not applicable
- D38 OSV Dependency Vulnerabilities — Not applicable
- D39 IL Efficiency — IL metrics not applicable
- D7 Architectural Integrity — No checkable ADRs to assess
- D8 Code Coverage — Coverage not measured
- DM7 Repository granularity — no repository abstraction detected (e.g. uses a document session)
- ES1 Event Sourcing — applicable but skipped (2/3 markers — below the conservative bar): an event-store package (Marten/EventStore); 7 aggregate(s) with Apply/When folds
- M4 Documentation accuracy — LLM not available — accuracy is the Tier-2 layer and needs a reachable model.
- P12 CI test-gate honesty — no data
- P5 DR & Backup — not evidenced — repo shows no backup/RTO/RPO controls; absence of evidence is not evidence of a working control
- P6 Release Hygiene — not evidenced — no changelog, version stamp or semver release tag in the repo
- P7 Outbound HTTP resilience — no outbound HTTP usage detected
- P9 Domain vs controller coverage — no coverage report found on disk — run tests with `--collect:"XPlat Code Coverage"` (or in CI) to enable this cross-layer check
- PF1 Benchmark discipline — Performance is assessed only for perf-relevant repos — a packaged library, one that ships benchmarks, or one already using allocation-aware APIs. This repo isn't one, so the Performance lens is not applicable and is excluded from the score.
- PF2 Allocation hygiene — Performance is assessed only for perf-relevant repos — a packaged library, one that ships benchmarks, or one already using allocation-aware APIs. This repo isn't one, so the Performance lens is not applicable and is excluded from the score.
- PF3 Async & latency hygiene — Performance is assessed only for perf-relevant repos — a packaged library, one that ships benchmarks, or one already using allocation-aware APIs. This repo isn't one, so the Performance lens is not applicable and is excluded from the score.
- SC1 Supply-chain hygiene — no data
- X6 Hand-rolled structured-format parsing — no data
- X7 Silent fallback defaults — no data
Appendix A — Findings (grouped)
Issue — 13 finding(s)
- No assertions: Prepare src/Tests/SUT/TestCases/CleanDatabaseTestCase.cs:12
- No assertions: Prepare src/Tests/SUT/TestCases/CreateMeeting.cs:11
- No assertions: Prepare src/Tests/SUT/TestCases/OnlyAdminTestCase.cs:11
- Boundary-crossing change coupling: MeetingCommentsController.cs ↔ MeetingComment.cs src/API/CompanyName.MyMeetings.API/Modules/Meetings/MeetingComments/MeetingCommentsController.cs
- Boundary-crossing change coupling: PriceListItemsController.cs ↔ PriceListItem.cs src/API/CompanyName.MyMeetings.API/Modules/Payments/PriceListItems/PriceListItemsController.cs
- Boundary-crossing change coupling: PriceListItemsController.cs ↔ PriceListItemsProjector.cs src/API/CompanyName.MyMeetings.API/Modules/Payments/PriceListItems/PriceListItemsController.cs
- NoWarnInCsproj build/_build.csproj:7
- NoWarnInCsproj build/_build.csproj:7
- Secret: generic-api-key src/API/CompanyName.MyMeetings.API/appsettings.json:17
- Secret: generic-api-key src/API/CompanyName.MyMeetings.API/tempkey.rsa:1
- High IaC: DS-0002 src/Database/Dockerfile
- High IaC: DS-0002 src/Dockerfile
- Critical IaC: DS-0031 src/Database/Dockerfile
Warning — 40 finding(s)
- Change coupling: ActivatePriceListItemCommandHandler.cs ↔ DeactivatePriceListItemCommandHandler.cs src/Modules/Payments/Application/PriceListItems/ActivatePriceListItem/ActivatePriceListItemCommandHandler.cs
- Change coupling: ActivatePriceListItemCommandHandler.cs ↔ ChangePriceListItemAttributesCommandHandler.cs src/Modules/Payments/Application/PriceListItems/ActivatePriceListItem/ActivatePriceListItemCommandHandler.cs
- Change coupling: ChangePriceListItemAttributesCommandHandler.cs ↔ DeactivatePriceListItemCommandHandler.cs src/Modules/Payments/Application/PriceListItems/ChangePriceListItemAttributes/ChangePriceListItemAttributesCommandHandler.cs
- Change coupling: PaymentsPermissions.cs ↔ PriceListItemsController.cs src/API/CompanyName.MyMeetings.API/Modules/Payments/PaymentsPermissions.cs
- Change coupling: PriceListItemsProjector.cs ↔ PriceListItem.cs src/Modules/Payments/Application/PriceListItems/GetPriceListItem/PriceListItemsProjector.cs
- Change coupling: PriceListItemsProjector.cs ↔ DomainEventTypeMappings.cs src/Modules/Payments/Application/PriceListItems/GetPriceListItem/PriceListItemsProjector.cs
- Change coupling: MeetingCommentsController.cs ↔ MeetingsPermissions.cs src/API/CompanyName.MyMeetings.API/Modules/Meetings/MeetingComments/MeetingCommentsController.cs
- Off the main sequence: CompanyName.MyMeetings.Modules.Meetings.IntegrationEvents
- Off the main sequence: CompanyName.MyMeetings.Modules.Registrations.IntegrationEvents
- Off the main sequence: CompanyName.MyMeetings.Modules.Administration.IntegrationEvents
- Off the main sequence: CompanyName.MyMeetings.Modules.UserAccess.Infrastructure
- Off the main sequence: CompanyName.MyMeetings.Modules.Meetings.Infrastructure
- Off the main sequence: CompanyName.MyMeetings.Modules.Payments.Infrastructure
- Low cohesion: SerilogLogProvider (LCOM4 4) src/Modules/Meetings/Infrastructure/Configuration/Quartz/SerilogLogProvider.cs:6
- Low cohesion: InMemoryEventBusClient (LCOM4 4) src/BuildingBlocks/Infrastructure/EventBus/InMemoryEventBusClient.cs:5
- Low cohesion: SerilogLogProvider (LCOM4 4) src/Modules/Administration/Infrastructure/Configuration/Quartz/SerilogLogProvider.cs:6
- Low cohesion: SerilogLogProvider (LCOM4 4) src/Modules/UserAccess/Infrastructure/Configuration/Quartz/SerilogLogProvider.cs:6
- Low cohesion: SerilogLogProvider (LCOM4 4) src/Modules/Payments/Infrastructure/Configuration/Quartz/SerilogLogProvider.cs:6
- Low cohesion: SerilogLogProvider (LCOM4 4) src/Modules/Registrations/Infrastructure/Configuration/Quartz/SerilogLogProvider.cs:6
- Duplicated block (19 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Processing/LoggingCommandHandlerWithResultDecorator.cs:32
- Duplicated block (19 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Processing/Outbox/OutboxModule.cs:40
- Duplicated block (12 lines × 2) src/Modules/Meetings/Infrastructure/Configuration/Processing/Outbox/OutboxModule.cs:22
- Duplicated block (12 lines × 2) src/Modules/UserAccess/Infrastructure/Configuration/Processing/Outbox/OutboxModule.cs:21
- BarePragmaDisable src/Modules/Meetings/Domain/MeetingComments/MeetingComment.cs:71
- AuthorizationChecker.CheckAllEndpoints (cognitive 16) src/API/CompanyName.MyMeetings.API/Configuration/Authorization/AuthorizationChecker.cs:9
- Cross-context type MeetingGroupProposalAcceptedIntegrationEvent (Administration → Meetings)
- Duplicated block (56 lines × 2) src/Modules/UserAccess/Infrastructure/Configuration/Quartz/QuartzStartup.cs:28
- Duplicated block (28 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Mediation/MediatorModule.cs:24
- Duplicated block (21 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/EventsBus/IntegrationEventGenericHandler.cs:17
- Duplicated block (19 lines × 5) src/Modules/Meetings/Infrastructure/Configuration/Processing/LoggingCommandHandlerDecorator.cs:30
- Duplicated block (19 lines × 2) src/Modules/UserAccess/Application/Authentication/Authenticate/PasswordManager.cs:30
- Duplicated block (16 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Quartz/SerilogLogProvider.cs:19
- Duplicated block (16 lines × 2) src/Modules/UserAccess/Application/Authentication/Authenticate/PasswordManager.cs:9
- Duplicated block (14 lines × 3) src/Modules/Meetings/Infrastructure/Configuration/Processing/ProcessingModule.cs:19
- Duplicated block (14 lines × 2) src/Modules/UserAccess/Application/Authentication/Authenticate/PasswordManager.cs:62
- Duplicated block (13 lines × 4) src/Modules/Meetings/Infrastructure/Configuration/Mediation/MediatorModule.cs:76
- Duplicated block (11 lines × 2) src/Modules/Meetings/Infrastructure/Configuration/Quartz/QuartzStartup.cs:18
- Duplicated block (8 lines × 2) src/Modules/UserAccess/Infrastructure/Configuration/UserAccessStartup.cs:58
- Duplicated block (7 lines × 3) src/Modules/Meetings/Infrastructure/Domain/Meetings/MeetingEntityTypeConfiguration.cs:55
- Coverage not measured
Recommendation — 23 finding(s)
- Low IaC: DS-0005 src/Database/Dockerfile
- Low IaC: DS-0026 src/Database/Dockerfile
- Low IaC: DS-0005 src/Dockerfile
- Low IaC: DS-0026 src/Dockerfile
- Shell project: CompanyName.MyMeetings.Modules.UserAccess.IntegrationEvents src/Modules/UserAccess/IntegrationEvents/CompanyName.MyMeetings.Modules.UserAccess.IntegrationEvents.csproj
- Shell project: CompanyName.MyMeetings.Database.Build src/Database/CompanyName.MyMeetings.Database.Build/CompanyName.MyMeetings.Database.Build.csproj
- LLM dimension skipped
- No ADRs found
- LLM dimension skipped
- LLM dimension skipped
- LLM dimension skipped
- no ADRs to check
- Navigability unmeasured — symbol resolution incomplete
- Rotate the exposed credentials — git history can't be un-committed
- Not applicable
- Not applicable
- Not applicable
- Dormant codebase
- Not applicable
- Not applicable
- Not applicable
- IL metrics not applicable
- No checkable ADRs to assess
Info — 63 finding(s)
- Justified suppression src/API/CompanyName.MyMeetings.API/Configuration/Authorization/HasPermissionAuthorizationHandler.cs:43
- Justified suppression src/Modules/Meetings/Domain/MeetingComments/MeetingComment.cs:30
- Justified suppression src/Modules/Meetings/Domain/Meetings/MeetingAttendee.cs:36
- Justified suppression src/Modules/UserAccess/Domain/Users/User.cs:16
- Justified suppression src/Tests/IntegrationTests/CreateMeetingGroup/CreateMeetingGroupTests.cs:108
- Licenses scanned
- Build did not complete in the analyzer
- CompanyName.MyMeetings.API (Production) src/API/CompanyName.MyMeetings.API/CompanyName.MyMeetings.API.csproj
- CompanyName.MyMeetings.Modules.UserAccess.Application (Production) src/Modules/UserAccess/Application/CompanyName.MyMeetings.Modules.UserAccess.Application.csproj
- CompanyName.MyMeetings.Modules.Meetings.Application (Production) src/Modules/Meetings/Application/CompanyName.MyMeetings.Modules.Meetings.Application.csproj
- CompanyName.MyMeetings.Modules.Meetings.Domain (Production) src/Modules/Meetings/Domain/CompanyName.MyMeetings.Modules.Meetings.Domain.csproj
- CompanyName.MyMeetings.Modules.Meetings.Infrastructure (Production) src/Modules/Meetings/Infrastructure/CompanyName.MyMeetings.Modules.Meetings.Infrastructure.csproj
- CompanyName.MyMeetings.BuildingBlocks.Domain (Production) src/BuildingBlocks/Domain/CompanyName.MyMeetings.BuildingBlocks.Domain.csproj
- CompanyName.MyMeetings.BuildingBlocks.Infrastructure (Production) src/BuildingBlocks/Infrastructure/CompanyName.MyMeetings.BuildingBlocks.Infrastructure.csproj
- CompanyName.MyMeetings.Modules.Administration.Domain (Production) src/Modules/Administration/Domain/CompanyName.MyMeetings.Modules.Administration.Domain.csproj
- CompanyName.MyMeetings.Modules.Administration.Application (Production) src/Modules/Administration/Application/CompanyName.MyMeetings.Modules.Administration.Application.csproj
- CompanyName.MyMeetings.Modules.Administration.Infrastructure (Production) src/Modules/Administration/Infrastructure/CompanyName.MyMeetings.Modules.Administration.Infrastructure.csproj
- CompanyName.MyMeetings.Modules.Meetings.IntegrationEvents (Production) src/Modules/Meetings/IntegrationEvents/CompanyName.MyMeetings.Modules.Meetings.IntegrationEvents.csproj
- CompanyName.MyMeetings.Modules.Administration.IntegrationEvents (Production) src/Modules/Administration/IntegrationEvents/CompanyName.MyMeetings.Modules.Administration.IntegrationEvents.csproj
- CompanyName.MyMeetings.Modules.UserAccess.Infrastructure (Production) src/Modules/UserAccess/Infrastructure/CompanyName.MyMeetings.Modules.UserAccess.Infrastructure.csproj
- CompanyName.MyMeetings.Modules.UserAccess.Domain (Production) src/Modules/UserAccess/Domain/CompanyName.MyMeetings.Modules.UserAccess.Domain.csproj
- CompanyName.MyMeetings.Modules.UserAccess.IntegrationEvents (Production) src/Modules/UserAccess/IntegrationEvents/CompanyName.MyMeetings.Modules.UserAccess.IntegrationEvents.csproj
- CompanyName.MyMeetings.Modules.Payments.Application (Production) src/Modules/Payments/Application/CompanyName.MyMeetings.Modules.Payments.Application.csproj
- CompanyName.MyMeetings.Modules.Payments.Domain (Production) src/Modules/Payments/Domain/CompanyName.MyMeetings.Modules.Payments.Domain.csproj
- CompanyName.MyMeetings.Modules.Payments.Infrastructure (Production) src/Modules/Payments/Infrastructure/CompanyName.MyMeetings.Modules.Payments.Infrastructure.csproj
- CompanyName.MyMeetings.Modules.Payments.IntegrationEvents (Production) src/Modules/Payments/IntegrationEvents/CompanyName.MyMeetings.Modules.Payments.IntegrationEvents.csproj
- CompanyName.MyMeetings.BuildingBlocks.Application (Production) src/BuildingBlocks/Application/CompanyName.MyMeetings.BuildingBlocks.Application.csproj
- CompanyName.MyMeetings.Modules.UserAccess.Domain.UnitTests (Production) src/Modules/UserAccess/Tests/UnitTests/CompanyName.MyMeetings.Modules.UserAccess.Domain.UnitTests.csproj
- CompanyName.MyMeetings.Modules.Payments.Domain.UnitTests (Production) src/Modules/Payments/Tests/UnitTests/CompanyName.MyMeetings.Modules.Payments.Domain.UnitTests.csproj
- CompanyName.MyMeetings.Modules.Administration.Domain.UnitTests (Production) src/Modules/Administration/Tests/UnitTests/CompanyName.MyMeetings.Modules.Administration.Domain.UnitTests.csproj
- CompanyName.MyMeetings.Modules.Meetings.Domain.UnitTests (Production) src/Modules/Meetings/Tests/UnitTests/CompanyName.MyMeetings.Modules.Meetings.Domain.UnitTests.csproj
- CompanyName.MyMeetings.ArchTests (Production) src/Tests/ArchTests/CompanyName.MyMeetings.ArchTests.csproj
- CompanyName.MyMeetings.Modules.Administration.ArchTests (Production) src/Modules/Administration/Tests/ArchTests/CompanyName.MyMeetings.Modules.Administration.ArchTests.csproj
- CompanyName.MyMeetings.Modules.Meetings.ArchTests (Production) src/Modules/Meetings/Tests/ArchTests/CompanyName.MyMeetings.Modules.Meetings.ArchTests.csproj
- CompanyName.MyMeetings.Modules.Payments.ArchTests (Production) src/Modules/Payments/Tests/ArchTests/CompanyName.MyMeetings.Modules.Payments.ArchTests.csproj
- CompanyName.MyMeetings.Modules.UserAccess.ArchTests (Production) src/Modules/UserAccess/Tests/ArchTests/CompanyName.MyMeetings.Modules.UserAccess.ArchTests.csproj
- CompanyNames.MyMeetings.Modules.UserAccess.IntegrationTests (Production) src/Modules/UserAccess/Tests/IntegrationTests/CompanyNames.MyMeetings.Modules.UserAccess.IntegrationTests.csproj
- CompanyName.MyMeetings.Modules.Payments.IntegrationTests (Production) src/Modules/Payments/Tests/IntegrationTests/CompanyName.MyMeetings.Modules.Payments.IntegrationTests.csproj
- CompanyName.MyMeetings.Modules.Administration.IntegrationTests (Production) src/Modules/Administration/Tests/IntegrationTests/CompanyName.MyMeetings.Modules.Administration.IntegrationTests.csproj
- CompanyName.MyMeetings.IntegrationTests (Production) src/Tests/IntegrationTests/CompanyName.MyMeetings.IntegrationTests.csproj
- CompanyName.MyMeetings.Modules.Meetings.IntegrationTests (Production) src/Modules/Meetings/Tests/IntegrationTests/CompanyName.MyMeetings.Modules.Meetings.IntegrationTests.csproj
- CompanyName.MyMeetings.BuildingBlocks.Application.UnitTests (Production) src/BuildingBlocks/Tests/Application.UnitTests/CompanyName.MyMeetings.BuildingBlocks.Application.UnitTests.csproj
- CompanyName.MyMeetings.BuildingBlocks.IntegrationTests (Production) src/BuildingBlocks/Tests/IntegrationTests/CompanyName.MyMeetings.BuildingBlocks.IntegrationTests.csproj
- DatabaseMigrator (Production) src/Database/DatabaseMigrator/DatabaseMigrator.csproj
- _build (Production) build/_build.csproj
- CompanyName.MyMeetings.Database.Build (Production) src/Database/CompanyName.MyMeetings.Database.Build/CompanyName.MyMeetings.Database.Build.csproj
- CompanyName.MyMeetings.SUT (Production) src/Tests/SUT/CompanyName.MyMeetings.SUT.csproj
- CompanyName.MyMeetings.Modules.Registrations.Application (Production) src/Modules/Registrations/Application/CompanyName.MyMeetings.Modules.Registrations.Application.csproj
- CompanyName.MyMeetings.Modules.Registrations.Domain (Production) src/Modules/Registrations/Domain/CompanyName.MyMeetings.Modules.Registrations.Domain.csproj
- CompanyName.MyMeetings.Modules.Registrations.Infrastructure (Production) src/Modules/Registrations/Infrastructure/CompanyName.MyMeetings.Modules.Registrations.Infrastructure.csproj
- CompanyName.MyMeetings.Modules.Registrations.ArchTests (Production) src/Modules/Registrations/Tests/ArchTests/CompanyName.MyMeetings.Modules.Registrations.ArchTests.csproj
- CompanyNames.MyMeetings.Modules.Registrations.IntegrationTests (Production) src/Modules/Registrations/Tests/IntegrationTests/CompanyNames.MyMeetings.Modules.Registrations.IntegrationTests.csproj
- CompanyName.MyMeetings.Modules.Registrations.Domain.UnitTests (Production) src/Modules/Registrations/Tests/UnitTests/CompanyName.MyMeetings.Modules.Registrations.Domain.UnitTests.csproj
- CompanyName.MyMeetings.Modules.Registrations.IntegrationEvents (Production) src/Modules/Registrations/IntegrationEvents/CompanyName.MyMeetings.Modules.Registrations.IntegrationEvents.csproj
- Administration: 1 contract type(s) expose producer-owned ids/enums
- Meetings: 2 contract type(s) expose producer-owned ids/enums
- Payments: 1 contract type(s) expose producer-owned ids/enums
- Registrations: 1 contract type(s) expose producer-owned ids/enums
- UserAccess: 1 contract type(s) expose producer-owned ids/enums
- Unit tests
- Integration tests
- BDD tests
- E2E tests
Appendix B — Reproduction & audit trail
| Dimension | Tool | Version | Command | Findings | Raw output |
|---|---|---|---|---|---|
| D28 · Secrets (history) | gitleaks | — | gitleaks detect --no-banner --report-format json --report-path /dev/stdout --exit-code 0 --source . | 2 | artifacts/raw/gitleaks-history.json |
| D29 · Static Analysis (SAST) | semgrep | — | semgrep --config auto --json --quiet --timeout 0 --metrics off . | 0 | — |
| D30 · Dependency Vulnerabilities | dotnet | — | dotnet: not applicable — the solution did not restore on the analyzer's .NET SDK (an SDK/target-framework/restore mismatch, common for an older codebase), so there was no restored dependency graph to scan for NuGet CVEs — excluded rather than scored; re-run on an SDK that can restore this solution | 0 | — |
| D31 · IaC & Container Security | trivy | — | trivy config --format json --quiet . | 7 | artifacts/raw/trivy-config.json |
| D32 · Data Compliance (PII/GDPR) | semgrep | — | semgrep: not applicable — No PII/GDPR-handling patterns detected (p/gdpr ruleset) — no data-compliance surface to assess. | 0 | — |
| D33 · JS/npm Dependency Vulnerabilities | trivy | — | trivy: not applicable — No JS/npm manifest or lockfile found outside bin/obj (package.json, package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb); no JS dependencies to scan. | 0 | — |
| D36 · Supply-chain Provenance & Signing | provenance | — | provenance: not applicable — The CI pipeline builds and tests but publishes no released artifact — no package publish, container push, GitHub release or deployment step. Supply-chain provenance, signing and SBOM attest RELEASED artifacts, so there is nothing to attest here. Add them to the release pipeline when this repo starts shipping artifacts (a NuGet package, a container image, a GitHub release). | 0 | — |
| D37 · Vulnerability-disclosure Policy | disclosure | — | disclosure: not applicable — No vulnerability-disclosure policy file found (SECURITY.md, .github/SECURITY.md, docs/SECURITY.md, .well-known/security.txt). A coordinated-disclosure policy may live off-repo, so this is not evidenced rather than failed. | 0 | — |
| D38 · OSV Dependency Vulnerabilities | osv-scanner | — | osv-scanner: not applicable — No JS/npm lockfile found outside bin/obj (package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb); nothing for OSV to scan. | 0 | — |
Appendix C — Personal-data map
Name — 38 field(s)
- RegisterNewUserRequest.FirstName src/API/CompanyName.MyMeetings.API/Modules/UserAccess/RegisterNewUserRequest.cs:11
- RegisterNewUserRequest.LastName src/API/CompanyName.MyMeetings.API/Modules/UserAccess/RegisterNewUserRequest.cs:13
- CreateMemberCommand.FirstName src/Modules/Administration/Application/Members/CreateMember/CreateMemberCommand.cs:33
- CreateMemberCommand.LastName src/Modules/Administration/Application/Members/CreateMember/CreateMemberCommand.cs:35
- MemberDto.FirstName src/Modules/Administration/Application/Members/GetMember/MemberDto.cs:11
- MemberDto.LastName src/Modules/Administration/Application/Members/GetMember/MemberDto.cs:13
- Member._firstName src/Modules/Administration/Domain/Members/Member.cs:14
- Member._lastName src/Modules/Administration/Domain/Members/Member.cs:16
- MeetingAttendeeDto.FirstName src/Modules/Meetings/Application/Meetings/GetMeetingAttendees/MeetingAttendeeDto.cs:5
- MeetingAttendeeDto.LastName src/Modules/Meetings/Application/Meetings/GetMeetingAttendees/MeetingAttendeeDto.cs:7
- CreateMemberCommand.FirstName src/Modules/Meetings/Application/Members/CreateMember/CreateMemberCommand.cs:33
- CreateMemberCommand.LastName src/Modules/Meetings/Application/Members/CreateMember/CreateMemberCommand.cs:35
- Member._firstName src/Modules/Meetings/Domain/Members/Member.cs:15
- Member._lastName src/Modules/Meetings/Domain/Members/Member.cs:17
- CreatePayerCommand.FirstName src/Modules/Payments/Application/Payers/CreatePayer/CreatePayerCommand.cs:14
- CreatePayerCommand.LastName src/Modules/Payments/Application/Payers/CreatePayer/CreatePayerCommand.cs:16
- PayerDto.FirstName src/Modules/Payments/Application/Payers/GetPayer/PayerDto.cs:11
- PayerDto.LastName src/Modules/Payments/Application/Payers/GetPayer/PayerDto.cs:13
- PayerCreatedDomainEvent.FirstName src/Modules/Payments/Domain/Payers/Events/PayerCreatedDomainEvent.cs:11
- PayerCreatedDomainEvent.LastName src/Modules/Payments/Domain/Payers/Events/PayerCreatedDomainEvent.cs:13
- Payer._firstName src/Modules/Payments/Domain/Payers/Payer.cs:18
- Payer._lastName src/Modules/Payments/Domain/Payers/Payer.cs:20
- UserRegistrationDto.FirstName src/Modules/Registrations/Application/UserRegistrations/GetUserRegistration/UserRegistrationDto.cs:11
- UserRegistrationDto.LastName src/Modules/Registrations/Application/UserRegistrations/GetUserRegistration/UserRegistrationDto.cs:13
- RegisterNewUserCommand.FirstName src/Modules/Registrations/Application/UserRegistrations/RegisterNewUser/RegisterNewUserCommand.cs:29
- RegisterNewUserCommand.LastName src/Modules/Registrations/Application/UserRegistrations/RegisterNewUser/RegisterNewUserCommand.cs:31
- NewUserRegisteredDomainEvent.FirstName src/Modules/Registrations/Domain/UserRegistrations/Events/NewUserRegisteredDomainEvent.cs:13
- NewUserRegisteredDomainEvent.LastName src/Modules/Registrations/Domain/UserRegistrations/Events/NewUserRegisteredDomainEvent.cs:15
- UserRegistration._firstName src/Modules/Registrations/Domain/UserRegistrations/UserRegistration.cs:17
- UserRegistration._lastName src/Modules/Registrations/Domain/UserRegistrations/UserRegistration.cs:19
- NewUserRegisteredIntegrationEvent.FirstName src/Modules/Registrations/IntegrationEvents/NewUserRegisteredIntegrationEvent.cs:13
- NewUserRegisteredIntegrationEvent.LastName src/Modules/Registrations/IntegrationEvents/NewUserRegisteredIntegrationEvent.cs:15
- AddAdminUserCommand.FirstName src/Modules/UserAccess/Application/Users/AddAdminUser/AddAdminUserCommand.cs:25
- AddAdminUserCommand.LastName src/Modules/UserAccess/Application/Users/AddAdminUser/AddAdminUserCommand.cs:27
- CreateUserCommand.FirstName src/Modules/UserAccess/Application/Users/CreateUser/CreateUserCommand.cs:29
- CreateUserCommand.LastName src/Modules/UserAccess/Application/Users/CreateUser/CreateUserCommand.cs:31
- User._firstName src/Modules/UserAccess/Domain/Users/User.cs:20
- User._lastName src/Modules/UserAccess/Domain/Users/User.cs:22
Email — 34 field(s)
- RegisterNewUserRequest.Email src/API/CompanyName.MyMeetings.API/Modules/UserAccess/RegisterNewUserRequest.cs:9
- EmailsConfiguration.FromEmail src/BuildingBlocks/Infrastructure/Emails/EmailsConfiguration.cs:10
- CreateMemberCommand.Email src/Modules/Administration/Application/Members/CreateMember/CreateMemberCommand.cs:31
- MemberDto.Email src/Modules/Administration/Application/Members/GetMember/MemberDto.cs:9
- Member._email src/Modules/Administration/Domain/Members/Member.cs:12
- SendMeetingGroupCreatedEmailCommandHandler._emailSender src/Modules/Meetings/Application/MeetingGroups/SendMeetingGroupCreatedEmail/SendMeetingGroupCreatedEmailCommandHandler.cs:13
- SendMeetingAttendeeAddedEmailCommandHandler._emailSender src/Modules/Meetings/Application/Meetings/SendMeetingAttendeeAddedEmail/SendMeetingAttendeeAddedEmailCommandHandler.cs:11
- CreateMemberCommand.Email src/Modules/Meetings/Application/Members/CreateMember/CreateMemberCommand.cs:31
- MemberDto.Email src/Modules/Meetings/Application/Members/MemberDto.cs:9
- Member._email src/Modules/Meetings/Domain/Members/Member.cs:13
- CreatePayerCommand.Email src/Modules/Payments/Application/Payers/CreatePayer/CreatePayerCommand.cs:12
- PayerDto.Email src/Modules/Payments/Application/Payers/GetPayer/PayerDto.cs:9
- SendSubscriptionCreationConfirmationEmailCommand.Email src/Modules/Payments/Application/Subscriptions/SendSubscriptionCreationConfirmationEmail/SendSubscriptionCreationConfirmationEmailCommand.cs:11
- SendSubscriptionCreationConfirmationEmailCommandHandler._emailSender src/Modules/Payments/Application/Subscriptions/SendSubscriptionCreationConfirmationEmail/SendSubscriptionCreationConfirmationEmailCommandHandler.cs:8
- SendSubscriptionRenewalConfirmationEmailCommand.Email src/Modules/Payments/Application/Subscriptions/SendSubscriptionRenewalConfirmationEmail/SendSubscriptionRenewalConfirmationEmailCommand.cs:11
- SendSubscriptionRenewalConfirmationEmailCommandHandler._emailSender src/Modules/Payments/Application/Subscriptions/SendSubscriptionRenewalConfirmationEmail/SendSubscriptionRenewalConfirmationEmailCommandHandler.cs:8
- PayerCreatedDomainEvent.Email src/Modules/Payments/Domain/Payers/Events/PayerCreatedDomainEvent.cs:17
- Payer._email src/Modules/Payments/Domain/Payers/Payer.cs:16
- CustomClaimTypes.Email src/Modules/Registrations/Application/Contracts/CustomClaimTypes.cs:6
- UserRegistrationDto.Email src/Modules/Registrations/Application/UserRegistrations/GetUserRegistration/UserRegistrationDto.cs:9
- RegisterNewUserCommand.Email src/Modules/Registrations/Application/UserRegistrations/RegisterNewUser/RegisterNewUserCommand.cs:27
- SendUserRegistrationConfirmationEmailCommand.Email src/Modules/Registrations/Application/UserRegistrations/SendUserRegistrationConfirmationEmail/SendUserRegistrationConfirmationEmailCommand.cs:24
- SendUserRegistrationConfirmationEmailCommandHandler._emailSender src/Modules/Registrations/Application/UserRegistrations/SendUserRegistrationConfirmationEmail/SendUserRegistrationConfirmationEmailCommandHandler.cs:8
- NewUserRegisteredDomainEvent.Email src/Modules/Registrations/Domain/UserRegistrations/Events/NewUserRegisteredDomainEvent.cs:11
- UserRegistration._email src/Modules/Registrations/Domain/UserRegistrations/UserRegistration.cs:15
- EmailModule._emailSender src/Modules/Registrations/Infrastructure/Configuration/Email/EmailModule.cs:9
- NewUserRegisteredIntegrationEvent.Email src/Modules/Registrations/IntegrationEvents/NewUserRegisteredIntegrationEvent.cs:11
- UserDto.Email src/Modules/UserAccess/Application/Authentication/Authenticate/UserDto.cs:15
- CustomClaimTypes.Email src/Modules/UserAccess/Application/Contracts/CustomClaimTypes.cs:6
- AddAdminUserCommand.Email src/Modules/UserAccess/Application/Users/AddAdminUser/AddAdminUserCommand.cs:31
- CreateUserCommand.Email src/Modules/UserAccess/Application/Users/CreateUser/CreateUserCommand.cs:27
- UserDto.Email src/Modules/UserAccess/Application/Users/GetUser/UserDto.cs:13
- User._email src/Modules/UserAccess/Domain/Users/User.cs:14
- EmailModule._emailSender src/Modules/UserAccess/Infrastructure/Configuration/Email/EmailModule.cs:9
Address — 8 field(s)
- ChangeMeetingMainAttributesRequest.MeetingLocationPostalCode src/API/CompanyName.MyMeetings.API/Modules/Meetings/Meetings/ChangeMeetingMainAttributesRequest.cs:19
- CreateMeetingRequest.MeetingLocationPostalCode src/API/CompanyName.MyMeetings.API/Modules/Meetings/Meetings/CreateMeetingRequest.cs:19
- ChangeMeetingMainAttributesCommand.MeetingLocationPostalCode src/Modules/Meetings/Application/Meetings/ChangeMeetingMainAttributes/ChangeMeetingMainAttributesCommand.cs:55
- CreateMeetingCommand.MeetingLocationPostalCode src/Modules/Meetings/Application/Meetings/CreateMeeting/CreateMeetingCommand.cs:57
- MemberMeetingDto.LocationPostalCode src/Modules/Meetings/Application/Meetings/GetAuthenticatedMemberMeetings/MemberMeetingDto.cs:13
- MeetingDetailsDto.LocationPostalCode src/Modules/Meetings/Application/Meetings/GetMeetingDetails/MeetingDetailsDto.cs:21
- MeetingDto.LocationPostalCode src/Modules/Meetings/Application/Meetings/MeetingDto.cs:15
- MeetingLocation.PostalCode src/Modules/Meetings/Domain/Meetings/MeetingLocation.cs:24