docs: fix bad docs (#2691)

This commit is contained in:
Aiden Cline
2025-09-19 12:40:40 -05:00
committed by GitHub
parent aaff066457
commit c21161b75e

View File

@@ -118,8 +118,8 @@ export default tool({
args: {},
async execute(args, context) {
// Access context information
const { project, directory, worktree } = context
return `Project: ${project.name}, Directory: ${directory}`
const { agent, sessionID, messageID } = context
return `Agent: ${agent}, Session: ${sessionID}, Message: ${messageID}`
},
})
```