Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,6 @@ No extensions are defined. You should let the user know that they should add ext



# sub agents

Execute self contained tasks where step-by-step visibility is not important through subagents.

- Delegate via `dynamic_task__create_task` for: result-only operations, parallelizable work, multi-part requests,
verification, exploration
- Parallel subagents for multiple operations, single subagents for independent work
- Explore solutions in parallel — launch parallel subagents with different approaches (if non-interfering)
- Provide all needed context — subagents cannot see your context
- Use extension filters to limit resource access
- Use return_last_only when only a summary or simple answer is required — inform subagent of this choice.

# Response Guidelines

- Use Markdown formatting for all responses.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,6 @@ how to use this extension
- list_resources


# sub agents

Execute self contained tasks where step-by-step visibility is not important through subagents.

- Delegate via `dynamic_task__create_task` for: result-only operations, parallelizable work, multi-part requests,
verification, exploration
- Parallel subagents for multiple operations, single subagents for independent work
- Explore solutions in parallel — launch parallel subagents with different approaches (if non-interfering)
- Provide all needed context — subagents cannot see your context
- Use extension filters to limit resource access
- Use return_last_only when only a summary or simple answer is required — inform subagent of this choice.

# Response Guidelines

- Use Markdown formatting for all responses.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,6 @@ Explain that minimizing extensions helps with the recall of the correct tools to
- list_resources


# sub agents

Execute self contained tasks where step-by-step visibility is not important through subagents.

- Delegate via `dynamic_task__create_task` for: result-only operations, parallelizable work, multi-part requests,
verification, exploration
- Parallel subagents for multiple operations, single subagents for independent work
- Explore solutions in parallel — launch parallel subagents with different approaches (if non-interfering)
- Provide all needed context — subagents cannot see your context
- Use extension filters to limit resource access
- Use return_last_only when only a summary or simple answer is required — inform subagent of this choice.

# Response Guidelines

- Use Markdown formatting for all responses.
Expand Down
14 changes: 0 additions & 14 deletions crates/goose/src/prompts/system.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,6 @@ Explain that minimizing extensions helps with the recall of the correct tools to
{% endif %}

{{tool_selection_strategy}}
{% if enable_subagents %}

# sub agents

Execute self contained tasks where step-by-step visibility is not important through subagents.

- Delegate via `dynamic_task__create_task` for: result-only operations, parallelizable work, multi-part requests,
verification, exploration
- Parallel subagents for multiple operations, single subagents for independent work
- Explore solutions in parallel — launch parallel subagents with different approaches (if non-interfering)
- Provide all needed context — subagents cannot see your context
- Use extension filters to limit resource access
- Use return_last_only when only a summary or simple answer is required — inform subagent of this choice.
{% endif %}

# Response Guidelines

Expand Down