一键导入
http-client
Make HTTP requests to external APIs. Supports GET, POST, PUT, DELETE with JSON and form data. Use for fetching data, calling APIs, and webhooks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Make HTTP requests to external APIs. Supports GET, POST, PUT, DELETE with JSON and form data. Use for fetching data, calling APIs, and webhooks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Control headless Chrome via Cloudflare Browser Rendering CDP WebSocket. Use for screenshots, page navigation, scraping, and video capture when browser automation is needed in a Cloudflare Workers environment. Requires CDP_SECRET env var and cdpUrl configured in browser.profiles.
AI/ML utilities including embeddings generation, vision analysis, text-to-speech, and structured output extraction. Supports Anthropic Claude, OpenAI, and compatible APIs.
Dubai Real Estate Intelligence Suite - RFM Lead Scoring, Voice Campaigns, Property Search, Market Analysis
Execute code snippets in multiple languages with sandboxed environments. Supports JavaScript, TypeScript, Python, and shell scripts with timeout protection and output capture.
Cryptographic utilities for encryption, hashing, key generation, and secure random data. Supports AES-GCM, RSA, ECDSA, SHA-256/384/512, Argon2, and modern cryptographic standards.
Data transformation utilities for JSON, CSV, XML, YAML, and Markdown. Parse, convert, query, and transform data between formats with JQ-like filtering support.
| name | http-client |
| description | Make HTTP requests to external APIs. Supports GET, POST, PUT, DELETE with JSON and form data. Use for fetching data, calling APIs, and webhooks. |
Make HTTP requests to external APIs and services.
node /path/to/skills/http-client/scripts/request.js GET https://api.example.com/data
node /path/to/skills/http-client/scripts/request.js POST https://api.example.com/users '{"name":"John"}'
node /path/to/skills/http-client/scripts/request.js GET https://api.example.com/data --header "Authorization: Bearer token123"
General-purpose HTTP request script.
Usage:
node request.js <METHOD> <URL> [BODY] [OPTIONS]
Options:
--header "Key: Value" - Add custom header (can be used multiple times)--output <file> - Save response to file--timeout <ms> - Request timeout (default: 30000)Simplified script for JSON APIs.
Usage:
node fetch-json.js <URL> [--post '{"data":"value"}']
node request.js GET https://jsonplaceholder.typicode.com/posts/1
node request.js POST https://httpbin.org/post '{"key":"value"}' --header "Content-Type: application/json"
node request.js GET https://example.com/file.pdf --output downloaded.pdf
The script outputs JSON with:
{
"status": 200,
"headers": { "content-type": "application/json" },
"body": { "response": "data" }
}