用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/archibate/archibate-skills --skill cpp-conventions命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Skills for accessing and searching docs in DeepWiki/GitHub’s public code repositories can help users understand open-source project source codes, and users can also ask questions directly about the code docs.
Interact with local Chrome browser session (only on explicit user approval after being asked to inspect, debug, or interact with a page open in Chrome)
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
基于 SOC 职业分类
正在显示 SKILL.md
| name | cpp-conventions |
| description | C++ coding conventions. Use when editing .cpp/.hpp files or asking about C++ style. |
Use clang-format for formatting and clang-tidy for linting. The .clang-format
and .clang-tidy files in the repository root are authoritative—run the tools
and trust the output.
These are not enforced by tooling:
const T& not T const&auto: Use almost-always-auto, make conversions explicit (e.g., auto x = int64_t{0}).hpp, implementation: .cpp<module>/fwd.hpp#pragma once—no manual include guardsMember order:
public, then protected, then privateRules:
explicitexplicit(false) when implicit conversion is intentionalnoexceptstruct for simple data aggregates where the public members are the APIclass for template parameters; typename only for dependent typesT, packs Ts, arguments x, packs xs*_t and *_v helpers for traitsFIXME: for bugs, TODO: for improvements (colon required)/// with Markdown—do not use @param, @returns, @pre, @post