Snapshot WIP: solver HP epic progress, BPHX/HX physics, BMAD skill refresh.
Some checks failed
CI / check (push) Has been cancelled

Capture uncommitted solver robustness work (regularization, domain errors, linear solver lifecycle, tube DP/MSH), web workbench updates, and synced BMAD skills across IDE agent folders before starting BPHX pressure-drop.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-19 16:35:31 +02:00
parent 88620790d6
commit 5bd180b5b8
1363 changed files with 101041 additions and 58547 deletions

View File

@@ -0,0 +1,5 @@
---
description: Strategic business analyst and requirements expert. Use when the user asks to talk to Mary or requests the business analyst.
---
LOAD the FULL {project-root}/.agents/skills/bmad-agent-analyst/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: System architect and technical design leader. Use when the user asks to talk to Winston or requests the architect.
---
LOAD the FULL {project-root}/.agents/skills/bmad-agent-architect/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: Senior software engineer for story execution and code implementation. Use when the user asks to talk to Amelia or requests the developer agent.
---
LOAD the FULL {project-root}/.agents/skills/bmad-agent-dev/SKILL.md, READ its entire contents and follow its directions exactly!

5
.github/agents/bmad-agent-pm.agent.md vendored Normal file
View File

@@ -0,0 +1,5 @@
---
description: Product manager for PRD creation and requirements discovery. Use when the user asks to talk to John or requests the product manager.
---
LOAD the FULL {project-root}/.agents/skills/bmad-agent-pm/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: Technical documentation specialist and knowledge curator. Use when the user asks to talk to Paige or requests the tech writer.
---
LOAD the FULL {project-root}/.agents/skills/bmad-agent-tech-writer/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: UX designer and UI specialist. Use when the user asks to talk to Sally or requests the UX designer.
---
LOAD the FULL {project-root}/.agents/skills/bmad-agent-ux-designer/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: Elite brainstorming specialist for facilitated ideation sessions. Use when the user asks to talk to Carson or requests the Brainstorming Specialist.
---
LOAD the FULL {project-root}/.agents/skills/bmad-cis-agent-brainstorming-coach/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: Master problem solver for systematic problem-solving methodologies. Use when the user asks to talk to Dr. Quinn or requests the Master Problem Solver.
---
LOAD the FULL {project-root}/.agents/skills/bmad-cis-agent-creative-problem-solver/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: Design thinking maestro for human-centered design processes. Use when the user asks to talk to Maya or requests the Design Thinking Maestro.
---
LOAD the FULL {project-root}/.agents/skills/bmad-cis-agent-design-thinking-coach/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: Disruptive innovation oracle for business model innovation and strategic disruption. Use when the user asks to talk to Victor or requests the Disruptive Innovation Oracle.
---
LOAD the FULL {project-root}/.agents/skills/bmad-cis-agent-innovation-strategist/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: Visual communication and presentation expert for slide decks, pitch decks, and visual storytelling. Use when the user asks to talk to Caravaggio or requests the Presentation Expert.
---
LOAD the FULL {project-root}/.agents/skills/bmad-cis-agent-presentation-master/SKILL.md, READ its entire contents and follow its directions exactly!

View File

@@ -0,0 +1,5 @@
---
description: Master storyteller for compelling narratives using proven frameworks. Use when the user asks to talk to Sophia or requests the Master Storyteller.
---
LOAD the FULL {project-root}/.agents/skills/bmad-cis-agent-storyteller/SKILL.md, READ its entire contents and follow its directions exactly!

44
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,44 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache Cargo dependencies
uses: Swatinem/rust-cache@v2
- name: Verify pinned toolchain
run: cargo --version
- name: Check formatting
run: cargo fmt --check
- name: Run Clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Jacobian health gate (Epic 0)
run: cargo test -p entropyk-components --test jacobian_health_sweep
- name: Add no_std check target
run: rustup target add thumbv7em-none-eabihf
- name: Check solver-core no_std build (Story 1.2)
run: cargo check -p entropyk-solver-core --no-default-features --target thumbv7em-none-eabihf
- name: Run workspace tests
run: cargo test --workspace