Token导航 LogoToken导航TokenDH.com
前端设计external-servicegithub未标认证来源可访问许可证需确认审计通过

cpp-style-refcpp 样式参考

Agent Skill

cpp-style-ref 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

225

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cpp-style-ref(cpp 样式参考)
来源仓库:https://github.com/yizhinailong/skills
仓库路径:skills/cpp-style-ref
安装命令:
npx skills add https://github.com/yizhinailong/skills --skill cpp-style-ref
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/yizhinailong/skills --skill cpp-style-ref

简介

cpp-style-ref 提供 C++ 编码风格参考,支持 xmake 和 CMake+vcpkg 构建系统适配。

  • 适用于命名规范、缩进和文件组织,确保跨项目一致性。
  • 按类型区分大小写风格(如 PascalCase 用于类名,snake_case 用于变量)。
  • 建议与团队约定风格指南,并通过 linter 强制执行,减少代码评审负担。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

cpp-style-ref

C++ coding style reference. Select the appropriate reference directory based on the project build system:

  • xmakereferences-xmake/ (C++20 modules, .cppm / .cpp)
  • CMake + vcpkgreferences-cmake-vcpkg/ (traditional headers, .hpp / .cpp)

Quick Reference

Naming

CategoryStyleExamples
Types/ClassesPascalCaseStyleRef, HttpServer
Objects/Memberssnake_casefile_name, config_text
Public functionsPascalCaseLoadConfigFile(), Parse()
Private functionscamelCaseloadConfigFile(), parse()
Free functionssnake_caseload_config_file(), parse_()
Private membersm_ prefixm_file_name, m_config_text
ConstantsUPPER_SNAKEMAX_SIZE, DEFAULT_TIMEOUT
Globalsg_ prefixg_style_ref
Staticss_ prefixs_style_ref
Namespacesall lowercasemcpplibs, mylib
Nested namespacesall lowercasemcpp::style_ref, mcpp::utils
EnumsPascalCaseenum class StyleRef {...};

Build Systems

  • xmake — native C++20 module support, uses .cppm / .cpp (see references-xmake/)
  • CMake + vcpkg — traditional header organization, uses .hpp / .cpp (see references-cmake-vcpkg/)

Module Basics

  • Use import std instead of #include <print> and #include <xxx>
  • Use .cppm for module interfaces; use .cpp for separated implementations
  • export module module_name; — module declaration
  • export import:partition; — export partition
  • import:partition; — internal partition (not exported)

Module Structure

// .cppm
export module a;

export import a.b;
export import :a2;   // exportable partition

import std;
import :a1;          // internal partition

Module Naming

  • Modules: topdir.subdir.filename (e.g., a.b, a.c)
  • Partitions: module_name:partition (e.g., a:a1, a.b:b1)
  • Use directory paths to distinguish identical names: a/c.cppma.c, b/c.cppmb.c

Class Layout

class StyleRef {
private:
    std::string m_file_name;  // data members with m_ prefix

public:  // Big Five
    StyleRef() = default;
    StyleRef(const StyleRef&) = default;
    // ...

public:  // public interface
    void LoadConfigFile(std::string file_name);  // PascalCase function, snake_case parameter

private:
    void loadConfigFile(std::string config);  // camelCase for private functions
};

Practice Rules

  • Initialization: use {}int n {42}, std::vector<int> v {1, 2, 3}
  • Strings: use std::string_view for read-only parameters
  • Errors: use std::optional / std::expected instead of int error codes
  • Memory: use std::unique_ptr, std::shared_ptr; avoid raw new/delete
  • RAII: bind resources to object lifetimes
  • auto: use for iterators, lambdas, complex types; keep explicit types when intent clarity matters
  • Macros: prefer constexpr, inline, concept over macros

Interface and Implementation

Both styles are supported.

Style A: Combined — interface and implementation in a single .cppm:

// mylib.cppm
export module mylib;

export auto add(int a, int b) -> int {
    return a + b;
}

Style B: Separated — interface in .cppm, implementation in .cpp (hides implementation at compile time):

// error.cppm (interface)
export module error;

export struct Error {
    void test();
};
// error.cpp (implementation)
module error;

import std;

auto Error::test() -> void {
    std::println("Hello");
}

Use Style A for simple modules; use Style B when hiding implementation or reducing compile dependencies.

Applicable Scenarios

  • Writing new C++ code (modules .cppm/.cpp or headers .hpp/.cpp)
  • Reviewing or refactoring C++ code in a project
  • When the user asks about "C++ style", "module C++ style", or "modern C++ conventions"

Limitations

For existing projects, this skill does not apply unless the user explicitly requests format changes. Do not proactively apply this style to existing code or suggest renames/refactoring.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.58%
按下载量换算27

Claude

26.77%
按下载量换算20

Cursor

17.62%
按下载量换算13

Gemini CLI

9.85%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills