-
Notifications
You must be signed in to change notification settings - Fork 46
feat: Add Qwen3 Coder support with --target option #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
- Add --target qwen option for Qwen3 Coder environment - Implement .tsumikirc configuration file support - Add config and target utility functions - Update CLI to support multiple Coder environments - Fix Ink rendering issues in install/uninstall components - Add uninstall documentation to README.md - Update build scripts for cross-platform compatibility This enables Tsumiki to work seamlessly with both Claude Code and Qwen3 Coder environments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR作成ありがとうございます。
基本的なアイデアは賛成です!
実装についてコメントをしたので対応をお願いできれば幸いです。
@@ -0,0 +1 @@ | |||
target = "qwen" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.tsumikirc
を設けるのは良いアイデアだと思います!ただしインターフェースはJSONでお願いしたいです。
@@ -40,12 +40,15 @@ | |||
"dist" | |||
], | |||
"scripts": { | |||
"build": "rm -rf dist && mkdir -p dist/commands dist/agents && cp ./commands/*.md ./commands/*.sh dist/commands/ 2>/dev/null || true && cp ./agents/*.md dist/agents/ 2>/dev/null || true && tsup", | |||
"build": "rimraf dist && mkdirp dist/commands && copyfiles -u 1 commands/*.md commands/*.sh dist/commands/ && tsup", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rimrafとmkdirpについては現在開発が活発ではないようなので、採用は見送りたいです。Windows環境の場合も、devconainerの開発環境でこれらコマンドの実行は可能と考えています。
"@types/node": "24.1.0", | ||
"@types/react": "19.1.9", | ||
"@typescript/native-preview": "7.0.0-dev.20250729.2", | ||
"copyfiles": "2.4.1", | ||
"jest": "30.0.5", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
本プロジェクトにおいては、テスティングフレームワークはvitestを採用したいと考えています。
概要
Qwen3 Coder環境への対応を追加し、
--target
オプションでClaude CodeとQwen3 Coderの両方に対応できるようにしました。変更内容
--target qwen
オプションでQwen3 Coder環境にインストール可能.tsumikirc
設定ファイルサポートによるデフォルト環境設定config.ts
とtarget.ts
ユーティリティ関数の追加使用方法