You know how a good cookbook doesn't just list ingredients and steps — it tells you why you sear the meat before braising, why you rest the dough overnight? That 'why' layer is what separates a recipe you can follow from a recipe you can adapt when something goes wrong. MUSE does the same thing for scientific papers: it doesn't just extract what problem was solved and how, but captures the rationale — the author's reasoning for choosing that particular method over alternatives. The committed claim: MUSE is the first full-text, multi-domain knowledge base of Problem-Solution-Rationale (P-S-R) triplets extracted from scientific literature, scaled to 37K source-grounded triplets from 579 expert-annotated paragraphs. This isn't a new model architecture — it's a new dataset and extraction pipeline that structures the implicit reasoning layer of scientific papers into something machines can learn from. The annotation schema is richer than typical IE work. Beyond just identifying problem, solution, and rationale spans, MUSE captures 'solves' and 'rationaleof' relational links plus conceptual coreference — meaning it tracks when the same concept appears under different surface forms across a paragraph. The 579 expert-annotated paragraphs serve as the gold standard; a modular extraction pipeline then scales this to the full 37K triplet knowledge base. The pipeline is modular by design, meaning individual components (span detection, link prediction, coreference) can be swapped or improved independently. Where does this sit on the ladder? The closest prior work is in scientific information extraction — systems like SciREX, SciCo, and various relation extraction datasets. But those typically extract entity-level facts (method X was used on dataset Y) without the rationale layer. MUSE's claim to novelty is the three-part triplet structure and especially the rationale component, which most IE systems ignore entirely. The abstract doesn't provide head-to-head F1 numbers against named baselines for the extraction pipeline, which is a gap. The most interesting result is the preliminary LLM experiment. When you train a language model with rationale supervision — essentially teaching it not just what solution to propose but why — performance improves on complex, multi-constraint problems but degrades on simpler ones. This is a genuinely useful finding. It suggests rationale supervision acts like a regularizer that adds overhead: helpful when the problem space is complex enough to need structured reasoning, harmful when the problem is simple enough that the overhead just adds noise. If you've tuned ML models, you recognize this pattern — it's the bias-variance tradeoff showing up in a new domain. The integrity picture is mixed. Expert annotation of 579 paragraphs is solid craft for a resource paper, but the abstract doesn't specify inter-annotator agreement, the number of annotators, or which domains the full-text papers come from beyond 'multi-domain.' The LLM experiment is described as 'preliminary,' which is honest but means we're looking at a proof-of-concept, not a definitive result. No mention of code release or benchmark registration. The successor experiment writes itself: take the rationale-supervised LLM and test it on a difficulty-stratified benchmark where you can precisely control problem complexity. The authors showed that rationale helps on hard problems and hurts on easy ones — the obvious next step is finding the crossover point and characterizing what makes a problem 'complex enough' to benefit. My read: this is being saved for the next paper. The current work is already doing double duty as a resource paper (the KB) and a modeling paper (the LLM experiment), and a full investigation of the complexity-rationale interaction would be a standalone contribution.