Token导航 LogoToken导航TokenDH.com
AI 工具只读github未标认证来源可访问clear审计通过

cpp-pro专业版

Agent Skill

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

总安装

2,899

周安装

122

GitHub Stars

76

下载量

1,015
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill cpp-pro

简介

cpp-pro 提供专业化 C++20 编程能力,专注现代特性如模块、范围和协程。

  • 适用于高性能应用、嵌入式系统和游戏引擎,强调内存安全和资源效率。
  • 支持 SIMD 向量化、无锁编程和 ONNX Runtime 部署,满足生产级需求。
  • 建议用于关键组件开发,但需充分测试以确保跨平台兼容性。
  • cpp-pro 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

C++ Professional

Purpose

Provides expert C++20 programming capabilities specializing in modern C++ features (concepts, modules, ranges, coroutines), performance optimization, and system-level programming. Excels at building high-performance applications, embedded systems, game engines, and low-level system software with memory safety and optimal resource utilization.

When to Use

  • Building high-performance applications requiring C++ speed (game engines, simulations)
  • Implementing system-level software (device drivers, operating systems, embedded systems)
  • Optimizing performance-critical code (SIMD, cache optimization, lock-free programming)
  • Migrating legacy C++ codebases to modern C++20 standards
  • Building cross-platform C++ libraries and SDKs
  • Implementing template metaprogramming and compile-time optimizations
  • Working with modern C++20 features (concepts, modules, ranges, coroutines)

Quick Start

Invoke this skill when:

  • Building high-performance C++ applications (games, simulations, trading)
  • System-level programming (device drivers, embedded systems, OS)
  • Performance optimization (SIMD, cache, lock-free)
  • Modern C++20 features (concepts, modules, ranges, coroutines)
  • Template metaprogramming and compile-time computation
  • Cross-platform library development

Do NOT invoke when:

  • Web development → Use frontend-developer or backend-developer
  • Scripting tasks → Use python-pro or javascript-pro
  • Simple utilities without performance needs → Use appropriate language
  • Mobile development → Use swift-expert or kotlin-specialist

Core Capabilities

C++20 Modern Features

  • Concepts: Type constraints and template requirements
  • Modules: Replacing header files with importable modules
  • Ranges: Lazy evaluation algorithms and views
  • Coroutines: Asynchronous programming with co_await
  • Spaceship Operator: Three-way comparison <=>
  • Designated Initializers: Struct member initialization by name
  • std::format: Type-safe string formatting
  • std::span: Safe array views without ownership
  • std::jthread: Thread with automatic join capability

Performance Optimization

  • Template Metaprogramming: Compile-time computation
  • SIMD Programming: Vector instructions for parallel processing
  • Memory Management: Smart pointers, allocators, memory pools
  • Cache-Aware Algorithms: Data-oriented design patterns
  • Lock-Free Programming: Atomic operations and memory ordering
  • Compiler Optimizations: Profile-guided optimization, link-time optimization

System Programming

  • Low-Level I/O: File descriptors, sockets, epoll/kqueue
  • Memory Mapping: Shared memory, memory-mapped files
  • Process Management: Fork, exec, signal handling
  • System Calls: POSIX/Linux system interface
  • Embedded Systems: Bare-metal programming, real-time constraints

Decision Framework

C++ Feature Selection

C++20 Feature Decision
├─ Type constraints needed
│   └─ Use concepts instead of SFINAE
│       • Clearer error messages
│       • More readable templates
│
├─ Header file management
│   └─ Use modules for new projects
│       • Faster compilation
│       • Better encapsulation
│
├─ Data transformations
│   └─ Use ranges for lazy evaluation
│       • Composable algorithms
│       • Memory efficient
│
├─ Async operations
│   └─ Use coroutines for I/O-bound work
│       • Efficient state machines
│       • Readable async code
│
└─ Error handling
    ├─ Recoverable errors → std::expected
    ├─ Exceptional cases → exceptions
    └─ Low-level code → return codes

Performance Optimization Matrix

BottleneckSolutionComplexity
CPU-bound computationSIMD, parallelismHigh
Memory allocationMemory pools, allocatorsMedium
Cache missesData-oriented designHigh
Lock contentionLock-free structuresVery High
Compilation timeModules, precompiled headersLow

Best Practices

Modern C++ Development

  • Prefer Composition to Inheritance: Use value semantics and composition
  • const Correctness: Mark member functions const when possible
  • noexcept When Appropriate: Mark functions that won't throw
  • Explicit is Better: Use explicit constructors and conversion operators
  • RAII Everywhere: Wrap all resources in RAII objects

Performance Optimization

  • Profile Before Optimizing: Use perf, VTune, or Tracy
  • Rule of Zero: Define destructors, copy, and move only if needed
  • Move Semantics: Return by value, rely on move semantics
  • Inline Judiciously: Let compiler decide; focus on cache-friendly data
  • Measure Cache Efficiency: Cache misses are often more expensive

Template Metaprogramming

  • Concepts Over SFINAE: Use concepts for clearer template constraints
  • constexpr When Possible: Move computation to compile time
  • Type Traits: Use std::type_traits for compile-time introspection
  • Variadic Templates: Use parameter packs for flexible functions

Concurrency and Parallelism

  • Avoid Premature Locking: Consider lock-free for high-contention
  • Understand Memory Ordering: Use std::memory_order explicitly
  • Future/Promise Patterns: Use std::future for async results
  • Coroutines for I/O: Use C++20 coroutines for async I/O
  • Thread Pools: Prefer pools over spawning threads

System-Level Programming

  • Zero-Cost Abstractions: High-level code that compiles efficiently
  • Handle Errors Explicitly: Use std::expected without exceptions
  • Resource Management: Apply RAII consistently
  • Platform Abstraction: Isolate platform-specific code
  • Testing Strategy: Use unit tests, fuzzing, property-based testing

Anti-Patterns

Memory Management

  • Raw new/delete: Use smart pointers instead
  • Manual Resource Management: Apply RAII
  • Dangling Pointers: Use ownership semantics

Performance

  • Premature Optimization: Profile first
  • Virtual Call Overhead: Use CRTP when performance critical
  • Unnecessary Copies: Use move semantics and references

Code Organization

  • Header-Only Everything: Use modules or proper compilation units
  • Macro Abuse: Use constexpr, templates, inline functions
  • Global State: Use dependency injection

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.84%
按下载量换算283

OpenCode

22.94%
按下载量换算233

Codex

15.73%
按下载量换算160

Cursor

11.98%
按下载量换算122

Gemini CLI

8.12%
按下载量换算82

windsurf

3.57%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills