Skip to content

Commit b5d3edf

Browse files
author
findthehead
committed
readme
1 parent e048fb3 commit b5d3edf

2 files changed

Lines changed: 448 additions & 4 deletions

File tree

README.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# `EEG (Extensive Exposure Guard)`<br> MultiCloud AI Security and Vulnerability Management Framework
22
![](asset/logo.png)
33

4-
[![PyPI](https://img.shields.io/pypi/v/eeg-security?v=2)](https://pypi.org/project/eeg-security/)
5-
[![Python](https://img.shields.io/pypi/pyversions/eeg-security?v=2)](https://pypi.org/project/eeg-security/)
4+
[![PyPI](https://img.shields.io/pypi/v/eeg-security)](https://pypi.org/project/eeg-security/)
5+
[![Python](https://img.shields.io/pypi/pyversions/eeg-security)](https://pypi.org/project/eeg-security/)
6+
[![Tests](https://github.com/findthehead/EEG/actions/workflows/publish.yml/badge.svg)](https://github.com/findthehead/EEG/actions/workflows/publish.yml)
67
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
78

89
> **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
2829
pip install eeg-security[all] # All clouds
2930
```
3031

32+
For development:
33+
```bash
34+
git clone https://github.com/findthehead/EEG.git
35+
cd EEG
36+
pip install -e ".[dev]"
37+
```
38+
3139
---
3240

3341
## Quick Start
@@ -212,6 +220,9 @@ Flat format for spreadsheet analysis and SIEM ingestion. Includes findings table
212220
---
213221
214222
## Architecture
223+
224+
See [ARCHITECTURE.md](ARCHITECTURE.md) for detailed component diagrams and extension guide.
225+
215226
![](asset/architecture.png)
216227
217228
---
@@ -245,8 +256,22 @@ eeg/
245256

246257
---
247258

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+
248271
## Contributing
249272
Pull requests welcome. For major changes, open an issue first.
250273

274+
See [ARCHITECTURE.md](ARCHITECTURE.md) for codebase overview and extension points.
275+
251276
## License
252277
[MIT](LICENSE)

0 commit comments

Comments
 (0)