Refactor Entropix to FlakeStorm

- Rename all instances of Entropix to FlakeStorm
- Rename package from entropix to flakestorm
- Update all class names (EntropixConfig -> FlakeStormConfig, EntropixRunner -> FlakeStormRunner)
- Update Rust module from entropix_rust to flakestorm_rust
- Update README: remove cloud comparison, update links to flakestorm.com
- Update .gitignore to allow docs files referenced in README
- Add origin remote for VS Code compatibility
- Fix missing imports and type references
- All imports and references updated throughout codebase
This commit is contained in:
Entropix 2025-12-29 11:15:18 +08:00
parent 7b75fc9530
commit 61652be09b
48 changed files with 586 additions and 425 deletions

View file

@ -1,6 +1,6 @@
# Broken Agent Example
This example demonstrates a deliberately fragile AI agent that Entropix can detect issues with.
This example demonstrates a deliberately fragile AI agent that flakestorm can detect issues with.
## The "Broken" Agent
@ -21,11 +21,11 @@ pip install fastapi uvicorn
uvicorn agent:app --port 8000
```
### 2. Run Entropix Against It
### 2. Run flakestorm Against It
```bash
# From the project root
entropix run --config examples/broken_agent/entropix.yaml
flakestorm run --config examples/broken_agent/flakestorm.yaml
```
### 3. See the Failures
@ -44,4 +44,4 @@ Try modifying `agent.py` to:
3. Handle emotional inputs gracefully
4. Detect and refuse prompt injections
Then re-run Entropix to see your robustness score improve!
Then re-run flakestorm to see your robustness score improve!

View file

@ -1,8 +1,8 @@
"""
Broken Agent Example
A deliberately fragile AI agent to demonstrate Entropix testing.
This agent has multiple intentional weaknesses that Entropix will find.
A deliberately fragile AI agent to demonstrate flakestorm testing.
This agent has multiple intentional weaknesses that flakestorm will find.
"""
import json