v2.0.1: Add /qwenclaw slash commands for Qwen Code CLI

This commit is contained in:
AI Agent
2026-02-26 21:18:00 +04:00
Unverified
parent 69cf7e8a05
commit c2a97e0995
5 changed files with 1388 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ const command = args[0];
const commands = {
async start() {
console.log('🐾 QwenClaw - Starting daemon...');
const proc = spawn('qwen', ['-p', 'QwenClaw daemon started. Ready for tasks.'], {
const proc = spawn('qwen', ['QwenClaw daemon started. Ready for tasks.'], {
stdio: 'inherit',
shell: true,
});
@@ -39,7 +39,7 @@ const commands = {
process.exit(1);
}
console.log('📤 Sending to Qwen Code CLI...');
const proc = spawn('qwen', ['-p', message], {
const proc = spawn('qwen', [message], {
stdio: 'inherit',
shell: true,
});