Overview
- Skill Key
- cutthemustard/data-validate
- Author
- cutthemustard
- Source Repo
- openclaw/skills
- Version
- 1.0.2
- Source Path
- skills/cutthemustard/data-validate
- Latest Commit SHA
- 8e264313b1dd231995706b784db5ff3927163e71
Validate URLs and JSON schemas against format rules.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 data-validate 技能。 若已安装,则直接安装 data-validate 技能。
# data-validate
Validate data formats: URL parsing, JSON Schema (draft-07) validation, email syntax (RFC 5322), and phone format (E.164).
## Important: User Consent Required
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.
## Endpoints
### URL Validation
```bash
curl -X POST https://validate.agentutil.net/v1/url \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com/path"}'
```
### JSON Schema Validation
```bash
curl -X POST https://validate.agentutil.net/v1/json-schema \
-H "Content-Type: application/json" \
-d '{"data": {"name": "test"}, "schema": {"type": "object", "required": ["name"]}}'
```
### Email Syntax Check
Validates RFC 5322 structure only — no SMTP connection, no inbox verification.
```bash
curl -X POST https://validate.agentutil.net/v1/email \
-H "Content-Type: application/json" \
-d '{"email": "user@example.com"}'
```
### Phone Format Check
Validates E.164 format structure only.
```bash
curl -X POST https://validate.agentutil.net/v1/phone \
-H "Content-Type: application/json" \
-d '{"phone": "+1-555-0100"}'
```
## Response Format
```json
{
"valid": true,
"url": "https://example.com/path",
"protocol": "https:",
"hostname": "example.com",
"errors": [],
"request_id": "abc-123",
"service": "https://validate.agentutil.net"
}
```
## Pricing
- Free tier: 10 queries/day, no authentication required
- Paid tier: $0.001/query via x402 protocol (USDC on Base)
## Privacy
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.
rxhxm
Agent Skill (SKILL.md) for Sixtyfour AI — People & company intelligence API. Enrich leads, find emails/phones, qualify prospects, search people. For Claude Code, Codex, OpenClaw, Cursor.
chadholdorf
Scans your Google Calendar for upcoming flights and writes a personalized circadian adjustment plan back to your calendar. Trigger with phrases like "check my flights", "run jetlag planner", "plan my trip adjustment", or "am I ready for my upcoming flight".
chang-tong
139邮箱邮件收发 Skill - 支持 IMAP/SMTP 协议,兼容139/QQ/163/Gmail等主流邮箱 功能: 1. 发送邮件(SMTP) 2. 接收邮件(IMAP) 3. 查看收件箱列表 4. 查看未读邮件 当用户提到 "发邮件"、"收邮件"、"查看邮件"、"邮箱" 或 "email" 时激活此 skill。
chao-nj-cn
Send and receive emails via QQ Mail SMTP/IMAP. Use when: user wants to send/receive emails, check inbox, read messages, or share documents via email. Requires QQ email authorization code configured in TOOLS.md.
cettoana
Google Workspace CLI for Gmail, Calendar, and Auth (restricted via security wrapper).
byungkyu
Monday.com API integration with managed OAuth. Manage boards, items, columns, groups, and workspaces using GraphQL. Use this skill when users want to create, update, or query Monday.com boards and items, manage tasks, or automate workflows. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Requires network access and valid Maton API key.