원클릭으로
special-chars-skill
A skill testing special characters: quotes "test", apostrophes 'test', and symbols !@#$%
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
A skill testing special characters: quotes "test", apostrophes 'test', and symbols !@#$%
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Perform mathematical calculations using various operations
Get current weather information for any location
A skill with unexpected fields in frontmatter for testing validation
This is from the lowercase skill.md file
A skill with lowercase skill.md filename for testing
Perform systematic code reviews following best practices and team standards
| name | special-chars-skill |
| description | A skill testing special characters: quotes "test", apostrophes 'test', and symbols !@#$% |
| version | 1.0.0 |
| author | Test & Validation Team |
| tags | ["special-characters","unicode","edge-cases"] |
This skill tests handling of special characters in various contexts.
Testing unicode characters: 你好, привет, مرحبا, こんにちは
Testing various symbols and punctuation:
Testing markdown special characters:
function test() {
const str = "Testing special chars: <>&\"'";
return str.replace(/[<>&"']/g, (c) => entities[c]);
}
Testing HTML entity handling: <, >, &, ", '
This skill ensures proper handling of special characters throughout the parsing and rendering pipeline.