docs: rename Code Execution extension to Code Mode extension (#7316)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Rizel Scarlett
2026-02-18 16:12:45 -05:00
committed by GitHub
parent e08857779b
commit 5a7721523a
8 changed files with 63 additions and 16 deletions
+44
View File
@@ -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",
"command": "",
"link": "https://github.com/block/goose/tree/main/crates/goose/src/agents/platform_extensions/summon.rs",
"installation_notes": "This is a built-in platform extension that comes with goose. No installation required.",
"is_builtin": true,
"endorsed": true,
"environmentVariables": []
},
{
"id": "supabase",
"name": "Supabase",
@@ -691,6 +713,28 @@
}
]
},
{
"id": "tom",
"name": "Top of Mind",
"description": "Inject persistent instructions into goose's working memory every turn",
"command": "",
"link": "https://github.com/block/goose/tree/main/crates/goose/src/agents/platform_extensions/tom.rs",
"installation_notes": "This is a built-in platform extension that comes with goose and is enabled by default. Configure via GOOSE_MOIM_MESSAGE_TEXT or GOOSE_MOIM_MESSAGE_FILE environment variables.",
"is_builtin": true,
"endorsed": true,
"environmentVariables": [
{
"name": "GOOSE_MOIM_MESSAGE_TEXT",
"description": "Literal text injected into working memory each turn",
"required": false
},
{
"name": "GOOSE_MOIM_MESSAGE_FILE",
"description": "Path to a file whose contents are injected (supports ~/)",
"required": false
}
]
},
{
"id": "tutorial-mcp",
"name": "Tutorial",