Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

chatdoc-studio-apichatdoc studio API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

2,351

周安装

97

GitHub Stars

公开资料未说明

下载量

768
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:chatdoc-studio-api(chatdoc studio API 搜索)
来源仓库:https://github.com/cumtyc/chatdoc-studio-api
安装命令:
openclaw skills install chatdoc-studio-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install chatdoc-studio-api

简介

提供 ChatDOC Studio API 的完整文档与示例,辅助接口设计与集成。

  • 适合在 OpenClaw 中开发 PDF 解析或内容提取类应用时使用。
  • 通过 clawhub 安装,包含请求示例与错误码说明便于快速上手。
  • 安装前建议核对密钥管理与调用频次限制政策。
  • 注意该技能仅为参考资料,实际调用需遵循官方服务条款。

SKILL.md

name
chatdoc-studio-api
description
ChatDOC Studio API usage guide - complete documentation and examples for PDF parsing, chat applications, agent applications, content retrieval, and data extraction APIs

Overview

ChatDOC Studio is an AI-powered document processing and conversation platform providing multiple API capabilities:

  • PDF Parser - Parse PDF documents into structured data (JSON, Markdown, Excel)
  • Chat App - Create document-based Q&A chat applications
  • Agent App - Run task-based document analysis with published Agent Apps
  • RAG App - Content retrieval applications based on documents
  • Extract App - Extract structured data from documents

API Basics

Base URL

https://api.chatdoc.studio/v1

Authentication

All API requests require a JWT Token in the HTTP Header:

Authorization: Bearer YOUR_API_KEY

Environment Variables

Manage API configuration through environment variables:

Environment VariableDescriptionDefault Value
CHATDOC_STUDIO_BASE_URLAPI Base URLhttps://api.chatdoc.studio/v1
CHATDOC_STUDIO_API_KEYAPI authentication key-

Supported File Types

APIPDFDOCDOCXMDTXT
PDF Parser
Chat App
Agent App
RAG App
Extract App

API Module Documentation

Uploads API

Required for all apps except PDF Parser. Upload documents to your team before using them in Chat Apps, Agent Apps, RAG Apps, or Extract Apps.

Documentation: uploads/uploads_api.md Code Examples: uploads/uploads_api_examples.md

PDF Parser API

Parse PDF documents into structured data, supporting JSON, Markdown, and Excel exports.

Documentation: parsers/pdf_parser.md Code Examples: parsers/pdf_parser_examples.md

Chat App API

Create document-based Q&A chat applications with multi-turn conversations and source tracing.

Documentation: chat/chat_app.md Code Examples: chat/chat_app_examples.md

Agent App API

Submit uploaded files to published Agent Apps, poll task status, and fetch final task results.

Documentation: agent/agent_app.md Code Examples: agent/agent_app_examples.md

RAG App API

Perform semantic retrieval based on document content to retrieve relevant document fragments.

Documentation: retrieval/rag_app.md Code Examples: retrieval/rag_app_examples.md

Extract App API

Extract structured data from documents based on JSON Schema definitions.

Documentation: extraction/extract_app.md Code Examples: extraction/extract_app_examples.md

Apps API

Manage all types of applications (Chat, Agent, Extract, RAG) in your team - list and delete apps.

Documentation: apps/apps.md Code Examples: apps/apps_examples.md

Document Status (DocumentStatus)

All uploaded documents go through a processing status flow. Understanding document status is crucial for proper API usage.

Documentation: docs/document_status.md

Common Response Format

All API responses follow a unified format:

Success Response:

{
  "type": "System",
  "code": "success",
  "data": { ... },
  "detail": null
}

Error Response:

{
  "type": "...",
  "code": "...",
  "data": ...,
  "detail": "...."
}

Common Error Codes

In addition to API-specific error codes, the following error codes may be returned by any API endpoint:

Plan Error Codes (PlanErrorEnum)

These errors are related to your subscription plan's credit and capacity limits. Your API usage consumes credits and counts against your plan's capacity.

Error CodeDescription
credit_not_enoughInsufficient credits to perform the operation. Top up your credits or upgrade your plan.
capacity_not_enoughStorage capacity exceeded. Delete unused documents or upgrade your plan.
app_count_not_enoughMaximum number of apps allowed by your plan has been reached.
member_count_not_enoughMaximum number of team members allowed by your plan has been reached.
upgrade_plan_errorError occurred during plan upgrade process.
not_foundPlan not found. Contact support.

System Error Codes (SystemErrorEnum)

These are general system-level errors that may occur during API operations.

Error CodeDescription
unknown_errorAn unexpected error occurred. Try again or contact support if it persists.
validation_errorRequest validation failed. Check your request parameters.
project_expiredThe project or subscription has expired. Renew your subscription to continue.
handshake_errorAuthentication handshake failed. Check your API key.

Rate Limiting

API calls are subject to rate limits based on your subscription plan. HTTP 429 status code will be returned when limits are exceeded.

Getting Started

Basic Workflow

  1. Obtain an API Key from the ChatDOC Studio console
  2. Configure environment variables
  3. Review the module's documentation and examples
  4. Upload documents (for Chat/Agent/RAG/Extract Apps) using the Uploads API
  5. Immediately create your app or task using the upload IDs (processing is auto-triggered when referenced)
  6. Wait for the app or task to become ready before using downstream features
  7. Integrate into your application

Quick Start Examples

PDF Parser: Upload and parse → Get JSON/Markdown/Excel

Chat App: Upload documents → Create Chat App → Send messages

Agent App: Upload document → Create Agent task → Poll status → Get final result

RAG App: Upload documents → Create RAG App → Query content

Extract App: Create Extract App with schema → Upload document → Get extracted data

Additional Resources

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.32%
按下载量换算648

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills