neo-clean-architecture — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited neo-clean-architecture (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Design and review software systems using Clean Architecture. The core objective is separating concerns based on their rate of change, directing all source code dependencies inward toward the Domain core.
IQueryable) to Application, as it leaks database concerns.Progress:
references/design_principles.md).assets/review_checklist.md to scan code).updateContent(), addTag()) that validate rules inside the entity.IUserRepository), keeping database or network specifics out of Application.# [System Name] Clean Architecture Blueprint
## 1. Domain Layer
* **Entities & Aggregate Roots**:
- `EntityName` (ID-association explanation)
* **Value Objects**:
- `ValueObjectName` (Validation and behavior description)
## 2. Application Layer
* **Use Cases (CQRS / Handlers)**:
- `CreateSomethingCommand` & Handler
- `GetSomethingQuery` & Handler
* **External Interfaces (Gateways / Repositories)**:
- `ISomethingRepository` (Interface methods)
## 3. Infrastructure Layer
* **Persistence Configurations**:
- `SomethingRepository` implementation notes
- Value Object persistence mapping rules
## 4. Presentation / API Layer
* **Contracts (Request/Response)**:
- `CreateSomethingRequest` -> `SomethingResponse`
* **Route & Status Code Mappings**:
- `POST /api/something` -> `201 Created` / `400 Bad Request` / `409 Conflict`# Clean Architecture Review — [Project Name]
## Health Score: [Score]/10
[Brief architectural health assessment]
## Findings & Recommendations
### 🔴 Critical (Dependency Violation / Invariant Leakage)
* **Location**: `path/to/file.ext#L12-30`
* **Problem**: [Description of the clean architecture violation]
* **Remediation**:// Corrected code snippet
### 🟡 Warning (Anemic Model / Pointless Wrapping)
* **Location**: `path/to/file.ext`
* **Problem**: [Issue description]
* **Remediation**: [Code or prose description]
### 🟢 Info (Structural / Pipeline Enhancements)
* **Location**: `path/to/file.ext`
* **Remediation**: [Suggestion details]~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.