一键导入
nested-namespaces
Denigma C++ namespace style. Use when adding, editing, reviewing, or refactoring C++ namespace declarations in this repository.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Denigma C++ namespace style. Use when adding, editing, reviewing, or refactoring C++ namespace declarations in this repository.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Denigma classifier design conventions. Use when creating, editing, reviewing, or refactoring classifiers in src/classify or shared classification helpers used by exporters.
Denigma Windows compatibility convention for standard min/max calls. Use when adding, reviewing, or modifying any C++ code that calls std::min, std::max, std::clamp, numeric_limits<T>::min/max, or related standard-library min/max functions or members.
Denigma repository test harness conventions. Use when building Denigma, running Denigma tests, interpreting Denigma test failures, or choosing the correct working directory for the test executable.
Denigma exporter enum mapping conventions. Use when adding, moving, reviewing, or modifying enum conversions for exporters such as MusicXML, MNX, MSS, SVG, or other format-specific code.
Denigma std::optional usage conventions. Use when adding, reviewing, or modifying std::optional fields or return values, especially for enum or bool state.
| name | nested-namespaces |
| description | Denigma C++ namespace style. Use when adding, editing, reviewing, or refactoring C++ namespace declarations in this repository. |
Use nested namespace blocks, never C++17 concatenated namespace declarations.
namespace denigma {
namespace classify {
// Declarations and definitions.
} // namespace classify
} // namespace denigma
Do not write namespace denigma::classify {.