| 1234567891011121314 |
- import { describe, expect, test } from 'bun:test';
- import { buildOrchestratorPrompt } from './orchestrator';
- describe('orchestrator prompt', () => {
- test('requires the question tool for blocking user input', () => {
- const prompt = buildOrchestratorPrompt();
- expect(prompt).toContain('use the `question` tool');
- expect(prompt).toContain('Enable custom input');
- expect(prompt).toContain('concise pasted response or command output');
- expect(prompt).toContain('small bounded set of options');
- expect(prompt).toContain('ordinary dialogue that does not block work');
- });
- });
|