-
Notifications
You must be signed in to change notification settings - Fork 2.8k
docs: rename Code Execution extension to Code Mode extension #7316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e7058a0
d40acf0
cece5c9
8e5e96b
4d377bc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -37,10 +37,11 @@ Platform extensions are built-in extensions that provide global features like co | |||||
|
|
||||||
| - [Apps](/docs/mcp/apps-mcp): Create, manage, and launch custom HTML apps in standalone windows | ||||||
| - [Chat Recall](/docs/mcp/chatrecall-mcp): Search conversation content across all your session history | ||||||
| - [Code Execution](/docs/mcp/code-execution-mcp): Execute JavaScript code for tool discovery and tool calling | ||||||
| - [Code Mode](/docs/mcp/code-mode-mcp): Execute JavaScript code for tool discovery and tool calling | ||||||
| - [Extension Manager](/docs/mcp/extension-manager-mcp): Discover, enable, and disable extensions dynamically during sessions (enabled by default) | ||||||
| - [Summon](/docs/mcp/summon-mcp): Load skills and recipes, and delegate tasks to subagents (enabled by default) | ||||||
| - [Todo](/docs/mcp/todo-mcp): Manage task lists and track progress across sessions (enabled by default) | ||||||
| - [Top of Mind](/docs/mcp/tom-mcp): Inject persistent instructions into goose's working memory every turn | ||||||
|
||||||
| - [Top of Mind](/docs/mcp/tom-mcp): Inject persistent instructions into goose's working memory every turn | |
| - [Top Of Mind](/docs/mcp/tom-mcp): Inject persistent instructions into goose's working memory every turn |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -229,6 +229,17 @@ | |||||
| } | ||||||
| ] | ||||||
| }, | ||||||
| { | ||||||
| "id": "code_execution", | ||||||
| "name": "Code Mode", | ||||||
| "description": "Execute JavaScript code to interact with MCP tools efficiently", | ||||||
| "command": "", | ||||||
| "link": "https://github.com/block/goose/tree/main/crates/goose/src/agents/platform_extensions/code_execution.rs", | ||||||
| "installation_notes": "This is a built-in platform extension that comes with goose. No installation required.", | ||||||
| "is_builtin": true, | ||||||
| "endorsed": true, | ||||||
| "environmentVariables": [] | ||||||
| }, | ||||||
| { | ||||||
| "id": "developer", | ||||||
| "name": "Developer", | ||||||
|
|
@@ -639,6 +650,17 @@ | |||||
| } | ||||||
| ] | ||||||
| }, | ||||||
| { | ||||||
| "id": "summon", | ||||||
| "name": "Summon", | ||||||
| "description": "Load skills and delegate tasks to subagents", | ||||||
|
||||||
| "description": "Load skills and delegate tasks to subagents", | |
| "description": "Load skills and recipes, and delegate tasks to subagents", |
Copilot
AI
Feb 18, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The extension name uses inconsistent capitalization. The code defines it as "Top Of Mind" (see crates/goose/src/agents/platform_extensions/mod.rs:109), and the documentation also uses "Top Of Mind" (see documentation/docs/mcp/tom-mcp.md:2 and line 38). This should be "Top Of Mind" with capital "O" to match the code and documentation.
| "name": "Top of Mind", | |
| "name": "Top Of Mind", |
Uh oh!
There was an error while loading. Please reload this page.