# deepagentsjs **Repository Path**: mirrors_wuchangming/deepagentsjs ## Basic Information - **Project Name**: deepagentsjs - **Description**: Deep Agents in JS - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-01 - **Last Updated**: 2025-10-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🧠🤖Deep Agents Using an LLM to call tools in a loop is the simplest form of an agent. This architecture, however, can yield agents that are "shallow" and fail to plan and act over longer, more complex tasks. Applications like "Deep Research", "Manus", and "Claude Code" have gotten around this limitation by implementing a combination of four things: a planning tool, sub agents, access to a file system, and a detailed prompt. `deepagents` is a TypeScript package that implements these in a general purpose way so that you can easily create a Deep Agent for your application. > ![TIP] > Looking for the Python version of this package? See [here: hwchase17/deepagents](https://github.com/hwchase17/deepagents) ## Installation ```bash yarn add deepagents ``` ## Learn more For more information, check out our docs: [https://docs.langchain.com/labs/deep-agents/overview](https://docs.langchain.com/labs/deep-agents/overview)