cpbox-spellcheck
/install cpbox-spellcheck
Spellcheck
Paid Spellcheck proxy via x402 pay-per-use (HTTP 402).
Prerequisites: This skill requires x402-payment. Complete the setup steps before first use.
Security: Documentation only — no executable code or credentials. Wallet/keys stay on your machine; never stored here.
Service URLs
| Role | Domain |
|---|---|
| API Provider | https://www.cpbox.io |
| Facilitator | https://www.cppay.finance |
Endpoint (Agent Interface)
GET /api/x402/spellcheck
Payment Flow (x402 Protocol)
- First request ->
402 Payment Requiredwith requirements JSON - Sign & retry with
PAYMENT-SIGNATURE-> result JSON
With @springmint/x402-payment or x402-sdk-go, payment is automatic.
Quick Start (cURL)
curl -s "https://www.cpbox.io/api/x402/spellcheck" \
-H "Accept: application/json" \
-G \
--data-urlencode "q=artifical inteligence" \
--data-urlencode "lang=en" \
--data-urlencode "country=US"
Using with x402-payment
npx @springmint/x402-payment \
--url "https://www.cpbox.io/api/x402/spellcheck?q=artifical%20inteligence&lang=en&country=US" \
--method GET
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
q |
string | Yes | — | Query to spell check (1-400 chars, max 50 words) |
lang |
string | No | en |
Language preference (2+ char language code, e.g. en, fr, de, pt-br, zh-hans). 51 codes supported |
country |
string | No | US |
Search country (2-letter country code or ALL) |
Response Fields
| Field | Type | Description |
|---|---|---|
type |
string | Always "spellcheck" |
query.original |
string | The input query as submitted |
results |
array | Spell-corrected suggestions. May be empty when no correction is found |
results[].query |
string | A corrected version of the query |
Example Response
{
"type": "spellcheck",
"query": {
"original": "artifical inteligence"
},
"results": [
{
"query": "artificial intelligence"
}
]
}
Use Cases
- Pre-search query cleanup: Check spelling before deciding which search endpoint to call
- "Did you mean?" UI: Show users a corrected suggestion before running the search
- Batch query normalization: Clean up user inputs in bulk
Notes
- Built-in alternative: Web Search and LLM Context have
spellcheck=trueby default — use this standalone endpoint only when you need the correction before searching - Context-aware: Corrections consider the full query context, not just individual words
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install cpbox-spellcheck - 安装完成后,直接呼叫该 Skill 的名称或使用
/cpbox-spellcheck触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
cpbox-spellcheck 是什么?
USE FOR spell correction. Returns corrected query if misspelled. Most search endpoints have spellcheck built-in; use this only for pre-search query cleanup o... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 163 次。
如何安装 cpbox-spellcheck?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install cpbox-spellcheck」即可一键安装,无需额外配置。
cpbox-spellcheck 是免费的吗?
是的,cpbox-spellcheck 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
cpbox-spellcheck 支持哪些平台?
cpbox-spellcheck 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 cpbox-spellcheck?
由 springmint(@sprintmint)开发并维护,当前版本 v1.0.0。