mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 12:11:09 +00:00
8 lines
276 B
TypeScript
8 lines
276 B
TypeScript
import type { ScenarioConfig } from '../scenario-runner.js';
|
|
|
|
export default {
|
|
name: '/hooks command',
|
|
spawn: ['node', 'dist/cli.js', '--yolo'],
|
|
terminal: { title: 'qwen-code', cwd: '../../..' },
|
|
flow: [{ type: 'hi' }, { type: '/hooks' }],
|
|
} satisfies ScenarioConfig;
|