> ## Documentation Index
> Fetch the complete documentation index at: https://langchain-zh.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# Taskade 集成

> 使用 LangChain JavaScript 集成 Taskade 文档加载器。

[Taskade](https://www.taskade.com) 是 AI 驱动写作、项目管理和任务自动化的终极工具。它旨在成为你的第二大脑，从始至终简化项目执行并增强团队协作。

## 概述

借助 [Taskade](https://www.taskade.com)，你可以构建、训练和部署自己的 AI 智能体团队，以自动化任务并简化工作流程。Taskade 无缝融合了构思、协作和执行工具——从结构化列表到现代表格和思维导图，所有功能均可自定义，以适应你独特的工作流程并满足你的需求。

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
import { TaskadeProjectLoader } from "@langchain/community/document_loaders/web/taskade";

const loader = new TaskadeProjectLoader({
  personalAccessToken: "TASKADE_PERSONAL_ACCESS_TOKEN", // 或从 process.env.TASKADE_PERSONAL_ACCESS_TOKEN 加载
  projectId: "projectId",
});
const docs = await loader.load();

console.log({ docs });
```

你可以通过浏览器打开项目并从 URL 中提取来找到你的 Taskade 项目 ID：

```
https://www.taskade.com/d/<你的项目 ID 在此处>
```

***

<div className="source-links">
  <Callout icon="edit">
    [Edit this page on GitHub](https://github.com/langchain-ai/docs/edit/main/src/i18n\zh-CN\oss\javascript\integrations\document_loaders\web_loaders\taskade.mdx) or [file an issue](https://github.com/langchain-ai/docs/issues/new/choose).
  </Callout>

  <Callout icon="terminal-2">
    [Connect these docs](/use-these-docs) to Claude, VSCode, and more via MCP for real-time answers.
  </Callout>
</div>
