brief — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited brief (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.
Respond in the user's preferred language (detect from their recent messages, or fall back to the language setting in CLAUDE.md).
Compare the current branch against develop and generate two review documents: architecture change diagram + PR review checklist.
Arguments: $ARGUMENTS
--base <branch>: specify a custom base branch for comparison--commits: only look at the changes from the most recent commitgit diff <base> HEAD --name-only | grep '\.cs$' — get all changed C# filesgit diff <base> HEAD --diff-filter=A --name-only | grep '\.cs$' — get newly added filesgit log <base>..HEAD --oneline — get the commit listgit diff <base> HEAD --numstat to get accurate added/deleted line counts per moduleIdentify architectural changes, ordered from most to least significant:
Tier 1 — Cross-module contract changes
Tier 2 — New modules/subsystems
Tier 3 — Internal refactoring of existing modules
Tier 4 — Extension points/configuration changes
Draw a Mermaid diagram for each Tier:
graph LR, color-coded: new (green) / modified (orange) / deleted (red)sequenceDiagram or flowchartstateDiagram-v2classDiagramDiagram requirements:
style or ::: to annotate added and modified nodesRead the full content of all files touched by the diff, and evaluate across these dimensions:
P0 — Must be human-reviewed
P1 — Recommended attention
P2 — Quick scan
Write two files to the same directory:
File 1: `Docs/qq/<branch-name>/arch-review_<timestamp>.md`
# Architecture Change Overview
> X modules affected, Y new modules, Z contract changes
## Tier 1 — Cross-module contract changes
### 1.1 Change Title
**Scope**: which modules are affected
**Nature of change**: one sentence
<diagram>
**Key points**: explanation of key decisions
## Tier 2/3/4 ... (same format)
## Module Change Heatmap
| Module | New Files | Modified Files | +Lines | Key Changes |
|--------|-----------|---------------|--------|-------------|File 2: `Docs/qq/<branch-name>/pr-review_<timestamp>.md`
## Review File Overview
| File | Priority | Change Summary |
|------|----------|---------------|
---
## P0 — Must be human-reviewed
1. **Filename:line** — description
Risk: ...
Suggestion: ...
## P1 — Recommended attention
## P2 — Quick scan
---
## PR Summary (ready to paste into PR description)Branch name: use git branch --show-current | tr '/' '_'. Timestamp format: YYYY-MM-DD-HHmm. Both files share the same timestamp.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.