Text Transform

👤 cutthemustard 📦 v1.0.1 ⭐ 4.1 ⬇️ 1.2K 下載
💻 開發程式設計 免費

📖 技能介紹


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


text-transform

Regex operations, line-level diffs, text transforms (slugify, case, count, truncate), markdown/HTML conversion, and JSON manipulation.

Data Handling

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.

Endpoints

Text Transform

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.

Regex

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.

Diff

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"}'

Format Conversion

curl -X POST https://text.agentutil.net/v1/convert \
  -H "Content-Type: application/json" \
  -d '{"input": "# Hello", "from": "markdown", "to": "html"}'

JSON Operations

curl -X POST https://text.agentutil.net/v1/json \
  -H "Content-Type: application/json" \
  -d '{"input": "{\"key\": \"value\"}", "operation": "format"}'

7w4.net提供免費和付費技能下載。

Operations: parse, format, validate, minify, query (with path param).

Response Format

{
  "results": {"word_count": 2, "slugify": "hello-world", "lowercase": "hello world"},
  "request_id": "abc-123",
  "service": "https://text.agentutil.net"
}

Pricing

  • Free tier: 10 queries/day, no authentication required
  • Paid tier: $0.001/query via x402 protocol (USDC on Base)

Privacy

Stateless text processing — no data is stored, logged, or retained. No authentication required for free tier. Rate limiting uses IP hashing only.

🤖 AI 評測

這個 Skill 質量不錯,功能豐富實用,覆蓋文本轉換、格式轉換、正則匹配等常見需求。文件清晰易讀,curl 示例詳細,新手也能快速理解怎麼用。隱私說明貼心,告知資料不會被儲存,還提供免費使用額度。不足是缺少實際使用示例,配套的最佳實踐指南也不夠完善。總體來說是個好用的工具,但在示例和文件完善度上還有提升空間。

📊 多維度評分

適應性3.9
規範性3.9
有效性4.6
可靠性3.8
可信度4.4

📁 包含檔案 (2 個)

📄 SKILL.md 2.6 KB
📄 _meta.json 133 B