simple-formatter
根据指定的样式指南设置文本格式。一个干净的示例技能,没有安全问题。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~tjade273-simple-reduxcURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~tjade273-simple-redux/file -o tjade273-simple-redux.md# Simple Text Formatter This skill formats text according to style guidelines. ## Features - Capitalize sentences - Fix spacing - Apply punctuation rules ## Usage When the user provides text to format, apply the following rules: 1. Capitalize first letter of sentences 2. Ensure single space after periods 3. Remove trailing whitespace In most cases, you should use the python tool in `scripts/formatter.py` rather than attempting the conversion yourself. ## Example Input: "hello world.this is a test." Output: "Hello world. This is a test." --- ## 中文说明 # Simple Text Formatter 此技能根据样式指南设置文本格式。 ## 特性 - 句子首字母大写 - 修正空格 - 应用标点规则 ## 用法 当用户提供要格式化的文本时,应用以下规则: 1. 句子的首字母大写 2. 确保句号后只有一个空格 3. 移除尾部空白 在大多数情况下,你应使用 `scripts/formatter.py` 中的 python 工具,而不是自己尝试转换。 ## 示例 Input: "hello world.this is a test." Output: "Hello world. This is a test."