chore: remove BMAD framework files and IDE configuration artifacts

Clean up unused BMAD workflow, agent, and command files across all IDE
configurations (.agent, .clinerules, .cursor, .gemini, .github, .kilocode,
.opencode) and internal module files (_bmad/bmb, _bmad/bmm).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Sepehr
2026-04-25 15:01:09 +02:00
parent 891c4ba436
commit ab5dc7e568
3006 changed files with 279068 additions and 59151 deletions

View File

@@ -75,7 +75,7 @@ pub struct ComponentConfig {
pub component_type: String,
/// Component name for referencing in edges.
pub name: String,
// --- MchxCondenserCoil Specific Fields ---
/// Nominal UA value (kW/K). Maps to ua_nominal_kw_k.
#[serde(default)]
@@ -93,7 +93,6 @@ pub struct ComponentConfig {
#[serde(default)]
pub condenser_bank: Option<CondenserBankConfig>,
// -----------------------------------------
/// Component-specific parameters (catch-all).
#[serde(flatten)]
pub params: HashMap<String, serde_json::Value>,
@@ -405,12 +404,12 @@ mod tests {
}"#;
let config = ScenarioConfig::from_json(json).unwrap();
let comp = &config.circuits[0].components[0];
assert_eq!(comp.component_type, "MchxCondenserCoil");
assert_eq!(comp.ua_nominal_kw_k, Some(25.5));
assert_eq!(comp.fan_speed, Some(0.8));
assert_eq!(comp.air_inlet_temp_c, Some(35.0));
let bank = comp.condenser_bank.as_ref().unwrap();
assert_eq!(bank.circuits, 2);
assert_eq!(bank.coils_per_circuit, 3);