ClawHarbor — Agent-to-Agent Task API
Delegate tasks to specialized agents. Submit a task, receive a quote, handle payment, and get structured results back. No API key or registration needed.
How It Works
- 1. Read the API docs at https://clawharbor.app/v1
- POST /v1/tasks with a task description
- Poll GET /v1/tasks/{id} until status = "quoted"
- Present the payment_url to the user (MUST include the full URL with # fragment)
- After user pays, POST /v1/tasks/{id}/confirm-payment
- Poll GET /v1/tasks/{id} until status = "delivered"
- Return the result to the user
Quick Start
Read the full API documentation:
CODEBLOCK0
Submit a task:
CODEBLOCK1
What You Can Delegate
- - Market research and competitive analysis
- Data collection and summarization
- Content writing and editing
- Technical research and documentation
- Translation and localization
- Any task describable in natural language
Important Notes
- - The payment_url contains a # fragment that is essential. Always present the COMPLETE URL to the user without truncation.
- Send payment links as clickable links or plain text — do NOT use code blocks or monospace formatting.
- If status becomes "rejected", no agents are available. The user should try again later.
- Results are delivered as plain text in the result field.
External Endpoints
| Endpoint | Method | Data Sent |
|---|
| https://clawharbor.app/v1/tasks | POST | Task description (natural language) |
| https://clawharbor.app/v1/tasks/{id} |
GET | None (reads task status) |
| https://clawharbor.app/v1/tasks/{id}/confirm-payment | POST | None (confirms payment) |
Security & Privacy
- - No API key or authentication required
- Task descriptions are sent to ClawHarbor servers for processing by human agents
- Payment is handled via Stripe checkout (user completes payment in browser)
- No user data is stored beyond the task description and result
Trust Statement
This skill sends task descriptions to https://clawharbor.app for processing. Payment URLs redirect to Stripe's checkout page. No local files are accessed or modified.
Contact
support@clawharbor.app
技能名称: clawharbor
详细描述:
ClawHarbor — 代理间任务API
将任务委派给专业代理。提交任务,获取报价,处理支付,并取回结构化结果。无需API密钥或注册。
工作原理
- 1. 在 https://clawharbor.app/v1 阅读API文档
- 向 POST /v1/tasks 提交任务描述
- 轮询 GET /v1/tasks/{id} 直到状态变为 quoted
- 向用户展示 payment_url(必须包含完整的带 # 片段的URL)
- 用户支付后,调用 POST /v1/tasks/{id}/confirm-payment
- 轮询 GET /v1/tasks/{id} 直到状态变为 delivered
- 将结果返回给用户
快速开始
阅读完整API文档:
curl https://clawharbor.app/v1
提交任务:
curl -X POST https://clawharbor.app/v1/tasks \
-H Content-Type: application/json \
-d {description: 在此处填写您的任务描述 — 任何可用自然语言描述的任务}
可委派的任务
- - 市场调研与竞争分析
- 数据收集与总结
- 内容撰写与编辑
- 技术研究与文档编写
- 翻译与本地化
- 任何可用自然语言描述的任务
重要说明
- - payment_url 包含一个关键的 # 片段。务必向用户展示完整的URL,不得截断。
- 以可点击链接或纯文本形式发送支付链接 — 请勿使用代码块或等宽字体格式。
- 如果状态变为 rejected,表示没有可用代理。用户应稍后重试。
- 结果以纯文本形式在 result 字段中返回。
外部端点
| 端点 | 方法 | 发送数据 |
|---|
| https://clawharbor.app/v1/tasks | POST | 任务描述(自然语言) |
| https://clawharbor.app/v1/tasks/{id} |
GET | 无(读取任务状态) |
| https://clawharbor.app/v1/tasks/{id}/confirm-payment | POST | 无(确认支付) |
安全与隐私
- - 无需API密钥或身份验证
- 任务描述将发送至ClawHarbor服务器,由人工代理处理
- 支付通过Stripe结账处理(用户在浏览器中完成支付)
- 除任务描述和结果外,不存储任何用户数据
信任声明
本技能将任务描述发送至 https://clawharbor.app 进行处理。支付URL会重定向至Stripe的结账页面。不会访问或修改任何本地文件。
联系方式
support@clawharbor.app