You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **AI-First Cloud Security.** In a market with hundreds of cloud security tools, none focus on AI workloads. EEG is the go-to DevSecOps tool for developers to catch AI-specific vulnerabilities before pushing to production.
@@ -28,6 +29,13 @@ pip install eeg-security[gcp] # + google-cloud-aiplatform for Vertex AI live
28
29
pip install eeg-security[all] # All clouds
29
30
```
30
31
32
+
For development:
33
+
```bash
34
+
git clone https://github.com/findthehead/EEG.git
35
+
cd EEG
36
+
pip install -e ".[dev]"
37
+
```
38
+
31
39
---
32
40
33
41
## Quick Start
@@ -212,6 +220,9 @@ Flat format for spreadsheet analysis and SIEM ingestion. Includes findings table
212
220
---
213
221
214
222
## Architecture
223
+
224
+
See [ARCHITECTURE.md](ARCHITECTURE.md) for detailed component diagrams and extension guide.
225
+
215
226

216
227
217
228
---
@@ -245,8 +256,22 @@ eeg/
245
256
246
257
---
247
258
259
+
## Testing
260
+
261
+
```bash
262
+
# Run all tests
263
+
pytest tests/ -v
264
+
265
+
# With coverage
266
+
pytest tests/ --cov=eeg --cov-report=html
267
+
```
268
+
269
+
---
270
+
248
271
## Contributing
249
272
Pull requests welcome. For major changes, open an issue first.
250
273
274
+
See [ARCHITECTURE.md](ARCHITECTURE.md) for codebase overview and extension points.
0 commit comments