(tool: SkillTool, args: { skill: string; args?: string })
| 72 | } |
| 73 | |
| 74 | function execute(tool: SkillTool, args: { skill: string; args?: string }) { |
| 75 | return executeTool(tool, { |
| 76 | turnId: '0', |
| 77 | toolCallId: 'call_skill', |
| 78 | args, |
| 79 | signal, |
| 80 | }); |
| 81 | } |
| 82 | |
| 83 | describe('SkillTool dispatch edges', () => { |
| 84 | it('treats prompt skills as inline skills', async () => { |
no test coverage detected