Special Chars Skill

A skill testing special characters: quotes "test", apostrophes 'test', and symbols !@#$%

valence-works 6002cf0 1.1 KB Updated

File contents

Special Characters Skill

This skill tests handling of special characters in various contexts.

Unicode Support

Testing unicode characters: 你好, привет, مرحبا, こんにちは

Special Symbols

Testing various symbols and punctuation:

  • Quotes: "double" and 'single'
  • Mathematical: ∑, ∫, ∂, ∞, ≈, ≠
  • Currency: $, €, £, ¥, ₹
  • Arrows: →, ←, ↑, ↓, ⇒, ⇐
  • Symbols: ©, ®, ™, ±, ×, ÷

Markdown Edge Cases

Testing markdown special characters:

  • Asterisks: * and **
  • Underscores: _ and __
  • Backticks: ` and ```
  • Brackets: [link] and (url)
  • Hash: # heading

Code Blocks

function test() {
    const str = "Testing special chars: <>&\"'";
    return str.replace(/[<>&"']/g, (c) => entities[c]);
}

HTML Entities

Testing HTML entity handling: <, >, &, ", '

This skill ensures proper handling of special characters throughout the parsing and rendering pipeline.

valence-works/agentskillsdotnet/tree/main/fixtures/skills/special-chars-skill commit 6002cf05eb

Frequently asked questions

npx skillmds add valence-works/special-chars-skill