@aegis-scan/skills 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ATTRIBUTION.md +111 -0
- package/CHANGELOG.md +48 -3
- package/package.json +1 -1
- package/skills/compliance/aegis-native/brutaler-anwalt/CHANGELOG.md +202 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/LICENSE +43 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/README.md +236 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/SKILL.md +339 -5
- package/skills/compliance/aegis-native/brutaler-anwalt/references/aegis-integration.md +3 -4
- package/skills/compliance/aegis-native/brutaler-anwalt/references/audit-patterns.md +842 -5
- package/skills/compliance/aegis-native/brutaler-anwalt/references/bgh-urteile.md +226 -10
- package/skills/compliance/aegis-native/brutaler-anwalt/references/branchenrecht.md +365 -1
- package/skills/compliance/aegis-native/brutaler-anwalt/references/checklisten.md +33 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/dsgvo.md +26 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/BDSG/paragraphs.md +62 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/BFSG/paragraphs.md +85 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/BGB/paragraphs.md +112 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/DDG/paragraphs.md +71 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/DSGVO/articles.md +182 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/EU-Verordnungen/AI-Act-2024-1689/articles.md +108 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/EU-Verordnungen/DSA-2022-2065/articles.md +131 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/HGB-AO/paragraphs.md +61 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/INDEX.md +93 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/TDDDG/paragraphs.md +67 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/UWG/paragraphs.md +117 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/gesetze/VSBG/paragraphs.md +57 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/it-recht.md +22 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/stack-patterns/INDEX.md +122 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/stack-patterns/ai/mistral-eu.md +123 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/stack-patterns/ai/openai-dpa.md +120 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/stack-patterns/auth/nextauth-tom.md +120 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/stack-patterns/auth/supabase-auth-tom.md +104 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/stack-patterns/nextjs/proxy-csp-pattern.md +93 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/stack-patterns/payment/stripe-pci-tom.md +121 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/stack-patterns/tracking/plausible-pattern.md +107 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/AffiliateDisclaimer.tsx.example +54 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/COMPLIANCE-AUDIT-TRAIL-template.md +95 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/DSE-Section-UGC.md.example +77 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/DSFA-template.md +76 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/LostFoundReportForm-consent.tsx.example +126 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/README.md +33 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/UmamiScript.tsx.example +64 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/VVT-template.md +60 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/data-retention-cron.ts.example +52 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/data-retention-workflow.yml.example +47 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/proxy-strict-dynamic.ts.example +80 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/references/templates/security.txt.example +26 -0
- package/skills/compliance/aegis-native/brutaler-anwalt/scripts/health-check.sh +120 -0
- package/skills/defensive/aegis-native/rls-defense/SKILL.md +85 -0
- package/skills/foundation/aegis-native/aegis-module-builder/SKILL.md +5 -1
- package/skills/foundation/aegis-native/aegis-orchestrator/SKILL.md +87 -4
- package/skills/foundation/aegis-native/aegis-quality-gates/SKILL.md +69 -9
- package/skills/offensive/matty-fork/cicd-redteam/SKILL.md +531 -0
- package/skills/offensive/matty-fork/cloud-security/SKILL.md +106 -0
- package/skills/offensive/matty-fork/container-escape/SKILL.md +174 -0
- package/skills/offensive/matty-fork/mobile-pentester/SKILL.md +357 -0
- package/skills/offensive/matty-fork/subdomain-takeover/SKILL.md +154 -0
- package/skills/osint/elementalsouls-fork/offensive-osint/README.md +92 -0
- package/skills/osint/elementalsouls-fork/offensive-osint/SKILL.md +4177 -0
- package/skills/osint/elementalsouls-fork/osint-methodology/README.md +66 -0
- package/skills/osint/elementalsouls-fork/osint-methodology/SKILL.md +1695 -0
- package/sbom.cdx.json +0 -1
package/ATTRIBUTION.md
CHANGED
|
@@ -41,6 +41,53 @@ rule applies to any incoming updates — no stripping of upstream
|
|
|
41
41
|
attribution, no removal of AEGIS-added headers, no paper-over of
|
|
42
42
|
upstream format variance.
|
|
43
43
|
|
|
44
|
+
## Offensive skills — matty69v/Bug-Bounty-Agents (selective fork)
|
|
45
|
+
|
|
46
|
+
A subset of skills under `skills/offensive/matty-fork/` are forked from
|
|
47
|
+
[matty69v/Bug-Bounty-Agents](https://github.com/matty69v/Bug-Bounty-Agents)
|
|
48
|
+
under MIT License. The upstream is a 43-agent prompt library — AEGIS pulls
|
|
49
|
+
only the five that fill documented coverage gaps and otherwise have no
|
|
50
|
+
overlap with the existing `snailsploit-fork/` content.
|
|
51
|
+
|
|
52
|
+
- **Upstream author:** matty69v
|
|
53
|
+
- **SPDX:** MIT
|
|
54
|
+
- **Fork-SHA:** `5f8b8301b1bfbbe3aece4f38337cef69d52af0dc`
|
|
55
|
+
- **Fork date:** 2026-05-01
|
|
56
|
+
- **Skill count at fork:** 5 (selective):
|
|
57
|
+
- `cicd-redteam` (529 lines) — closes CI/CD pipeline analysis gap
|
|
58
|
+
- `cloud-security` (104 lines) — closes Cloud Security Posture gap (AWS/GCP/Azure)
|
|
59
|
+
- `container-escape` (172 lines) — closes container/k8s breakout gap
|
|
60
|
+
- `mobile-pentester` (355 lines) — closes Mobile (APK/IPA) analysis gap
|
|
61
|
+
- `subdomain-takeover` (152 lines) — closes subdomain-takeover detection gap
|
|
62
|
+
- **Upstream-attribution format:** YAML frontmatter (`name:`, `description:`,
|
|
63
|
+
`tools:`, `model:`). All five files preserved byte-identically inside the
|
|
64
|
+
body; AEGIS-local provenance header added above the YAML opener.
|
|
65
|
+
|
|
66
|
+
### AEGIS-side modifications
|
|
67
|
+
|
|
68
|
+
- Per-file `<!-- aegis-local: forked … from matty69v/Bug-Bounty-Agents@<sha> -->`
|
|
69
|
+
HTML header prepended above the YAML frontmatter on each `SKILL.md`.
|
|
70
|
+
- The other 38 upstream skills overlap with existing AEGIS coverage
|
|
71
|
+
(`snailsploit-fork/`, programmatic scanners, or LLM-DAST-wrappers) and are
|
|
72
|
+
intentionally NOT forked.
|
|
73
|
+
- Upstream's `_scope-guard.md` is a routing-excluded shared pre-flight prompt
|
|
74
|
+
that several main agents reference. The five forked skills retain those
|
|
75
|
+
textual references intact (byte-identical body), but the `_scope-guard.md`
|
|
76
|
+
itself is NOT shipped — AEGIS skill-loader requires kebab-case names that
|
|
77
|
+
cannot start with an underscore. Operators can fetch the upstream file
|
|
78
|
+
directly from the source repo if needed; AEGIS' own `--confirm` gate +
|
|
79
|
+
`evaluateActiveModeAuthorization()` (see `packages/cli/src/active-mode-
|
|
80
|
+
disclaimer.ts`) provides the equivalent enforced safety floor.
|
|
81
|
+
|
|
82
|
+
### Why selective rather than full fork
|
|
83
|
+
|
|
84
|
+
The upstream `_scope-guard.md` model is prompt-level (advisory, agent-
|
|
85
|
+
referenced). AEGIS' active-mode disclaimer + `--confirm` gate is CLI-level
|
|
86
|
+
(enforced, Commander.js-validated). Pulling all 43 agents would bloat the
|
|
87
|
+
skill catalog with content that either duplicates AEGIS' programmatic
|
|
88
|
+
checks or duplicates `snailsploit-fork/` coverage. The five selected fill
|
|
89
|
+
documented gaps that no other AEGIS surface covers today.
|
|
90
|
+
|
|
44
91
|
## Defensive skills — AEGIS-native
|
|
45
92
|
|
|
46
93
|
All skills under `skills/defensive/aegis-native/` are AEGIS-original
|
|
@@ -109,6 +156,18 @@ This avoids:
|
|
|
109
156
|
- Duplicate maintenance burden when the upstream package is the
|
|
110
157
|
single source of truth
|
|
111
158
|
|
|
159
|
+
### `Chachamaru127/claude-code-harness` — concept-only adoption (no fork, no install)
|
|
160
|
+
|
|
161
|
+
- **Upstream:** https://github.com/Chachamaru127/claude-code-harness
|
|
162
|
+
- **License:** MIT
|
|
163
|
+
- **Adoption mode:** **concept-only** — AEGIS adopts two patterns from this project's design but ships zero copied code or assets:
|
|
164
|
+
1. **Plans.md as a Live Working-Plan SSOT** — adapted into `aegis-orchestrator/SKILL.md` as the format for `.aegis/Plans.md`. AEGIS-specific: integrated into the existing 8-skill foundation cluster lifecycle (orchestrator initializes, specialist skills update, handover-writer summarizes), uses pure markdown, no Go binary or `/harness-*` verb-commands.
|
|
165
|
+
2. **`harness doctor --residue` stale-reference detection** — adapted into `aegis-quality-gates/SKILL.md` as Gate 10 (residue-check). AEGIS-specific: pure shell + grep methodology integrated as a gate of the existing 10-gate verifier sequence (was 9-gate pre-adoption), with the AEGIS classes of residue documented (stale commit-SHAs in handovers, broken markdown cross-links in shipped SKILL.md, orphan path references, phantom `_INDEX.md` skill rows, dead `<!-- aegis-local: -->` provenance refs). The motivating bug-class: handover docs that cite commit-SHAs invalidated by a `git rebase`.
|
|
166
|
+
|
|
167
|
+
- **What was NOT adopted:** the Go-native runtime engine, the 5 `/harness-plan|work|review|release|setup` verb-commands, the 13 R01-R13 declarative guardrails, the 3-agent worker/reviewer/scaffolder split, the marketplace plugin distribution. AEGIS already has equivalents for or alternatives to each (repo rulesets, scrub-gates, supply-chain CI gates, 8 specialist foundation skills, npm direct distribution).
|
|
168
|
+
|
|
169
|
+
- **Why concept-only and not fork or mandate:** the two adopted patterns are **methodology**, not code — they fit AEGIS's existing skill-cluster architecture verbatim once described in markdown. Forking would buy nothing (no shared code paths) and adding a mandate would burden users with installing a tool they don't need. Documenting the inspiration in this file + the relevant SKILL.md sections preserves attribution while staying lean.
|
|
170
|
+
|
|
112
171
|
### `supabase/agent-skills` — Postgres + Supabase development best-practices
|
|
113
172
|
|
|
114
173
|
- **Upstream:** https://github.com/supabase/agent-skills
|
|
@@ -146,6 +205,58 @@ This avoids:
|
|
|
146
205
|
ensures they always pull the freshest Supabase-team-maintained
|
|
147
206
|
guidance.
|
|
148
207
|
|
|
208
|
+
## OSINT skills — elementalsouls/Claude-OSINT
|
|
209
|
+
|
|
210
|
+
All skills under `skills/osint/` are forked from
|
|
211
|
+
[elementalsouls/Claude-OSINT](https://github.com/elementalsouls/Claude-OSINT)
|
|
212
|
+
under MIT License (with offensive-security ethical-use notice).
|
|
213
|
+
|
|
214
|
+
- **Upstream author:** Cyanide (elementalsouls)
|
|
215
|
+
- **SPDX:** MIT
|
|
216
|
+
- **Fork-SHA:** `ea42241d068e8112da0e4e28006207125c835c2e`
|
|
217
|
+
- **Fork date:** 2026-05-01
|
|
218
|
+
- **Skill count at fork:** 2 (`offensive-osint`, `osint-methodology`)
|
|
219
|
+
- **Upstream-attribution format:** YAML frontmatter (`name:`, `description:`,
|
|
220
|
+
`version:`, `triggers:`). Both files preserved byte-identically inside the
|
|
221
|
+
body; AEGIS-local provenance header added above the YAML opener.
|
|
222
|
+
|
|
223
|
+
### AEGIS-side modifications
|
|
224
|
+
|
|
225
|
+
- Per-file `<!-- aegis-local: forked … from elementalsouls/Claude-OSINT@<sha> -->`
|
|
226
|
+
HTML header prepended above the YAML frontmatter on both `SKILL.md` files.
|
|
227
|
+
- `offensive-osint/SKILL.md` carries an additional **PORT-NOTE** inside its
|
|
228
|
+
fork header explaining that the upstream `secret_scan.py` helper script is
|
|
229
|
+
NOT shipped (`@aegis-scan/skills` enforces a markdown-only invariant via
|
|
230
|
+
CI). The helper is scheduled for port to a TypeScript scanner module under
|
|
231
|
+
**F-EXTERNAL-SECRETS-1** (planned v0.18.x). Until then, operators run
|
|
232
|
+
AEGIS' existing `gitleaks` / `trufflehog` wrappers, or fetch the helper
|
|
233
|
+
directly from the upstream repository.
|
|
234
|
+
- `offensive-osint/README.md` *Loading*, *Helper script*, *Self-test* and
|
|
235
|
+
*License* sections updated to reflect the AEGIS package layout (no manual
|
|
236
|
+
`cp` of `scripts/secret_scan.py` since the script is not shipped; smoke
|
|
237
|
+
tests referenced as upstream-only pending F-SKILL-SYNC-CI-1).
|
|
238
|
+
- `osint-methodology/README.md` *Self-test* and *License* sections updated
|
|
239
|
+
similarly.
|
|
240
|
+
- Upstream `LICENSE` and `tests/smoke-test-prompts.md` are NOT shipped — the
|
|
241
|
+
AEGIS root `LICENSE` covers all of `@aegis-scan/skills`, and the smoke
|
|
242
|
+
tests will land under `packages/skills/__tests__/skill-prompts/` when the
|
|
243
|
+
skill-validation CI is built (F-SKILL-SYNC-CI-1).
|
|
244
|
+
|
|
245
|
+
### Why a separate top-level category instead of merging into `offensive/`
|
|
246
|
+
|
|
247
|
+
`osint/` is intel-gathering tradecraft (collection + correlation + scoring),
|
|
248
|
+
distinct from `offensive/` which encodes exploit-side red-team patterns
|
|
249
|
+
(SSRF / SQLi / XSS / RCE / etc.). The `snailsploit-fork/` already contains
|
|
250
|
+
much smaller `osint/` (399 lines) and `osint-methodology/` (434 lines)
|
|
251
|
+
skills that overlap topically but are subset by content. Both kept side-by-
|
|
252
|
+
side: the `snailsploit-fork/` versions remain available for operators who
|
|
253
|
+
prefer the lighter checklist style; the `osint/` top-level category
|
|
254
|
+
provides the operational arsenal (~5,800 lines of probe paths, regexes,
|
|
255
|
+
validators, identity-fabric methodology, vendor fingerprints) that the
|
|
256
|
+
`snailsploit-fork/` intentionally does not include. Frontmatter `name:`
|
|
257
|
+
collisions across categories are acceptable — Claude Code skill-routing
|
|
258
|
+
keys on path-relative identifiers, not the bare `name:` field.
|
|
259
|
+
|
|
149
260
|
## Future external cherry-pick candidates
|
|
150
261
|
|
|
151
262
|
The `skills/` tree is also designed to grow across sources via
|
package/CHANGELOG.md
CHANGED
|
@@ -8,9 +8,49 @@ and quality-audit completion, not by a fixed schedule.
|
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
-
## [
|
|
11
|
+
## [0.5.0] — 2026-05-01 — "External-research extension: NEW osint/ category + 5 selective offensive skills"
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Minor bump for the v0.18.0 scanner-family release-cut. Adds NEW `osint/` top-level skill category (2 skills, 5861 lines) and selective fork from a second offensive upstream (5 gap-filling skills, 1322 lines). Skill-count grows from 55 to 62; source-namespaces grow from 2 (`snailsploit-fork`, `aegis-native`) to 4 (+`elementalsouls-fork`, +`matty-fork`).
|
|
14
|
+
|
|
15
|
+
### Added (NEW category — F-OSINT-SKILL-PACK-1)
|
|
16
|
+
|
|
17
|
+
- **`skills/osint/`** — NEW top-level category for intel-gathering tradecraft (distinct from `offensive/` exploit-side patterns). Forked from elementalsouls' upstream OSINT pack (MIT, fork-SHA `ea42241d068e8112da0e4e28006207125c835c2e`):
|
|
18
|
+
- `osint/elementalsouls-fork/offensive-osint/SKILL.md` (4168 lines, 204KB) — operational arsenal: 43+-pattern modern-AI-API-key catalog, 80+-template dork corpus, vendor edge-appliance fingerprints, identity-fabric concrete endpoints, 9 read-only credential validators, 27 attack-path templates.
|
|
19
|
+
- `osint/elementalsouls-fork/osint-methodology/SKILL.md` (1693 lines, 93KB) — 5-stage recon pipeline, asset-graph discipline, breach × identity correlation, email-security audit, vulnerability prioritization (CVE × EPSS × KEV).
|
|
20
|
+
- PORT-NOTE: upstream `secret_scan.py` helper script NOT shipped (`@aegis-scan/skills` markdown-only CI invariant). Helper queued for port to `packages/scanners/src/recon/external-secret-scan.ts` under F-EXTERNAL-SECRETS-1 (planned v0.18.x).
|
|
21
|
+
|
|
22
|
+
### Added (selective fork — F-SKILL-PACK-MATTY-1)
|
|
23
|
+
|
|
24
|
+
- **5 skills under `skills/offensive/matty-fork/`** — selective fork of matty69v's upstream Bug-Bounty-Agents (MIT, fork-SHA `5f8b8301b1bfbbe3aece4f38337cef69d52af0dc`). Pulled 5 of 43 upstream agents that fill documented AEGIS coverage gaps; the other 38 overlap with existing snailsploit-fork content or programmatic scanners and are intentionally not pulled.
|
|
25
|
+
- `cicd-redteam` (529 lines) — CI/CD pipeline analysis (GH Actions / GitLab CI / Jenkins / Argo / Tekton)
|
|
26
|
+
- `cloud-security` (104 lines) — CSPM (AWS / GCP / Azure)
|
|
27
|
+
- `container-escape` (172 lines) — container / k8s breakout
|
|
28
|
+
- `mobile-pentester` (355 lines) — Mobile (APK / IPA) — OWASP MASTG / MASVS
|
|
29
|
+
- `subdomain-takeover` (152 lines) — dangling-CNAME detection
|
|
30
|
+
- Upstream's `_scope-guard.md` advisory prompt is NOT shipped — AEGIS skill-loader requires kebab-case names that cannot start with underscore, and the safety floor is already enforced at the CLI gate (`evaluateActiveModeAuthorization()` + `--confirm` in active-mode-disclaimer.ts). The 5 forked skills retain their textual scope-guard references byte-identical (per snailsploit-fork preservation precedent).
|
|
31
|
+
|
|
32
|
+
### Updated (compliance/aegis-native/brutaler-anwalt → v3.4.0 sync)
|
|
33
|
+
|
|
34
|
+
- **`brutaler-anwalt` skill enriched** to its current locally-maintained version: 5-persona self-verification (Hunter / Challenger / Synthesizer + Devil's-Advocate + Live-Probe), reconciled v3.4.0 audit-pattern set (Multi-Surface Origin-Regression / File-Storage in Production-Container / DKIM Specific-over-Wildcard + Multi-Selector / Operator-DNS-View Pflicht-Check / Granulare Try-Catch um Persist + Mail-Send), README version sync 3.2.0 → 3.4.0, expanded `references/` tree (+`gesetze/` 11 sub-folders, +`stack-patterns/` 10 sub-folders, +`templates/` 10 example files), shipped `scripts/health-check.sh` with operator-customizable brand-deny-list (reads `scripts/brand-deny-list.local.txt` when present, falls back to placeholder pattern). All shipped content sanitized for OSS — zero brand / personal-name leaks (verified by sanitize-grep + health-check). The skill's `LICENSE` is MIT, matching AEGIS root.
|
|
35
|
+
- **Operator note**: customize `scripts/brand-deny-list.local.txt` (gitignored sibling) with your own internal codenames; the health-check uses it to scan SKILL.md / references / templates for accidental brand bleed before each release.
|
|
36
|
+
|
|
37
|
+
### Added (Plans.md SSOT pattern)
|
|
38
|
+
|
|
39
|
+
- **Plans.md — Live Working-Plan SSOT pattern** in `aegis-orchestrator/SKILL.md`. Defines `.aegis/Plans.md` as the single source of truth for in-flight tasks + acceptance criteria + blockers, complementing `state.json` (machine-readable phase) and handover docs (point-in-time snapshots). Lifecycle: orchestrator initializes, specialist skills update, handover-writer summarizes at session-end. AC-discipline: every task carries observable + independently verifiable acceptance criteria; task is DONE only when all AC are checked; blocked tasks keep AC unchanged and document the blocker. Concept adapted from [Chachamaru127/claude-code-harness](https://github.com/Chachamaru127/claude-code-harness) (MIT) — pure markdown integration, no fork, no Go binary, no install.
|
|
40
|
+
|
|
41
|
+
### Validation
|
|
42
|
+
|
|
43
|
+
- **Unit tests: 536 / 536** (was 491 — +45 across new sources).
|
|
44
|
+
- **Manifest invariants** updated: EXPECTED_TOTAL 55 → 62; EXPECTED_CATEGORIES adds `osint`; EXPECTED_SOURCES_BY_CATEGORY adds `elementalsouls-fork` (osint) + `matty-fork` (offensive); EXPECTED_NAMES_BY_CATEGORY extends offensive (+5) and adds osint (+2).
|
|
45
|
+
- **Attribution invariants** updated: HEADER_RE_BY_SOURCE +2 entries.
|
|
46
|
+
- **Gate 10 — Residue-Check** added to `aegis-quality-gates/SKILL.md`. Detects stale commit-SHAs in handover docs (caught the v0.4.0 publish-procedure bug where rebase invalidated cited SHAs), broken markdown cross-links in shipped SKILL.md content, orphan path references, phantom `_INDEX.md` skill rows pointing at non-existent paths, dead `<!-- aegis-local: -->` provenance refs. Pure shell + grep methodology — runs in both `--quick` and `--final` modes, plus a new `--residue` operator-on-demand mode for post-rebase / post-merge checks. Concept adapted from claude-code-harness's `harness doctor --residue` (MIT).
|
|
47
|
+
- **Plans.md task-discipline** referenced from `aegis-module-builder/SKILL.md`. Module-builder feature-specs map their acceptance-criteria 1:1 onto the Plans.md AC-checkbox format defined in aegis-orchestrator. Module-build phases 2-6 check off AC as they progress; task moves DONE only when all AC are checked.
|
|
48
|
+
|
|
49
|
+
### Updated
|
|
50
|
+
|
|
51
|
+
- `aegis-quality-gates`: description + frontmatter `enforced_quality_gates` bumped from 9 → 10 to reflect the new residue-check gate.
|
|
52
|
+
- `aegis-orchestrator`: bootstrap-checklist extended from 6 to 8 steps (added Plans.md read at step 6, expanded print at step 7).
|
|
53
|
+
- `packages/skills/ATTRIBUTION.md` — new "concept-only" attribution section for claude-code-harness documenting both pattern adoptions, what was NOT adopted, and why concept-only beats fork-or-mandate for methodology adoption.
|
|
14
54
|
|
|
15
55
|
- **External-skills mandate-without-fork integration** with [supabase/agent-skills](https://github.com/supabase/agent-skills) (MIT). Two upstream skills (`supabase` + `supabase-postgres-best-practices`) are now declared **mandatory complements** to the AEGIS-native security layer for any project using Supabase or Postgres. Installation via the upstream's own distribution channel (`npx skills add supabase/agent-skills -g -y`) — not re-shipped here. Rationale: upstream is actively maintained by the Supabase team with frequent updates the AEGIS team has no special insight into, so fork-mode would freeze content at a fork-SHA + create unnecessary quarterly upstream-sync work for content that benefits from staying current.
|
|
16
56
|
- `ATTRIBUTION.md` — new "Required external skills (mandatory complement, not forked)" section documenting the rationale, install command, and license-compatibility chain.
|
|
@@ -19,7 +59,12 @@ and quality-audit completion, not by a fixed schedule.
|
|
|
19
59
|
- `skills/defensive/aegis-native/tenant-isolation-defense/SKILL.md` — new "Complementary external skill (mandatory)" section pointing to upstream `supabase` and `supabase-postgres-best-practices` skills.
|
|
20
60
|
- AEGIS repository root — new `AGENTS.md` documents the repo-wide mandate for AI coding-agents working in this repo and the layer-split between AEGIS-native security and upstream Supabase dev/perf coverage.
|
|
21
61
|
|
|
22
|
-
|
|
62
|
+
### Notes
|
|
63
|
+
|
|
64
|
+
- This [Unreleased] entry establishes **three external-source integration-patterns** that AEGIS now uses, picked per-source based on stability + maintenance-economics:
|
|
65
|
+
1. **Fork-mode** (`snailsploit-fork`) — content forked into `skills/<category>/<source>/` with attribution headers; quarterly upstream-sync.
|
|
66
|
+
2. **Mandate-without-fork** (`supabase/agent-skills`) — install via upstream's own distribution channel; cross-reference from AEGIS skills.
|
|
67
|
+
3. **Concept-only adoption** (`Chachamaru127/claude-code-harness`) — methodology adapted into existing AEGIS skills via prose; zero code, zero install, attribution preserved in this CHANGELOG + ATTRIBUTION.md.
|
|
23
68
|
|
|
24
69
|
---
|
|
25
70
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aegis-scan/skills",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "AEGIS Skills — opt-in skill library for Claude Code and compatible AI agents. Offensive red-team methodology from curated sources, attribution preserved per-file. Multi-source-ready architecture with placeholder directories for future defensive (AEGIS-native) and MITRE-mapped extensions. Third sibling in the AEGIS full-repertoire toolkit alongside @aegis-scan/cli and @aegis-wizard/cli.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "RideMatch1 <230386010+RideMatch1@users.noreply.github.com>",
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
# Changelog — brutaler-anwalt
|
|
2
|
+
|
|
3
|
+
Alle relevanten Aenderungen am Skill werden hier dokumentiert.
|
|
4
|
+
Format orientiert sich an [Keep a Changelog](https://keepachangelog.com/de/1.1.0/),
|
|
5
|
+
Versionierung folgt [SemVer](https://semver.org/lang/de/).
|
|
6
|
+
|
|
7
|
+
> Provenance-Disziplin (SKILL.md §5) ist seit v3.0 zero-tolerance.
|
|
8
|
+
> Jede neue Az. in `references/bgh-urteile.md` muss eine Source-URL haben
|
|
9
|
+
> (Primaerquelle bevorzugt; Sekundaerquelle mit `[secondary-source-verified]`-Tag).
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## [Unreleased] — Roadmap zu v4.0.0
|
|
14
|
+
|
|
15
|
+
Naechste Schritte (mehrere Sessions, siehe `MAXOUT-PROGRESS.md` falls vorhanden):
|
|
16
|
+
|
|
17
|
+
- [ ] `references/gesetze/` — strukturierte Auszuege fuer leere Folders (HinSchG, NIS2UmsuCG-BSIG, KritisDachG, StGB §§ 202a-d, ePrivacy-RL, DMA, ODR, eIDAS, StPO, IHK-DSK-EDSA-Guidelines) + 6 audit-relevance.md fuer befuellte Folder (BDSG, TDDDG, DDG, BGB, HGB-AO, UWG, VSBG, BFSG)
|
|
18
|
+
- [ ] `references/stack-patterns/` — 22 weitere Files: vue/, astro/, laravel/, rails/, django/, express/, nest/, strapi/ (frameworks), auth/auth0+clerk+custom-jwt, payment/paddle+mollie+lemonsqueezy+paypal, tracking/google-analytics+posthog+umami+mixpanel+fathom, ai/anthropic-dpa+replicate+self-hosted-llm, react/cookie-banner+consent-gate, nextjs/env-driven-tracking+dynamic-rendering+api-bearer-auth
|
|
19
|
+
- [ ] `references/bgh-urteile.md` Source-URL-Coverage 39/67 → 67/67 (28 Az. ohne Source pflegen, primary-source bevorzugt; nach v3.3.0-Spot-Check sind Halluzinations-Verdaechtige bereinigt)
|
|
20
|
+
- [ ] `references/abmahn-templates.md` — DSA-Notice + BFSG-Anhoerung + AI-Act-Behoerden-Anhoerung + Crypto-MiCA + HinSchG
|
|
21
|
+
- [ ] `references/aegis-integration.md` — Update auf AEGIS v0.17.x Module-Map
|
|
22
|
+
- [ ] `references/international.md` — Schweiz nFADP (revDSG) + Oesterreich DSG-Layer + Liechtenstein
|
|
23
|
+
- [ ] `references/vertragsrecht.md` — § 312k Pflicht-Klauseln-Komplettliste + FairVertrG 2022 + B2B vs B2C Abgrenzungs-Pattern
|
|
24
|
+
- [ ] `references/strafrecht-steuer.md` — § 202a-d StGB Volltext + GoBD-Praxis
|
|
25
|
+
- [ ] OSS-Release als MIT-Submodule unter AEGIS-Repo (User-authorized)
|
|
26
|
+
- [ ] OOC-Anti-Overfit-Verification (cross-project audit comparison)
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## [3.4.0] — 2026-05-01 — Audit-Korrektur + Live-E2E-Verify-Lessons
|
|
31
|
+
|
|
32
|
+
Erweiterungen aus dem Live-Fix-Cycle desselben Audit-Targets (eine Session
|
|
33
|
+
nach v3.3.0). Skill wird jetzt durch echten End-to-End-Verify gehaertet,
|
|
34
|
+
nicht mehr nur durch statische Audit-Pattern.
|
|
35
|
+
|
|
36
|
+
### Changed
|
|
37
|
+
- **audit-patterns.md Phase 5g DKIM-Check** auf Multi-Selector-Pattern erweitert.
|
|
38
|
+
Ehemalige Pflicht-Annahme „TXT auf `default._domainkey` ist Standard" hat
|
|
39
|
+
bei All-Inkl-Hosting einen False-Positive produziert: All-Inkl generiert
|
|
40
|
+
beim DKIM-Aktivierungs-Klick einen eigenen Selector im Format
|
|
41
|
+
`kasYYYYMMDDHHMMSS._domainkey`, der einen Wildcard-CNAME `*._domainkey` durch
|
|
42
|
+
Specific-over-Wildcard-Regel ueberschreibt. Lesson: NIE nur `default` testen,
|
|
43
|
+
sondern (1) sample-mail-header `DKIM-Signature: ... s=<selector> ...` lesen,
|
|
44
|
+
(2) mit DIESEM Selector `dig +short TXT <selector>._domainkey.<domain>`,
|
|
45
|
+
(3) Multi-Selector-Probe als Fallback (`default`, `mail`, `s1`, `k1`,
|
|
46
|
+
`kas...`, `selector1`, `google`).
|
|
47
|
+
|
|
48
|
+
- **bgh-urteile.md** Audit-Korrektur: Finding "DKIM defekt" wurde im operativen
|
|
49
|
+
Audit-Re-Run zum FALSE-POSITIVE umklassifiziert nach DNS-Sicht-Klärung
|
|
50
|
+
(User-Screenshot zeigte korrekten DKIM-TXT-Record auf hoster-spezifischem
|
|
51
|
+
Selector). Das ist eine wertvolle Lesson für brutaler-anwalt-Skill:
|
|
52
|
+
audit-side-Verify per `dig` allein ist nicht ausreichend — Operator-DNS-
|
|
53
|
+
Settings-View ist die definitive Quelle.
|
|
54
|
+
|
|
55
|
+
### Added
|
|
56
|
+
- **audit-patterns.md Phase 5g** Operator-View-Pflicht-Check ergaenzt:
|
|
57
|
+
„Bei DKIM-Verdacht NICHT nur `dig`, sondern auch Operator-DNS-Settings-View
|
|
58
|
+
einsehen — Specific-over-Wildcard-CNAME-Konstellationen koennten den
|
|
59
|
+
`dig`-Output verschleiern."
|
|
60
|
+
|
|
61
|
+
- **NEUER Pattern in audit-patterns.md Phase 5d Origin-Strict-Match**: Multi-
|
|
62
|
+
Surface-Regression-Discovery. Im Live-Fix-Cycle wurden 3 weitere API-Routes
|
|
63
|
+
(`contact`, `widerruf`, `consent-log`) mit demselben startsWith-Origin-Bug
|
|
64
|
+
entdeckt — ueber den initial-gepruefte newsletter hinaus. Skill-Pflicht-
|
|
65
|
+
Check: `grep -rEn "function isValidOrigin|origin\.startsWith" src/app/api/
|
|
66
|
+
src/lib/` — alle API-Routes muessen einen einzigen shared validator
|
|
67
|
+
importieren, **kein** lokal-defined Variant.
|
|
68
|
+
|
|
69
|
+
- **NEUER Pattern Phase 5d File-Storage in Production-Container**:
|
|
70
|
+
process.cwd()-basiertes File-Storage funktioniert lokal, kann aber in
|
|
71
|
+
Docker-Production-Container schreib-Permissions failen. Pflicht: Default-
|
|
72
|
+
Path mit `os.tmpdir()` als Production-Fallback + ENV-Override fuer
|
|
73
|
+
persistent volume. Detail: in audit-patterns.md Phase 5d „Folder-/Slug-
|
|
74
|
+
Sanitization"-Zeile bei Bedarf erweitern.
|
|
75
|
+
|
|
76
|
+
- **NEUER Pattern Phase 5g granulare Try-Catch**: Newsletter-DOI-Endpoint
|
|
77
|
+
hatte initial einen Bug — kein granulares Try-Catch um Mail-Send,
|
|
78
|
+
resultiert in HTTP 500 wenn Mail fail. Best-Practice: Persist-Fail = 500
|
|
79
|
+
(User soll nicht denken Anmeldung war OK), Mail-Fail = 200 + Log + retry-
|
|
80
|
+
Moeglichkeit (User kann erneut anmelden). Beispiel-Vorbild: konfigurator/
|
|
81
|
+
route.ts mit try-catch um sendKonfiguratorEmails.
|
|
82
|
+
|
|
83
|
+
### Skill-Lesson auf Meta-Ebene
|
|
84
|
+
**Static-Audit + Live-E2E-Verify ist ein Pflicht-Paar.** Static-Audit allein
|
|
85
|
+
produziert False-Positives (DKIM-Wildcard-CNAME-Verschleierung) UND uebersieht
|
|
86
|
+
Multi-Surface-Regressions (3 weitere Origin-Bugs). Brutaler-anwalt-Skill v3.4
|
|
87
|
+
empfiehlt jetzt explizit: nach jedem Audit ein End-to-End-Verify am echten
|
|
88
|
+
Live-System mit echten Test-Tokens / Test-Mails / DNS-Probes.
|
|
89
|
+
|
|
90
|
+
### AGB-Audit-Pattern (NEU in audit-patterns.md Phase 4 vorgeschlagen für v3.5)
|
|
91
|
+
Der gleiche Audit-Cycle deckte 4 AGB-Inkonsistenzen + 3 fehlende state-of-the-
|
|
92
|
+
art-Klauseln auf. Skill-Erweiterung fuer naechste Version: Phase 4 DSE-Drift-
|
|
93
|
+
Audit-Matrix sollte um „AGB-Konsistenz-Pass" erweitert werden mit Pflicht-
|
|
94
|
+
Pruefungen:
|
|
95
|
+
- Frist-Konflikt-Check (mehrere Werktage-/Kalendertage-Fristen — wann genau, was triggert)
|
|
96
|
+
- Zahlungs-Reihenfolge-Check (Vor/nach Vertragsunterschrift, vor/nach Demo)
|
|
97
|
+
- Rücktrittsrecht-vs-Mängelrechte-Verhältnis-Klausel (B2B parallel-Schutz)
|
|
98
|
+
- Höhere-Gewalt-Klausel (Drittanbieter-Ausfälle: Hosting/CDN/Email/AI)
|
|
99
|
+
- KI-Verordnung-Art.-50-Klausel (ab 02.08.2026 Pflicht für KI-Inhalte)
|
|
100
|
+
- Preisanpassungs-Klausel mit CPI-Cap (BGH XI ZR 26/20-konform)
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## [3.3.0] — 2026-05-01 — Audit-driven Maxout (DACH-Brand-Audit)
|
|
105
|
+
|
|
106
|
+
### Added
|
|
107
|
+
- **audit-patterns.md** Phase 5d — KONFIGURATOR-/MULTI-STEP-FORM-AUDIT: 14 Pflicht-Checks (Origin-Strict, Honeypot, CSRF, Rate-Limit, Zod, Server-Pricing, Folder-Sanitization, File-Upload-Polyglot, PII-Pre-Submit-Hygiene, DSE-Konfigurator-Block, TTL-Loesch-Konzept, Eingangsbestaetigung, Pre-DSGVO-Hinweis, Email-Pflichtfeld-Trennung) + 6 Verify-Curl-Probes + Az.-Anker.
|
|
108
|
+
- **audit-patterns.md** Phase 5e — AI-CHATBOT-/LLM-DSGVO-AUDIT: 14 Pflicht-Checks (Vendor-AVV/DPA, Drittland-DSE, Pre-Consent-Loading, Prompt-Logging-Doku, PII-Auto-Redaction, Auskunftsrecht-Routing, System-Prompt-Anti-Leak, Prompt-Injection-Defense, AI-Act-Transparenz, Anti-Hallucination-Disclaimer, Response-Filter, Rate-Limit, Origin-Check, Konversations-TTL, Children-Schutz) + 5 Verify-Curl-Probes + Az.-Anker (Art. 50 EU AI Act).
|
|
109
|
+
- **audit-patterns.md** Phase 5f — SCANNER-/AUDIT-TOOL-SELBST-AUDIT: 12 Pflicht-Checks (RDG-Disclaimer, FP/FN-Liability, Eingabe-URL-Logging, Active-Probes-Authorisierung, SSRF-Defense, DNS-Rebinding-Defense, Rate-Limit, Output-Sanitization, Drittstellen-Hinweis, FP/FN-Tracking, User-Consent-Hinweis, Output-Disclaimer-pro-Finding) + 5 Verify-Curl-Probes + Az.-Anker (BGH I ZR 113/20 Smartlaw, § 202a-c StGB).
|
|
110
|
+
- **audit-patterns.md** Phase 5g — EMAIL-/SMTP-OUTBOUND-COMPLIANCE-AUDIT: 6 Mail-Authentifizierungs-Checks (SPF/DKIM-TXT-NICHT-CNAME/DMARC-mit-Reporting/BIMI/MX/Reporting-Adresse) + 12 Outbound-Compliance-Checks (3rd-Party-AVV, IP-Reputation, Bestandskunden, DOI, Bestaetigungs-Mail-Werbung, Unsubscribe, List-Unsubscribe-Header, Footer-Impressum, Consent-Beweis-Doku, Cold-Outreach, Bounce-Handling, TLS) + 7 Verify-Commands (dig + nc + Inbox-Header-Check) + Az.-Anker.
|
|
111
|
+
|
|
112
|
+
### Changed
|
|
113
|
+
- **SKILL.md** §5(c) Halluzinations-Indikatoren erweitert um V3.3-Lesson: WebSearch-Treffer mit „aehnlichem Sachverhalt" sind NICHT ausreichend — Pflicht-WebFetch zur Az.-Volltext-Verifikation. Anlass: Audit 2026-05-01 entdeckte 2 Halluzinationen (OLG Hamm 4 U 75/23 + LG Berlin 16 O 9/22). Beide WebSearch-Vorschlaege waren initial falsch — erst WebFetch-Volltext zeigte korrektes Az. (OLG Hamm 11 U 88/22, 20.01.2023, lennmed.de Source).
|
|
114
|
+
- **bgh-urteile.md** OLG Hamm 4 U 75/23 → ersetzt mit verifiziertem **OLG Hamm 11 U 88/22 (20.01.2023)** + Source lennmed.de + Provenance-Note.
|
|
115
|
+
- **bgh-urteile.md** LG Berlin 16 O 9/22 → markiert als VERDACHT-HALLUZINATION + auf BGH I ZR 218/07 + § 7 UWG-Rechtsprechung umgeleitet.
|
|
116
|
+
- **bgh-urteile.md** KG Berlin 5 U 87/19 Duplikat konsolidiert (eine Section mit secondary-source-verified Source bleibt).
|
|
117
|
+
- **branchenrecht.md** neue Branche **Webdesign-Agentur / Marketing-Agentur** (post-2026-05-01-Audit-Lessons): 11 Pflicht-Checks + Trigger + Az.-Anker (BGH I ZR 113/20, I ZR 218/07, I ZR 161/24, OLG Hamm 11 U 88/22).
|
|
118
|
+
- **scripts/health-check.sh** pipefail-Bug gefixt: `grep -l` mit no-match → exit 1 propagiert mit `set -euo pipefail` → Script abbruch. Fix: Subshell + `|| true` + Klammern. Brand-Leak + Templates-Check liefern jetzt korrekt 0 Treffer.
|
|
119
|
+
|
|
120
|
+
### Audit-Validierung (battle-tested 2026-05-01)
|
|
121
|
+
Phasen 5d/5e/5f/5g auf einer Live-DACH-Brand-Site (Webdesign-Agentur, B2B-primaer, Konfigurator + Mistral-Chatbot + AEGIS-Scanner) angewandt. Ergebnis: **10 Findings produziert** (3 KRITISCH: Newsletter-Single-Opt-In + DSE-Drift + Newsletter-Origin-Bug + DKIM-CNAME-Defekt; 3 HOCH: DMARC-`p=none` + BFSG-Pflicht-Seite-404 + CSP-frame-src-Maps-Drift; 4 NIEDRIG/MITTEL). DEVIL'S ADVOCATE ergaenzte Sammelklage-Vektor + AI-Act-Future-Pflicht. LIVE-PROBE-Matrix: 17 PASS / 4 FAIL / 1 not-tested. Phase 5g war highest-ROI mit 3 hochwertigen Findings (DKIM/DMARC/Newsletter-SOI). Audit-Output liegt operator-side im jeweiligen Repo-`strategy/`-Folder.
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## [3.2.0] — 2026-05-01 — Sanitization + OSS-Release-Vorbereitung
|
|
126
|
+
|
|
127
|
+
### Added
|
|
128
|
+
- `references/templates/` mit 11 anonymisierten Snippets:
|
|
129
|
+
- `DSFA-template.md`, `VVT-template.md`, `COMPLIANCE-AUDIT-TRAIL-template.md`
|
|
130
|
+
- `AffiliateDisclaimer.tsx.example`
|
|
131
|
+
- `proxy-strict-dynamic.ts.example`
|
|
132
|
+
- `data-retention-cron.ts.example`, `data-retention-workflow.yml.example`
|
|
133
|
+
- `UmamiScript.tsx.example`, `security.txt.example`
|
|
134
|
+
- `DSE-Section-UGC.md.example`, `LostFoundReportForm-consent.tsx.example`
|
|
135
|
+
- `CHANGELOG.md` (diese Datei)
|
|
136
|
+
- `README.md` mit RDG-Disclaimer + Install-Hinweisen + Contribution-Guidelines
|
|
137
|
+
- `LICENSE` (MIT)
|
|
138
|
+
|
|
139
|
+
### Changed (Sanitization — brand-agnostisch)
|
|
140
|
+
- `audit-patterns.md`: 11 brand-spezifische Refs auf generic Lessons-Bezeichner umgestellt (`operativ-Audit 2026-04-27`, `V3.1-Audit-Vorfall 2026-04-30`, `UGC-Plattform-Audit 2026-05-01`).
|
|
141
|
+
- `SKILL.md` §5(a) + §5(g): Brand-Refs durch neutrale Beschreibung ersetzt.
|
|
142
|
+
- `dsgvo.md`, `checklisten.md`, `branchenrecht.md`, `bgh-urteile.md`,
|
|
143
|
+
`aegis-integration.md`: alle internen Codenamen entfernt.
|
|
144
|
+
- Lehrbuch-Beispiele auf `references/templates/`-Pfade umgebogen statt direkt
|
|
145
|
+
konkrete Operator-Repos zu zitieren (Strategie: teaching-value erhalten,
|
|
146
|
+
Operator-Identitaet entfernen).
|
|
147
|
+
|
|
148
|
+
### Migrationspfad fuer abhaengige Skills
|
|
149
|
+
- Wer auf `compliance/DSFA-2026.md` / `compliance/VVT-2026.md` /
|
|
150
|
+
`<operator-customer-build>/src/proxy.ts` o.ae. Pfade in vorherigen
|
|
151
|
+
Skill-Versionen verlinkt hatte: bitte auf
|
|
152
|
+
`references/templates/DSFA-template.md` /
|
|
153
|
+
`references/templates/VVT-template.md` /
|
|
154
|
+
`references/templates/proxy-strict-dynamic.ts.example` umstellen.
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
## [3.1.0] — 2026-05-01 — V3.1-Lessons + UGC-PII-Audit
|
|
159
|
+
|
|
160
|
+
### Added
|
|
161
|
+
- `audit-patterns.md` Phase 5c — UGC-PUBLIC-PII-AUDIT (post-V3.1-Audit-Lessons): 6-stufige Pflicht-Checks fuer Vermisst-/Marketplace-/Forum-Plattformen.
|
|
162
|
+
- `audit-patterns.md` Phase 5b — BFSG-AUDIT (B2C E-Commerce, BFSG seit 28.06.2025).
|
|
163
|
+
- `audit-patterns.md` Phase 6b — Deployment-Codename-Leak-Check (CSP / Public-Text / Repo-Grep, 3 Surfaces).
|
|
164
|
+
- `audit-patterns.md` Stand-Datum-Hygiene-Check.
|
|
165
|
+
- `dsgvo.md` DSFA-Trigger-Liste + VVT-KMU-Best-Practice.
|
|
166
|
+
- `checklisten.md` Checkliste 3b AGB-B2C Pflicht-Klauseln-Komplettliste + Checkliste 3c Affiliate.
|
|
167
|
+
- `bgh-urteile.md` EuGH C-131/12 Google Spain + BGH I ZR 169/17 (§ 36 VSBG).
|
|
168
|
+
|
|
169
|
+
### Changed
|
|
170
|
+
- SKILL.md §5(g): V3.1-Lessons (Pre-Deploy-Gate, Verify-Command-Pflicht bei DSE-Aenderungen mit operativer Dimension, Code-Var-Names-Verbot in Public-Text).
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## [3.0.0] — 2026-04-30 — Az.-Provenance zero-tolerance
|
|
175
|
+
|
|
176
|
+
### Changed
|
|
177
|
+
- SKILL.md §5: Az.-Provenance-Pflicht eingefuehrt (zero-tolerance fuer halluzinierte Az.).
|
|
178
|
+
- `bgh-urteile.md`: Source-Pflicht — jeder Eintrag braucht Source-URL.
|
|
179
|
+
- 6 halluzinierte Az.-Nummern aus geshipptem Compliance-Doc entfernt + per follow-up-commit nach Primaerquellen-Verifikation korrigiert.
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## [2.0.0] — 2026-04-29 — V3 mit DSE-Drift-Audit
|
|
184
|
+
|
|
185
|
+
### Added
|
|
186
|
+
- DSE-Drift-Audit-Matrix (Style 1 Auslassung + Style 2 Falschangabe) in `audit-patterns.md` Phase 4.
|
|
187
|
+
- 8-Phasen-HUNTER-Workflow.
|
|
188
|
+
- Multi-Container-Shared-Host-Risiko-Pattern.
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
## [1.0.0] — 2026-04-27 — Initial brutaler-anwalt
|
|
193
|
+
|
|
194
|
+
### Added
|
|
195
|
+
- Adversarial Multi-Persona-Modell: HUNTER + CHALLENGER + SYNTHESIZER.
|
|
196
|
+
- 4 Modi: SCAN / HUNT / SIMULATE / CONSULT.
|
|
197
|
+
- Reference-Files: `audit-patterns.md`, `dsgvo.md`, `it-recht.md`,
|
|
198
|
+
`vertragsrecht.md`, `checklisten.md`, `branchenrecht.md`, `bgh-urteile.md`,
|
|
199
|
+
`abmahn-templates.md`, `aegis-integration.md`, `international.md`,
|
|
200
|
+
`strafrecht-steuer.md`.
|
|
201
|
+
- AEGIS-Integration (Mapping AEGIS-Findings → Anwalts-Kritikalitaet).
|
|
202
|
+
- RDG-Disclaimer-Pflicht im Output.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 brutaler-anwalt Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# Hinweis zu Inhalt der References-Files
|
|
26
|
+
|
|
27
|
+
- Auszuege aus deutschen Gesetzen (`references/gesetze/DSGVO/`, `BDSG/`, `BGB/`,
|
|
28
|
+
`UWG/` etc.) sind gemeinfreie Werke nach § 5 UrhG und werden mit
|
|
29
|
+
Quellen-Hinweis auf https://www.gesetze-im-internet.de/ wiedergegeben.
|
|
30
|
+
- Auszuege aus EU-Verordnungen (`DSA-2022-2065`, `AI-Act-2024-1689` etc.) werden
|
|
31
|
+
unter Creative Commons Attribution 4.0 (CC BY 4.0) der Europaeischen Union
|
|
32
|
+
per https://eur-lex.europa.eu/ wiedergegeben.
|
|
33
|
+
- BGH/EuGH/OLG-Entscheidungen in `references/bgh-urteile.md` werden mit Az.
|
|
34
|
+
und Source-URL der jeweiligen Justizportale zitiert. Tenor-Auszuege sind
|
|
35
|
+
Kurz-Zusammenfassungen (kein Volltext).
|
|
36
|
+
|
|
37
|
+
# RDG-Disclaimer
|
|
38
|
+
|
|
39
|
+
Dieser Skill ist eine technisch-indikative Compliance-Pruef-Hilfe. Er stellt
|
|
40
|
+
keine Rechtsdienstleistung im Sinne von § 2 RDG dar (BGH I ZR 113/20 Smartlaw,
|
|
41
|
+
09.09.2021) und ersetzt nicht die Beratung durch einen zugelassenen
|
|
42
|
+
Rechtsanwalt fuer IT- bzw. Datenschutzrecht. Fuer verbindliche Auskuenfte zu
|
|
43
|
+
konkreten Sachverhalten ist anwaltliche Beratung erforderlich.
|