Agent Skills
› cisco-ai-defense/skill-scanner
› simple-formatter
simple-formatter
GitHub用于根据指定风格指南格式化文本的 Skill,包括首字母大写、修正间距及标点规则。
Trigger Scenarios
用户要求格式化文本
提供待处理文本内容
Install
npx skills add cisco-ai-defense/skill-scanner --skill simple-formatter -g -y
SKILL.md
Frontmatter
{
"name": "simple-formatter",
"license": "MIT",
"description": "Formats text according to specified style guidelines. A clean example skill with no security issues.",
"allowed-tools": [
"Python"
]
}
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:
- Capitalize first letter of sentences
- Ensure single space after periods
- Remove trailing whitespace
Example
Input: "hello world.this is a test." Output: "Hello world. This is a test."
Version History
- 48f5934 Current 2026-08-20 07:36


