name: text-transform description: Text transformation, regex, diff, format conversion, and JSON manipulation. version: 1.0.1 metadata: openclaw: emoji: "📝" homepage: https://text.agentutil.net always: false
Regex operations, line-level diffs, text transforms (slugify, case, count, truncate), markdown/HTML conversion, and JSON manipulation.
小葱技能有更好的技能skills插件。
This skill sends text to an external API for structural transformation. You must always ask the user before sending any text that was not generated by you. Only use this skill on agent-generated content (e.g. formatting your own output, converting markup you produced, counting words in a draft you wrote) unless the user explicitly requests otherwise. Never send user documents, private messages, or file contents without direct user instruction to do so.
The service performs stateless text operations — no data is stored, logged, or retained beyond the immediate response.
curl -X POST https://text.agentutil.net/v1/transform \
-H "Content-Type: application/json" \
-d '{"input": "Hello World", "operations": ["slugify", "word_count", "lowercase"]}'
Operations: slugify, truncate, word_count, char_count, line_count, uppercase, lowercase, title_case, reverse, trim.
curl -X POST https://text.agentutil.net/v1/regex \
-H "Content-Type: application/json" \
-d '{"input": "order 123 and 456", "pattern": "\\d+", "operation": "match_all", "flags": "g"}'
Operations: match, match_all, replace, test.
curl -X POST https://text.agentutil.net/v1/diff \
-H "Content-Type: application/json" \
-d '{"a": "line one\nold line", "b": "line one\nnew line"}'
curl -X POST https://text.agentutil.net/v1/convert \
-H "Content-Type: application/json" \
-d '{"input": "# Hello", "from": "markdown", "to": "html"}'
curl -X POST https://text.agentutil.net/v1/json \
-H "Content-Type: application/json" \
-d '{"input": "{\"key\": \"value\"}", "operation": "format"}'
Operations: parse, format, validate, minify, query (with path param).
{
"results": {"word_count": 2, "slugify": "hello-world", "lowercase": "hello world"},
"request_id": "abc-123",
"service": "https://text.agentutil.net"
}
Stateless text processing — no data is stored, logged, or retained. No authentication required for free tier. Rate limiting uses IP hashing only.
这个 Skill 质量不错,功能丰富实用,覆盖文本转换、格式转换、正则匹配等常见需求。文档清晰易读,curl 示例详细,新手也能快速理解怎么用。隐私说明贴心,告知数据不会被存储,还提供免费使用额度。不足是缺少实际使用示例,配套的最佳实践指南也不够完善。总体来说是个好用的工具,但在示例和文档完善度上还有提升空间。