The OSIE-OCL (Public Coordination Layer) is the open-source, public-facing module derived from the OSIE Structural Architecture.
It provides a simplified interface for evaluating emotional-volatility axes and generating safe, deterministic
public coordination recommendations.
This layer does not expose OSIE’s internal physics, proprietary indices, or systemic laws.
It is intentionally restricted to a lightweight, public-safe analytical surface.
- Computes coherence and mismatch between a current and baseline state
- Classifies volatility phases:
Stable,Tense,Critical - Produces recommended actions:
Wait,Observe,Post,Thread,Meme - Fully open-source TypeScript module
- Deterministic execution, no training data, no proprietary physics
- Safe for public demos, research, integrations, and agent experiments
Clone the repository:
git clone https://github.com/MyOmniInstitute/OSIE-OCL.git
cd OSIE-OCL
npm installImport into a TypeScript project:
import { OCL } from "./src/ocl";src/
ocl.ts → Core OCL computation module
docs/
architecture.md → Description of the public-facing design
examples.md → Example OCL evaluations
README.md → You are here
import { OCL } from "./src/ocl";
const current = { rage: 40, euphoria: 22, dread: 30, copium: 50, chaos: 32 };
const baseline = { rage: 15, euphoria: 14, dread: 12, copium: 18, chaos: 10 };
const result = OCL(current, baseline);
console.log(result);Example Output
{
"coherence": 58,
"mismatch": 29,
"volatility": "Tense",
"action": "Post",
"timestamp": 1733870100000
}See: docs/architecture.md
See: docs/examples.md
These examples demonstrate the behavior of the public-facing layer but do not reveal OSIE’s internal mechanics.
MIT License
© 2025 Chris Meadows / Omni Institute
