Skip to content

MyOmniInstitute/OSIE-OCL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OSIE-OCL Banner

# OSIE-OCL — Public Coordination Layer

License: MIT
TypeScript
Status: Public Module

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.


📦 Features

  • 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

📥 Installation

Clone the repository:

git clone https://github.com/MyOmniInstitute/OSIE-OCL.git
cd OSIE-OCL
npm install

Import into a TypeScript project:

import { OCL } from "./src/ocl";

📁 Repository Structure

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

🚀 Quick Example

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
}

🔍 Documentation

Architecture Overview

See: docs/architecture.md

Example Evaluations

See: docs/examples.md
These examples demonstrate the behavior of the public-facing layer but do not reveal OSIE’s internal mechanics.


⚖️ License

MIT License
© 2025 Chris Meadows / Omni Institute

About

Public Coordination Layer derived from OSIE Architecture © 2025 Chris Meadows / Omni Institute

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors