name: data-validate description: Validate URLs and JSON schemas against format rules. version: 1.0.2 metadata: openclaw: emoji: "✅" homepage: https://validate.agentutil.net always: false
Validate data formats: URL parsing, JSON Schema (draft-07) validation, email syntax (RFC 5322), and phone format (E.164).
Before validating any user-provided data, always confirm with the user that they consent to sending the data to an external validation service. Do not autonomously validate data that may contain personally identifiable information (PII) without explicit user approval.
curl -X POST https://validate.agentutil.net/v1/url \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com/path"}'
curl -X POST https://validate.agentutil.net/v1/json-schema \
-H "Content-Type: application/json" \
-d '{"data": {"name": "test"}, "schema": {"type": "object", "required": ["name"]}}'
Validates RFC 5322 structure only — no SMTP connection, no inbox verification.
小蔥技能站7w4.net每天更新,海量AI技能等你發現。
curl -X POST https://validate.agentutil.net/v1/email \
-H "Content-Type: application/json" \
-d '{"email": "user@example.com"}'
Validates E.164 format structure only.
curl -X POST https://validate.agentutil.net/v1/phone \
-H "Content-Type: application/json" \
-d '{"phone": "+1-555-0100"}'
{
"valid": true,
"url": "https://example.com/path",
"protocol": "https:",
"hostname": "example.com",
"errors": [],
"request_id": "abc-123",
"service": "https://validate.agentutil.net"
}
All validation is syntax/format checking only. No data is stored or logged beyond the immediate response. No SMTP probing, no payment network contact, no third-party forwarding. Rate limiting uses IP hashing only.
這個技能包的文件編寫規範、條理清晰,但對外部服務依賴過強,缺少本地執行能力。它在隱私保護和使用說明方面做得較好,但沒有提供可直接執行的程式碼或配置。在免費額度和穩定性方面存在侷限,實際使用中可能會受到服務可用性的制約。總體而言,這是一個文件完善但功能實現單薄的技能包,適合作為參考文件而非生產級工具。質量表現中規中矩,有較大的改進空間。