* Optimize background-task tool descriptions for token efficiency - BACKGROUND_TASK_DESCRIPTION: 571 chars → 127 chars - BACKGROUND_OUTPUT_DESCRIPTION: 268 chars → 95 chars - BACKGROUND_CANCEL_DESCRIPTION: 374 chars → 83 chars Follows token efficiency improvements pattern from PR #71. 🤖 Generated with assistance of OhMyOpenCode (https://github.com/code-yeongyu/oh-my-opencode) * Optimize call-omo-agent tool description for token efficiency - CALL_OMO_AGENT_DESCRIPTION: 841 chars → 156 chars (~81% reduction) - Follows pattern from PR #71 where LSP tool descriptions were optimized - Maintains core information while removing redundant explanations 🤖 Generated with assistance of OhMyOpenCode (https://github.com/code-yeongyu/oh-my-opencode) * Optimize look-at tool description for token efficiency 🤖 Generated with assistance of OhMyOpenCode (https://github.com/code-yeongyu/oh-my-opencode) * Optimize interactive-bash tool description for token efficiency 346 chars → 130 chars (~62% reduction), following PR #71 pattern. 🤖 Generated with assistance of OhMyOpenCode
8 lines
471 B
TypeScript
8 lines
471 B
TypeScript
export const BACKGROUND_TASK_DESCRIPTION = `Run agent task in background. Returns task_id immediately; notifies on completion.
|
|
|
|
Use \`background_output\` to get results. Prompts MUST be in English.`
|
|
|
|
export const BACKGROUND_OUTPUT_DESCRIPTION = `Get output from background task. System notifies on completion, so block=true rarely needed.`
|
|
|
|
export const BACKGROUND_CANCEL_DESCRIPTION = `Cancel running background task(s). Use all=true to cancel ALL before final answer.`
|