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:
@@ -31,6 +31,7 @@
|
||||
|
||||
use std::fmt;
|
||||
use std::ops::{Add, Div, Mul, Sub};
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
/// Pressure in Pascals (Pa).
|
||||
///
|
||||
@@ -1020,7 +1021,7 @@ impl Div<f64> for Entropy {
|
||||
///
|
||||
/// Represents the heat transfer coefficient (UA value) for thermal coupling
|
||||
/// between circuits or components.
|
||||
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct ThermalConductance(pub f64);
|
||||
|
||||
impl ThermalConductance {
|
||||
@@ -1079,7 +1080,7 @@ impl From<f64> for ThermalConductance {
|
||||
/// let same: CircuitId = "primary".into();
|
||||
/// assert_eq!(from_str, same); // Deterministic hashing
|
||||
/// ```
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, Default)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, Default, Serialize, Deserialize)]
|
||||
pub struct CircuitId(pub u16);
|
||||
|
||||
impl CircuitId {
|
||||
|
||||
Reference in New Issue
Block a user