Skip to main content

MRS-Core: A deterministic modular reasoning engine.

Project description

Modular Reasoning System (MRS-Core)

A deterministic, operator-based reasoning engine for LLMs and autonomous agents.

MRS-Core provides a transparent, modular, reproducible reasoning substrate built from a small set of reusable operators:

  • Transform
  • Reflect
  • Evaluate
  • Rewrite
  • Summarize
  • Inspect
  • Filter

MRS makes reasoning traceable, auditable, and deterministic all without requiring chain-of-thought exposure or hidden model internals.


Why MRS-Core Exists

Every agent framework today suffers from the same structural failures:

  • No consistent reasoning sequence
  • No deterministic backbone
  • No visibility into intermediate states
  • No enforceable phases or operator logic

MRS-Core solves this by introducing:

  • Explicit operator-level reasoning
  • Strict phase transition model
  • Complete execution trace
  • Deterministic, reproducible outputs
  • Plug-and-play integration for ANY agent system

MRS is not an alignment system.
MRS is not a sandbox.

MRS is a reasoning substrate.


Features

Deterministic Reasoning Chains

  • Operators execute in strict order.
  • Output is repeatable.

Transparent Logs & History

MRS records:

  • final text
  • operator log
  • phase trace
  • structured history of every step

Simple, Extensible Operators

  • Each operator is a small Python class registered via the Operator Registry.

Drop-In Presets

simple, reasoning, full_chain ready for production use.


Install

pip install mrs-core

Quick Start

from mrs.engine import MRSCoreEngine
from mrs.presets import get_preset

engine = MRSCoreEngine()
ops = get_preset("reasoning")

result = engine.run_chain(ops, "MRS-Core is a modular deterministic reasoning pipeline.")

print(result["text"])
print(result["log"])
print(result["phase"])

Example Output

[REFLECT] [TRANSFORM]
MRS-CORE IS A MODULAR DETERMINISTIC REASONING PIPELINE.

[EVAL CHARS=95 WORDS=14]

PHASE: rewrite

Running a Manual Operator Chain

from mrs.engine import MRSCoreEngine

engine = MRSCoreEngine()

ops = [
    ("transform", {}),
    ("reflect", {}),
    ("evaluate", {}),
    ("rewrite", {}),
]

result = engine.run_chain(ops, "Explain symbolic reasoning.")

print(result["text"])
print(result["history"])

Using Presets

MRS-Core includes preset chains:

  • simple
  • reasoning
  • full_chain
from mrs.engine import MRSCoreEngine
from mrs.presets import get_preset

engine = MRSCoreEngine()

for name in ["simple", "reasoning", "full_chain"]:
    ops = get_preset(name)
    result = engine.run_chain(ops, "MRS-Core preset test")
    print(f"=== {name.upper()} ===")
    print(result["text"])

Operator Anatomy

Every operator:

  • receives the current ReasoningState
  • modifies state.text
  • appends to state.log
  • updates state.phase
  • records an entry in state.history

Example:

@register_operator("reflect")
class ReflectOperator(Operator):
    phase = ("transform", "reflect")

    def run(self, state):
        state.text = f"[REFLECT] {state.text}"
        state.log.append("Reflect applied")
        return state

Project Structure

mrs-core/
    engine.py
    registry.py
    state.py
    presets.py
    exceptions.py
    operators/
        base.py
        transform.py
        reflect.py
        evaluate.py
        rewrite.py
        summarize.py
        inspect.py
        filter.py
tests/
examples/

What MRS-Core Is Not

MRS-Core is NOT:

  • an alignment system
  • a safety guarantee
  • a sandbox
  • a replacement for secure execution layers

MRS-Core IS:

  • a deterministic reasoning layer
  • an operator execution engine
  • an audit-friendly cognition scaffold
  • a missing substrate for agent stability

Contributing

PRs welcome, especially new operators, presets, or diagnostics.


License

Apache 2.0 (see LICENSE file).

Copyright 2026
Ryan Sabouhi


Notice

This software contains original work developed as part of the
Modular Reasoning System (MRS-Core) by Ryan Sabouhi.
See the NOTICE file for attribution details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mrs_core-0.1.3.tar.gz (12.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mrs_core-0.1.3-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file mrs_core-0.1.3.tar.gz.

File metadata

  • Download URL: mrs_core-0.1.3.tar.gz
  • Upload date:
  • Size: 12.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for mrs_core-0.1.3.tar.gz
Algorithm Hash digest
SHA256 6f18647357695c9edac552dd722c38981bc941d17c83fe569474889ff68b75b5
MD5 f414e6eda2f79185c768e771efbc8b06
BLAKE2b-256 f1403c746da5e6c39e1a2c7c6347c815974d8e5df070ef461cb73091c9394526

See more details on using hashes here.

File details

Details for the file mrs_core-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: mrs_core-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for mrs_core-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ef1b09f1d5b3328eca138df1311d20e73c52c802079f2d3e471378b0723c2978
MD5 25a540eefca2296a4bc1794361dcb559
BLAKE2b-256 e209e632c87165e0c051fff67b8ee9746e110248f6e1874028010e8146ad1b74

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page