SimpliXio turns scattered thoughts, project noise, and open loops into 3 priorities and one next action.
Note
Built for founders and builders with too many inputs and not enough clarity. SimpliXio answers one daily question: "What matters now, and what should I do next?"
- You capture messy thoughts quickly.
- SimpliXio filters noise into 3 priorities.
- Each priority includes why it matters.
- You get one clear next action.
SimpliXio is not a note backlog, task manager, CRM, ATS, or chatbot. It is the daily decision layer that reduces scattered inputs into what matters now.
capture -> enrich -> rank -> surface -> act -> review -> learn
The visible product stays simple:
- What matters now
- 3 priorities
- Why they matter
- One next action
- Feedback that improves future ranking
- Capture, priority ranking, Weekly Review, Decision Replay, newsletter drafting, semantic search, and embeddings run on-device in the Apple apps.
- Private cross-device state is compressed, encrypted with AES-GCM on-device, and then synced through the user's iCloud account. Its key is delivered only through iCloud Keychain. The Apple apps do not ship the Railway/API client and do not send readable captures to a SimpliXio-operated or third-party app server.
- Public content runs through on-device redaction and quality checks.
- Private outreach stays
needs_approvalby default. - Human judgement stays in control.
- Discord, newsletter, and acquisition outputs are draft-first unless explicitly approved.
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
cp CortexOSApp/local.yml.example CortexOSApp/local.yml
# Edit CortexOSApp/local.yml and set your DEVELOPMENT_TEAM (Apple Developer Membership page)
make generate
open CortexOSApp/CortexOS.xcodeprojThe iOS and macOS apps include a persistent, on-device semantic index for hybrid semantic and lexical search. It uses Apple Natural Language, Accelerate, and SQLite without bundling Python or FAISS. Core capture, prioritisation, review, newsletter drafting, and private iCloud sync do not require the Python service or Railway. See the on-device semantic-search architecture.
The Python API is separate developer and automation tooling. It is not required or included in the iOS, macOS, or watchOS app binaries.
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:
Public-safe developer demo:
python3 examples/simplixio_signal_demo.py --dry-runThis shows how an external tool can send safe project signals into SimpliXio and receive the same core output: 3 priorities, why they matter, and one next action.
SimpliXio is not being turned into a developer platform. The public examples exist to make the product loop inspectable for builders while keeping private product logic and private user data protected.
- OpenClaw skill README: GitHub-ready positioning, examples, use cases, and author section.
- Public-safe examples: API demo for capture -> 3 priorities -> why -> action.
- Developer credibility plan: GitHub proof layer, real metrics policy, and launch discipline.
Decision Examples are public-safe pages that make SimpliXio searchable and easier to understand. Each page shows a frequent decision pain as a concrete transformation:
messy input -> signals detected -> ignored noise -> 3 priorities -> why -> action
Validate or rebuild them with:
python3 cortexos_automation_scripts/scripts/build_decision_examples.py --check
python3 cortexos_automation_scripts/scripts/build_decision_examples.pyThe SimpliXio Desire Loop turns product value into safe public proof:
capture messy input -> 3 priorities -> why -> action -> public-safe proof
Rebuild it with:
python3 cortexos_automation_scripts/scripts/build_public_proof_archive.pycd CortexOSApp/fastlane
cp .env.example .env
# Edit .env: set ASC_KEY_PATH, ASC_ISSUER_ID, ASC_KEY_ID, TEAM_ID
cd ..
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:
Positioning + trust playbooks:
- docs/messaging-stack.md
- docs/desire-loop.md
- docs/developer-credibility-layer.md
- docs/integrated-product-system-2026-04-30.md
- docs/values-alignment-plan-2026-04-29.md
- docs/reorg-plan-2026-04-29.md
make test
make test-python
make test-swift