docs: fix bad docs (#2691)

pull/2698/head
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
1 changed files with 2 additions and 2 deletions

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