Decide what matters. Most tools add information. SimpliXio removes noise.
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.
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 installOr manually:
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt.venv/bin/python -m cortex_core pipeline
.venv/bin/python -m cortex_core serveNative app (iOS + macOS + watchOS):
brew install xcodegen
./generate_xcode_project.sh
open CortexOSApp/CortexOS.xcodeprojLeave server URL empty in Settings to run fully offline.
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 hydrationPOST /integrations/pull: Pull context from RSS / GitHub / NotionPOST /context/signals/capture: Capture one raw signal into deterministic rankingGET /context/signals/queues: Ranked queues (what_matters_now, decision queue, action-ready queue)
System architecture and scoring model:
cd CortexOSApp
fastlane ios testflight_release
fastlane mac testflight_release
fastlane watch_testflight
fastlane all_testflight.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-qualityWhat 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:
make test
make test-python
make test-swift