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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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}`
},
})
```