File size: 1,076 Bytes
dfd38de | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | /**
* index.mjs — BOB Reasoning Engine
* Entry point and public API.
*
* The reasoning engine sits between the knowledge corpus and the SSM injection.
* It does not call Ollama directly — it prepares the reasoning context
* that METATRON injects into the hidden state before MagmaCore fires.
*
* Usage:
* import { reason, illuminate, ALL_CHUNKS, CORPUS_SEAL } from '@snapkitty/bob-reasoning-engine'
*/
export { illuminate } from './illuminate.mjs'
export { reason } from './reason.mjs'
export {
ALL_CHUNKS,
CORPUS_SEAL,
AOT,
LADDER,
SACRED_THREAD,
TRAP_THEOREMS,
RAT_DOCTRINE,
REASONING_RULES,
METATRON_TOPOLOGY,
} from './knowledge-chunks.mjs'
export { sovereign_step } from './sovereign-bridge.mjs'
export { sovereign_exec, SHELL } from './backtick-shell.mjs'
// Version seal — changes when corpus changes
export const ENGINE_VERSION = '0.2.0'
export const ENGINE_NAME = 'BOB-REASONING-ENGINE'
export const AUTHOR = 'Ahmad Ali Parr · SnapKitty Collective · 2026'
|