Skip to content

Commit 7bdd67d

Browse files
authored
docs: Fix links in README.md (#18)
1 parent 23896a3 commit 7bdd67d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ The agent (and any subagents) will have access to these tools.
8585

8686
The second argument to `create_deep_agent` is `instructions`.
8787
This will serve as part of the prompt of the deep agent.
88-
Note that there is a [built in system prompt](#built-in-prompt) as well, so this is not the *entire* prompt the agent will see.
88+
Note that there is a [built in system prompt](src/deepagents/prompts.py) as well, so this is not the *entire* prompt the agent will see.
8989

9090
### `subagents` (Optional)
9191

@@ -138,7 +138,7 @@ The below components are built into `deepagents` and helps make it work for deep
138138
`deepagents` comes with a [built-in system prompt](src/deepagents/prompts.py). This is relatively detailed prompt that is heavily based on and inspired by [attempts](https://github.com/kn1026/cc/blob/main/claudecode.md) to [replicate](https://github.com/asgeirtj/system_prompts_leaks/blob/main/Anthropic/claude-code.md)
139139
Claude Code's system prompt. It was made more general purpose than Claude Code's system prompt.
140140
This contains detailed instructions for how to use the built-in planning tool, file system tools, and sub agents.
141-
Note that part of this system prompt [can be customized](#promptprefix--required-)
141+
Note that part of this system prompt [can be customized](#instructions-required)
142142

143143
Without this default system prompt - the agent would not be nearly as successful at going as it is.
144144
The importance of prompting for creating a "deep" agent cannot be understated.
@@ -175,7 +175,7 @@ result["files"]
175175

176176
`deepagents` comes with the built-in ability to call sub agents (based on Claude Code).
177177
It has access to a `general-purpose` subagent at all times - this is a subagent with the same instructions as the main agent and all the tools that is has access to.
178-
You can also specify [custom sub agents](#subagents--optional-) with their own instructions and tools.
178+
You can also specify [custom sub agents](#subagents-optional) with their own instructions and tools.
179179

180180
Sub agents are useful for ["context quarantine"](https://www.dbreunig.com/2025/06/26/how-to-fix-your-context.html#context-quarantine) (to help not pollute the overall context of the main agent)
181181
as well as custom instructions.

0 commit comments

Comments
 (0)