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,4 +1,4 @@
//! Entropix Rust Performance Module
//! flakestorm Rust Performance Module
//!
//! This module provides high-performance implementations for:
//! - Robustness score calculation
@ -140,7 +140,7 @@ fn string_similarity(s1: &str, s2: &str) -> f64 {
/// Python module definition
#[pymodule]
fn entropix_rust(_py: Python, m: &PyModule) -> PyResult<()> {
fn flakestorm_rust(_py: Python, m: &PyModule) -> PyResult<()> {
m.add_function(wrap_pyfunction!(calculate_robustness_score, m)?)?;
m.add_function(wrap_pyfunction!(calculate_weighted_score, m)?)?;
m.add_function(wrap_pyfunction!(parallel_process_mutations, m)?)?;

View file

@ -1,4 +1,4 @@
//! Parallel processing utilities for Entropix
//! Parallel processing utilities for flakestorm
//!
//! This module provides efficient parallel processing for mutation generation
//! and agent testing using Rayon.

View file

@ -1,4 +1,4 @@
//! Scoring algorithms for Entropix
//! Scoring algorithms for flakestorm
//!
//! This module contains optimized scoring algorithms for calculating
//! robustness metrics and aggregating test results.