بنقرة واحدة
text-processor
// 文本处理工具。支持的操作(operation):uppercase(大写)、lowercase(小写)、reverse(反转)、trim(去空白)、count(统计)。参数:text(文本)、operation(操作类型)。
// 文本处理工具。支持的操作(operation):uppercase(大写)、lowercase(小写)、reverse(反转)、trim(去空白)、count(统计)。参数:text(文本)、operation(操作类型)。
查询指定城市未来几天(明天、后天等)的天气预报。当用户询问「明天」「后天」「未来几天」天气时使用;与 weather 互补,weather 仅提供实时天气。
查询城市天气信息,支持查询今天和明天的天气预报。当用户询问某个城市的天气、温度、湿度等信息时使用。
A simple calculator that can add, subtract, multiply, and divide numbers. Use when the user needs to perform basic arithmetic operations.
发起 HTTP 网络请求,支持 GET、POST、PUT、DELETE、PATCH 方法。当用户需要调用 API、获取网页内容、发送数据到服务器时使用。
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
小红书图文内容创作助手。**必须传入 content**(含 title、body、hashtags、thumbnail),建议 generate_thumbnail=true。优先 Playwright HTML 截图生成封面,失败时回退 Pillow。
| name | text-processor |
| description | 文本处理工具。支持的操作(operation):uppercase(大写)、lowercase(小写)、reverse(反转)、trim(去空白)、count(统计)。参数:text(文本)、operation(操作类型)。 |
| license | MIT |
| compatibility | Requires Python 3.x |
| metadata | {"author":"skillLite","version":"1.0"} |
一个通用的文本处理工具,支持多种文本操作。
大写转换:
{
"text": "Hello, World!",
"operation": "uppercase"
}
字符统计:
{
"text": "Hello",
"operation": "count"
}
详细的技术文档请参阅 references/REFERENCE.md。
entry_point: scripts/main.py
language: python
input_schema:
type: object
properties:
text:
type: string
description: 要处理的文本内容
operation:
type: string
description: 操作类型
enum:
- uppercase
- lowercase
- reverse
- trim
- count
default: uppercase
required:
- text