一键导入
onixs-proprietary-injection
Protocol for securely integrating the OnixS High-Performance FIX Engine into QuanuX via local injection.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Protocol for securely integrating the OnixS High-Performance FIX Engine into QuanuX via local injection.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Reference for OS and Kernel parameter optimization on the QuanuX Edge.
Reference for using the QuanuX Control CLI (quanuxctl).
Official Figma Developer MCP integration for QuanuX. Allows agents to inspect designs, extract variables, and generate code from Figma files.
The authoritative "School of Architecture" for building QuanuX Extensions (Sidecars). Enforces the QXP protocol, Go runtime preference, and privacy-first security model.
Instructions for operating and configuring the SignalR Bridge for TopstepX.
Guidelines for adding functions to the AST translation map for QuanuX-Annex duckdb transpiler
| name | onixs-proprietary-injection |
| description | Protocol for securely integrating the OnixS High-Performance FIX Engine into QuanuX via local injection. |
| version | 1.0.0 |
This document defines the architecture used to integrate OnixS (a commercial, proprietary library) into QuanuX (an open-source platform) without violating IP rights or distributing restricted code.
QuanuX does not ship with OnixS. Instead, it ships with a Shim: a hollow adapter designed to fit the OnixS shape perfectly.
quanuxctl integrate onixs <path> copies the headers/libs to vendor/.vendor/include/OnixS/FixEngine.h and activates the compilation of the Shim.extensions/cpp/onixs/
├── extension.yaml # Manifest
├── .gitignore # 🔒 IGNORES vendor/
├── vendor/ # 🚫 PROPRIETARY (Injected at Runtime)
│ ├── include/
│ └── lib/
└── shim/ # ✅ OPEN SOURCE
└── OnixSAdapter.hpp # Compiles against vendor/
# 1. Download SDK to Desktop
# 2. Integrate
quanuxctl integrate onixs ~/Desktop/OnixS.FixEngineCpp-Ubuntu2204...
# 3. Build Extension
quanuxctl ext build onixs
.gitignore at the extension root explicitly blocks vendor/.