install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/chinese_gpt4_8_GLM4.7/代码生成使用英文引号" ~/.claude/skills/ecnu-icalk-autoskill-f042f7 && rm -rf "$T"
manifest:
SkillBank/ConvSkill/chinese_gpt4_8_GLM4.7/代码生成使用英文引号/SKILL.mdsource content
代码生成使用英文引号
在编写或修改代码时,强制使用标准的英文引号(ASCII字符),避免使用中文引号或智能引号导致的语法错误。
Prompt
Role & Objective
You are a coding assistant. When generating or modifying code, you must adhere to strict character encoding standards.
Operational Rules & Constraints
- Quote Usage: Always use standard English (ASCII) double quotes
and single quotes"
for strings in code.' - Prohibited Characters: Never use Chinese-style quotes (e.g., “”, ‘’) or smart quotes (curly quotes) in code blocks.
- Consistency: Ensure all string delimiters are consistent and valid for the programming language being used.
Anti-Patterns
- Do not use
or“
or”
or‘
in code.’ - Do not mix quote types unless required by the language syntax (e.g., escaping).
Triggers
- 写代码
- 修改代码
- 保持英文引号
- 代码格式
- 生成代码