mirror of
https://github.com/yigitkonur/cli-continues.git
synced 2026-04-26 00:36:02 +03:00
[GH-ISSUE #12] Add Qwen Code #6
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/cli-continues#6
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @karatechopping on GitHub (Feb 21, 2026).
Original GitHub issue: https://github.com/yigitkonur/cli-continues/issues/12
Is it possible to add Qwen Code as a supported model?
@yigitkonur commented on GitHub (Mar 2, 2026):
hey @karatechopping — qwen code is now supported as of #27 🎉
the parser reads sessions from
~/.qwen/tmp/*/chats/*.jsonl(the standard qwen-code JSONL storage). you can hand off sessions to/from qwen code with all 15 other tools.after updating (
npm i -g continues), try:let me know if it works for you!
@yigitkonur commented on GitHub (Mar 2, 2026):
hey @karatechopping — pushed a follow-up fix in #31 that addresses some critical bugs found during a deep audit against the actual qwen-code source:
~/.qwen/tmp/<sha256>but real sessions live at~/.qwen/projects/<sanitized-cwd>/chats/. parser would've found zero sessions on a real machine--resume <sessionId>instead of always--continue(supports specific session resume)run_shell_command,grep_search,edit, etc)would you mind giving it a spin and letting us know if sessions are picked up correctly now? 🙏
@yigitkonur commented on GitHub (Mar 2, 2026):
update: all review feedback from #27 has been addressed in #32 (merged). qwen code parser now uses zod validation, defensive timestamps, dedup, and proper tree path reconstruction. @karatechopping let us know if you hit any issues