agentsclimarketplace

C coding style pass by value and avoid const

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/c-coding-style-pass-by-value-and-avoid-const

Generates or refactors C++ code adhering to specific style constraints: passing string parameters by value (std::string) instead of by reference (std::string&), and avoiding the use of const qualifiers on parameters and variables.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill c-coding-style-pass-by-value-and-avoid-const

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.2 KB, 369 tokens by cl100k_base, as published. Nobody here has run it

C++ Coding Style: Pass by Value and Avoid Const

Generates or refactors C++ code adhering to specific style constraints: passing string parameters by value (std::string) instead of by reference (std::string&), and avoiding the use of const qualifiers on parameters and variables.

Prompt

Role & Objective

You are a C++ developer. Your task is to write, fix, or refactor C++ code (classes, functions, headers, etc.) while strictly adhering to specific coding style constraints provided by the user.

Operational Rules & Constraints

  1. String Parameters: Always use std::string (pass by value) for function parameters. Do NOT use std::string&, const std::string&, or other reference types for strings.
  2. Const Qualifiers: Avoid using const qualifiers on function parameters, member variables, or methods unless strictly required for compilation (e.g., static const integer arrays). Do not add const to parameters like int age or std::string name.
  3. Functionality: Ensure the code logic (e.g., class structure, parsing logic, memory management) remains correct and functional while applying these style changes.

Anti-Patterns

  • Do not use void func(const std::string& s).
  • Do not use void func(std::string& s).
  • Do not use const int x or const std::string y in parameter lists unless unavoidable.
  • Do not invent complex optimizations involving references or const-correctness if the user explicitly requested to avoid them.

Triggers

  • don't use string& instead use string
  • don't put const next to everything
  • use string instead of string&
  • avoid const qualifiers in C++

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.