You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Overview
<!-- Brief description of what documentation is being added/updated -->
## Type of change
**Type:** [Replace with: New documentation page / Update existing
documentation / Fix typo/bug/link/formatting / Remove outdated content /
Other]
## Related issues/PRs
<!--
Link to related issues, feature PRs, or discussions (if applicable)
To automatically close an issue when this PR is merged, use closing
keywords:
- "closes#123" or "fixes#123" or "resolves#123"
For regular references without auto-closing, just use:
- "#123" or "See issue #123"
Examples:
- closes#456 (will auto-close issue #456 when PR is merged)
- See #789 for context (will reference but not auto-close issue #789)
-->
- GitHub issue:
- Feature PR:
<!-- For LangChain employees, if applicable: -->
- Linear issue:
- Slack thread:
## Checklist
<!-- Put an 'x' in all boxes that apply -->
- [x] I have read the [contributing guidelines](README.md)
- [x] I have tested my changes locally using `docs dev`
- [x] All code examples have been tested and work correctly
- [ ] I have used **root relative** paths for internal links
- [x] I have updated navigation in `src/docs.json` if needed
- I have gotten approval from the relevant reviewers
- (Internal team members only / optional) I have created a preview
deployment using the [Create Preview Branch
workflow](https://github.com/langchain-ai/docs/actions/workflows/create-preview-branch.yml)
## Additional notes
<!-- Any other information that would be helpful for reviewers -->
Copy file name to clipboardExpand all lines: src/oss/deepagents/harness.mdx
+32-41Lines changed: 32 additions & 41 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,40 +1,40 @@
1
1
---
2
-
title: Harness Capabilities
3
-
description: Description of what capabilities come in the deepagents Agent Harness
2
+
title: Agent harness capabilities
3
+
sidebarTitle: Agent harness
4
4
---
5
5
6
-
We think of `deepagents` as an "agent harness".
7
-
It is the same core tool calling loop as other agent frameworks, but with built-in tools and capabilities.
8
-
Here we list out the components that make up this agent harness
6
+
We think of `deepagents` as an "agent harness". It is the same core tool calling loop as other agent frameworks, but with built-in tools and capabilities.
9
7
10
-
## Filesystem Access
8
+
This page lists out the components that make up the agent harness.
11
9
12
-
Provides 6 tools for file system operations, making files first-class citizens in the agent's environment.
10
+
## File system access
13
11
14
-
**Tools provided:**
15
-
-`ls` - List files in a directory with metadata (size, modified time)
16
-
-`read_file` - Read file contents with line numbers, supports offset/limit for large files
17
-
-`write_file` - Create new files
18
-
-`edit_file` - Perform exact string replacements in files (with global replace mode)
0 commit comments