with one click
build
构建项目(默认构建 Editor 目标)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
构建项目(默认构建 Editor 目标)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
构建项目(默认构建 Editor 目标)
交互式创建新的 ECS 组件,自动生成反射注册代码
构建并运行 Editor
在子任务/phase 完成后,把"关键决策、踩坑、技术栈舍弃与选择"沉淀到对应位置(任务 SPEC.md / 全局 MEMORY.md / docs/decisions ADR)。Use proactively when the user invokes /checkpoint, says "整理一下"、"沉淀一下"、"phase 收尾"、"做个 checkpoint"、"任务先告一段落"。
Comprehensive citation management for academic research. Search Google Scholar and PubMed for papers, extract accurate metadata, validate citations, and generate properly formatted BibTeX entries. This skill should be used when you need to find papers, verify citation information, convert DOIs to BibTeX, or ensure reference accuracy in scientific writing.
Search 78 public scientific, biomedical, materials science, and economic databases via REST APIs. Covers physics/astronomy (NASA, NIST, SDSS, SIMBAD), earth/environment (USGS, NOAA, EPA), chemistry/drugs (PubChem, ChEMBL, DrugBank, FDA, KEGG, ZINC, BindingDB), materials (Materials Project, COD), biology/genomics (Reactome, UniProt, STRING, Ensembl, NCBI Gene, GEO, GTEx, PDB, AlphaFold, InterPro, BioGRID, Gene Ontology, dbSNP, gnomAD, ENCODE, Human Protein Atlas, Human Cell Atlas), disease/clinical (COSMIC, Open Targets, ClinicalTrials.gov, OMIM, ClinVar, GDC/TCGA, cBioPortal, DisGeNET, GWAS Catalog), regulatory (FDA, USPTO, SEC EDGAR), economics/finance (FRED, World Bank, US Treasury), demographics (US Census, Eurostat, WHO). Use when looking up compounds, genes, proteins, pathways, variants, clinical trials, patents, economic indicators, or any public database API query.
| name | build |
| description | 构建项目(默认构建 Editor 目标) |
| metadata | {"short-description":"构建 CMake 目标"} |
构建本项目的 CMake 目标。Windows 为主流程,Linux/VM 为次流程。
可选目标:Editor、Engine、Sandbox。省略 --target 则构建全部。
cmake 不在全局 PATH 中,必须使用 VS Build Tools 内置的完整路径。 下方路径是唯一正确路径,直接复制使用。
禁止使用
find/ls/where/which等命令搜索 cmake 路径。 禁止使用CMAKE="..." && "$CMAKE"变量模式(MINGW Bash 会把变量展开为空字符串,导致command not found),必须直接写完整路径。
# 无 CUDA(default preset)
"C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cmake.exe" --preset default
# 有 CUDA(vs2022-cuda preset,需安装 NVIDIA CUDA Toolkit)
"C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cmake.exe" --preset vs2022-cuda
--config)"C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cmake.exe" --build build --config RelWithDebInfo --target Editor
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build build --target Editor
git submodule update --init --recursive
build/),切换 preset 后需重新配置,但构建/运行路径不变。RelWithDebInfo/ 子目录;Linux/Ninja 不包含。run)。