Skip to content

SimplixioMindSystem/Thinking-Engine

Repository files navigation

SimpliXio — Your Thinking Engine

Decide what matters. Most tools add information. SimpliXio removes noise.

SimpliXio Context Layer System

Note

SimpliXio turns scattered inputs (RSS feeds, notes, digests) into grounded daily actions — answering "What should I focus on today?" using your personal goals, projects, and reading history as context. Works fully offline; LLM is optional.


Install

Requirements: Python 3.11+, macOS 14+ / iOS 17+ (native apps), Xcode 15+ (Swift)

git clone https://github.com/SimplixioMindSystem/Thinking-Engine.git
cd Thinking-Engine
make install

Or manually:

python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt

Usage

.venv/bin/python -m cortex_core pipeline
.venv/bin/python -m cortex_core serve

Native app (iOS + macOS + watchOS):

brew install xcodegen
./generate_xcode_project.sh
open CortexOSApp/CortexOS.xcodeproj

Leave server URL empty in Settings to run fully offline.

API

Server runs on port 8420.

  • GET /sync/today: Canonical SimpliXio Today output (3 priorities + why + action + ignored)
  • GET /sync/snapshot: Single-call snapshot for offline-first client hydration
  • POST /integrations/pull: Pull context from RSS / GitHub / Notion
  • POST /context/signals/capture: Capture one raw signal into deterministic ranking
  • GET /context/signals/queues: Ranked queues (what_matters_now, decision queue, action-ready queue)

System architecture and scoring model:

TestFlight

cd CortexOSApp
fastlane ios testflight_release
fastlane mac testflight_release
fastlane watch_testflight
fastlane all_testflight

Growth Automation

.venv/bin/python scripts/cortex_growth_loop.py
cd cortexos_automation_scripts
python3 scripts/run_weekly_pipeline.py --strict-quality
python3 scripts/run_acquisition_pipeline.py --mode daily --strict-quality
python3 scripts/run_acquisition_pipeline.py --mode weekly --strict-quality

What these automation pipelines do:

  • Weekly marketing pipeline: builds Today/Weekly Review/Decision Replay/newsletter artifacts from real product output, drafts posts, runs quality gate, and only queues publish when safe flags are enabled.
  • Daily acquisition pipeline: collects public lead signals, scores fit, drafts outreach (approval-required), runs compliance checks, and writes CRM logs/summaries.

Detailed runbook:

Tests

make test
make test-python
make test-swift