mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 04:00:36 +00:00
- Add terminal-capture engine using node-pty + xterm.js + Playwright - Add scenario runner with TypeScript configuration - Add pre-built scenarios (/about, /context, /export, /auth) - Add Cursor skills for terminal-capture and pr-review workflow - Add motivation documentation Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
8 lines
276 B
TypeScript
8 lines
276 B
TypeScript
import type { ScenarioConfig } from '../scenario-runner.js';
|
|
|
|
export default {
|
|
name: '/about command',
|
|
spawn: ['node', 'dist/cli.js', '--yolo'],
|
|
terminal: { title: 'qwen-code', cwd: '../../..' },
|
|
flow: [{ type: 'hi' }, { type: '/about' }],
|
|
} satisfies ScenarioConfig;
|