一键导入
transpiler-hardening-execution
Guidelines for adding functions to the AST translation map for QuanuX-Annex duckdb transpiler
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guidelines for adding functions to the AST translation map for QuanuX-Annex duckdb transpiler
用 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.
Operating procedures and architecture for the QuanuX-Annex Data Ingestion Engine and NATS JetStream mesh.
| name | Transpiler Hardening & Execution |
| description | Guidelines for adding functions to the AST translation map for QuanuX-Annex duckdb transpiler |
The transpiler operates logically off the DuckDB JSON EXPLAIN IR plan. To ensure deterministic bounding, everything is fail-closed by default.
To add new constructs (like novel join nodes, aggregates, or table whitelist allowances):
EXPLAIN (FORMAT JSON) <query> to see exactly how DuckDB interprets the new target constraint and prints it in the logical planner tree.QuanuX-Annex/transpiler/gcp_transpiler.py.
allowed_nodes set if a new IR token appears (like WINDOW or ASOF_JOIN)._traverse_relational_node rather than string-matching query. The string matching inside _enforce_read_only or _enforce_join_rules acts merely as a fast-fail defense line before full parse compilation.LEFT JOIN, update the nested whitelist = ["symbol_mapping", "venue_dim", ...] in _traverse_relational_node.test_gcp_transpiler.py representing both the exact allowance syntax parity as well as explicit evasive/banned attempts.