archive audit attempts

This commit is contained in:
master
2026-02-19 22:00:31 +02:00
parent c2f13fe588
commit b5829dce5c
19638 changed files with 6366 additions and 7 deletions

View File

@@ -0,0 +1,87 @@
# Audit - StellaOps.Symbols.Bundle
## Project
- Path: src/Symbols/StellaOps.Symbols.Bundle/StellaOps.Symbols.Bundle.csproj
- Module: Symbols
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 10
- Files with issues: 10
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 10
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Bundle/BundleBuilder.cs (712 lines)
- src/Symbols/StellaOps.Symbols.Bundle/Abstractions/IBundleBuilder.cs (428 lines)
- src/Symbols/StellaOps.Symbols.Bundle/Models/BundleManifest.cs (314 lines)
- Namespace issues:
- src/Symbols/StellaOps.Symbols.Bundle/BundleBuilder.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Bundle/ServiceCollectionExtensions.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Bundle/Abstractions/IBundleBuilder.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Bundle/Models/BundleManifest.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Bundle/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Bundle/obj/Debug/net10.0/StellaOps.Symbols.Bundle.AssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Bundle/obj/Debug/net10.0/StellaOps.Symbols.Bundle.GlobalUsings.g.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Bundle/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Bundle/obj/Release/net10.0/StellaOps.Symbols.Bundle.AssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Bundle/obj/Release/net10.0/StellaOps.Symbols.Bundle.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 10
- Files with issues: 10
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Bundle/BundleBuilder.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Bundle/ServiceCollectionExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Bundle/Abstractions/IBundleBuilder.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Bundle/Models/BundleManifest.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Bundle/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Bundle/obj/Debug/net10.0/StellaOps.Symbols.Bundle.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Bundle/obj/Debug/net10.0/StellaOps.Symbols.Bundle.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Bundle/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Bundle/obj/Release/net10.0/StellaOps.Symbols.Bundle.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Bundle/obj/Release/net10.0/StellaOps.Symbols.Bundle.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Symbols/__Tests/StellaOps.Symbols.Tests/StellaOps.Symbols.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,73 @@
# Audit - StellaOps.Symbols.Bundle
## Project
- Path: src/Symbols/StellaOps.Symbols.Bundle/StellaOps.Symbols.Bundle.csproj
- Module: Symbols
- Kind: Library
- Audit date (UTC): 2026-01-31
- Files scanned: 4
- Files with issues: 3
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 0
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 2
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Bundle/BundleBuilder.cs (713 lines)
- src/Symbols/StellaOps.Symbols.Bundle/Abstractions/IBundleBuilder.cs (428 lines)
- src/Symbols/StellaOps.Symbols.Bundle/Models/BundleManifest.cs (314 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Symbols/StellaOps.Symbols.Bundle/BundleBuilder.cs: using directives inside namespace
- Naming issues:
- src/Symbols/StellaOps.Symbols.Bundle/BundleBuilder.cs: private field naming
- Async issues:
- src/Symbols/StellaOps.Symbols.Bundle/BundleBuilder.cs: async method naming
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Align interface/field/const naming to standards.
- Move and sort using directives (outside namespace).
- Rename async methods and avoid blocking async calls.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 4
- Files with issues: 3
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Bundle/BundleBuilder.cs | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Bundle/Abstractions/IBundleBuilder.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Bundle/Models/BundleManifest.cs | FileLength>100 | Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Symbols/__Tests/StellaOps.Symbols.Tests/StellaOps.Symbols.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,89 @@
# Audit - StellaOps.Symbols.Client
## Project
- Path: src/Symbols/StellaOps.Symbols.Client/StellaOps.Symbols.Client.csproj
- Module: Symbols
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 11
- Files with issues: 11
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 11
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Client/DiskLruCache.cs (322 lines)
- src/Symbols/StellaOps.Symbols.Client/ISymbolsClient.cs (143 lines)
- src/Symbols/StellaOps.Symbols.Client/SymbolsClient.cs (435 lines)
- Namespace issues:
- src/Symbols/StellaOps.Symbols.Client/DiskLruCache.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/ISymbolsClient.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/ServiceCollectionExtensions.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/SymbolsClient.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/SymbolsClientOptions.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/obj/Debug/net10.0/StellaOps.Symbols.Client.AssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/obj/Debug/net10.0/StellaOps.Symbols.Client.GlobalUsings.g.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/obj/Release/net10.0/StellaOps.Symbols.Client.AssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Client/obj/Release/net10.0/StellaOps.Symbols.Client.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 11
- Files with issues: 11
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Client/DiskLruCache.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Client/ISymbolsClient.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Client/ServiceCollectionExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Client/SymbolsClient.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Client/SymbolsClientOptions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Client/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Client/obj/Debug/net10.0/StellaOps.Symbols.Client.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Client/obj/Debug/net10.0/StellaOps.Symbols.Client.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Client/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Client/obj/Release/net10.0/StellaOps.Symbols.Client.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Client/obj/Release/net10.0/StellaOps.Symbols.Client.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Symbols/__Tests/StellaOps.Symbols.Tests/StellaOps.Symbols.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,77 @@
# Audit - StellaOps.Symbols.Client
## Project
- Path: src/Symbols/StellaOps.Symbols.Client/StellaOps.Symbols.Client.csproj
- Module: Symbols
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 5
- Files with issues: 4
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 0
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 2
- Service locator usage (BuildServiceProvider/GetService): 2
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Client/DiskLruCache.cs (323 lines)
- src/Symbols/StellaOps.Symbols.Client/ISymbolsClient.cs (143 lines)
- src/Symbols/StellaOps.Symbols.Client/SymbolsClient.cs (436 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Symbols/StellaOps.Symbols.Client/SymbolsClient.cs: using directives inside namespace
- Naming issues:
- none
- Async issues:
- src/Symbols/StellaOps.Symbols.Client/DiskLruCache.cs: async method naming
- src/Symbols/StellaOps.Symbols.Client/SymbolsClient.cs: async method naming
- Service locator matches:
- src/Symbols/StellaOps.Symbols.Client/ServiceCollectionExtensions.cs:31 var options = sp.GetRequiredService<IOptions<SymbolsClientOptions>>().Value;
- src/Symbols/StellaOps.Symbols.Client/ServiceCollectionExtensions.cs:51 var options = sp.GetRequiredService<IOptions<SymbolsClientOptions>>().Value;
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Rename async methods and avoid blocking async calls.
- Replace service locator usage with constructor injection.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 5
- Files with issues: 4
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Client/DiskLruCache.cs | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Client/ISymbolsClient.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Client/ServiceCollectionExtensions.cs | ServiceLocator | Remove service locator usage; use constructor injection. |
| src/Symbols/StellaOps.Symbols.Client/SymbolsClient.cs | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): CLI, Unit
- Detected test projects: src/Symbols/__Tests/StellaOps.Symbols.Tests/StellaOps.Symbols.Tests.csproj [Unit]
- Missing layers: CLI
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,85 @@
# Audit - StellaOps.Symbols.Core
## Project
- Path: src/Symbols/StellaOps.Symbols.Core/StellaOps.Symbols.Core.csproj
- Module: Symbols
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 10
- Files with issues: 10
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 10
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Core/Models/SymbolManifest.cs (186 lines)
- Namespace issues:
- src/Symbols/StellaOps.Symbols.Core/Abstractions/ISymbolBlobStore.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Core/Abstractions/ISymbolRepository.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Core/Abstractions/ISymbolResolver.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Core/Models/SymbolManifest.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Core/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Core/obj/Debug/net10.0/StellaOps.Symbols.Core.AssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Core/obj/Debug/net10.0/StellaOps.Symbols.Core.GlobalUsings.g.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Core/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Core/obj/Release/net10.0/StellaOps.Symbols.Core.AssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Core/obj/Release/net10.0/StellaOps.Symbols.Core.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 10
- Files with issues: 10
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Core/Abstractions/ISymbolBlobStore.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Core/Abstractions/ISymbolRepository.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Core/Abstractions/ISymbolResolver.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Core/Models/SymbolManifest.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Core/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Core/obj/Debug/net10.0/StellaOps.Symbols.Core.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Core/obj/Debug/net10.0/StellaOps.Symbols.Core.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Core/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Core/obj/Release/net10.0/StellaOps.Symbols.Core.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Core/obj/Release/net10.0/StellaOps.Symbols.Core.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Symbols/__Tests/StellaOps.Symbols.Tests/StellaOps.Symbols.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,66 @@
# Audit - StellaOps.Symbols.Core
## Project
- Path: src/Symbols/StellaOps.Symbols.Core/StellaOps.Symbols.Core.csproj
- Module: Symbols
- Kind: Library
- Audit date (UTC): 2026-01-31
- Files scanned: 4
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 0
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Core/Models/SymbolManifest.cs (186 lines)
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 4
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Core/Models/SymbolManifest.cs | FileLength>100 | Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Symbols/__Tests/StellaOps.Symbols.Tests/StellaOps.Symbols.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,88 @@
# Audit - StellaOps.Symbols.Infrastructure
## Project
- Path: src/Symbols/StellaOps.Symbols.Infrastructure/StellaOps.Symbols.Infrastructure.csproj
- Module: Symbols
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 10
- Files with issues: 10
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 10
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Infrastructure/Resolution/DefaultSymbolResolver.cs (159 lines)
- src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolBlobStore.cs (104 lines)
- src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolRepository.cs (160 lines)
- Namespace issues:
- src/Symbols/StellaOps.Symbols.Infrastructure/ServiceCollectionExtensions.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Infrastructure/obj/Debug/net10.0/StellaOps.Symbols.Infrastructure.AssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Infrastructure/obj/Debug/net10.0/StellaOps.Symbols.Infrastructure.GlobalUsings.g.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Infrastructure/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Infrastructure/obj/Release/net10.0/StellaOps.Symbols.Infrastructure.AssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Infrastructure/obj/Release/net10.0/StellaOps.Symbols.Infrastructure.GlobalUsings.g.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Infrastructure/Resolution/DefaultSymbolResolver.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolBlobStore.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolRepository.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 10
- Files with issues: 10
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Infrastructure/ServiceCollectionExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Infrastructure/obj/Debug/net10.0/StellaOps.Symbols.Infrastructure.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Infrastructure/obj/Debug/net10.0/StellaOps.Symbols.Infrastructure.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Infrastructure/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Infrastructure/obj/Release/net10.0/StellaOps.Symbols.Infrastructure.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Infrastructure/obj/Release/net10.0/StellaOps.Symbols.Infrastructure.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Infrastructure/Resolution/DefaultSymbolResolver.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolBlobStore.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolRepository.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Integration, Unit
- Detected test projects: none
- Missing layers: Integration, Unit
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,72 @@
# Audit - StellaOps.Symbols.Infrastructure
## Project
- Path: src/Symbols/StellaOps.Symbols.Infrastructure/StellaOps.Symbols.Infrastructure.csproj
- Module: Symbols
- Kind: Library
- Audit date (UTC): 2026-01-31
- Files scanned: 4
- Files with issues: 3
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 0
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Infrastructure/Resolution/DefaultSymbolResolver.cs (159 lines)
- src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolBlobStore.cs (105 lines)
- src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolRepository.cs (161 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolBlobStore.cs: using directives inside namespace
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 4
- Files with issues: 3
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Infrastructure/Resolution/DefaultSymbolResolver.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolBlobStore.cs | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Infrastructure/Storage/InMemorySymbolRepository.cs | FileLength>100 | Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Integration, Unit
- Detected test projects: none
- Missing layers: Integration, Unit
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - StellaOps.Symbols.Server
## Project
- Path: src/Symbols/StellaOps.Symbols.Server/StellaOps.Symbols.Server.csproj
- Module: Symbols
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 2
- Namespace violations: 6
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Server/Program.cs (321 lines)
- src/Symbols/StellaOps.Symbols.Server/Contracts/SymbolsContracts.cs (135 lines)
- Namespace issues:
- src/Symbols/StellaOps.Symbols.Server/Contracts/SymbolsContracts.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Server/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Server/obj/Debug/net10.0/StellaOps.Symbols.Server.AssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Server/obj/Debug/net10.0/StellaOps.Symbols.Server.GlobalUsings.g.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Server/obj/Debug/net10.0/StellaOps.Symbols.Server.MvcApplicationPartsAssemblyInfo.cs: missing namespace
- src/Symbols/StellaOps.Symbols.Server/obj/Release/net10.0/StellaOps.Symbols.Server.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Server/Program.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Server/Contracts/SymbolsContracts.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Server/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Server/obj/Debug/net10.0/StellaOps.Symbols.Server.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Server/obj/Debug/net10.0/StellaOps.Symbols.Server.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Server/obj/Debug/net10.0/StellaOps.Symbols.Server.MvcApplicationPartsAssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Symbols/StellaOps.Symbols.Server/obj/Release/net10.0/StellaOps.Symbols.Server.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,69 @@
# Audit - StellaOps.Symbols.Server
## Project
- Path: src/Symbols/StellaOps.Symbols.Server/StellaOps.Symbols.Server.csproj
- Module: Symbols
- Kind: Library
- Audit date (UTC): 2026-01-31
- Files scanned: 2
- Files with issues: 2
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 2
- Namespace violations: 0
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/StellaOps.Symbols.Server/Program.cs (321 lines)
- src/Symbols/StellaOps.Symbols.Server/Contracts/SymbolsContracts.cs (135 lines)
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 2
- Files with issues: 2
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/StellaOps.Symbols.Server/Program.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Symbols/StellaOps.Symbols.Server/Contracts/SymbolsContracts.cs | FileLength>100 | Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,72 @@
# Audit - StellaOps.Symbols.Tests
## Project
- Path: src/Symbols/__Tests/StellaOps.Symbols.Tests/StellaOps.Symbols.Tests.csproj
- Module: Symbols
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 4
- Files with issues: 3
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 0
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 2
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Symbols/__Tests/StellaOps.Symbols.Tests/Bundle/BundleManifestTests.cs (252 lines)
- src/Symbols/__Tests/StellaOps.Symbols.Tests/Client/SymbolsClientTests.cs (156 lines)
- src/Symbols/__Tests/StellaOps.Symbols.Tests/Core/SymbolManifestTests.cs (168 lines)
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- src/Symbols/__Tests/StellaOps.Symbols.Tests/Client/SymbolsClientTests.cs: async method naming
- src/Symbols/__Tests/StellaOps.Symbols.Tests/Client/SymbolsClientTests.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Rename async methods and avoid blocking async calls.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 4
- Files with issues: 3
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Symbols/__Tests/StellaOps.Symbols.Tests/Bundle/BundleManifestTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Symbols/__Tests/StellaOps.Symbols.Tests/Client/SymbolsClientTests.cs | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| src/Symbols/__Tests/StellaOps.Symbols.Tests/Core/SymbolManifestTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.