Skip to Content
Back to Blog

Qwen Code Weekly: Agent Skills GA, One-Click Install, Session Export

Qwen Team
2026-02-09

This week we released v0.9.0, v0.9.1 stable versions and v0.10.0 preview.

  • Agent Skills officially removed experimental flag, upgraded to stable feature
  • Added one-click install script to further lower the barrier to entry
  • Support exporting session history to Markdown, JSONL, HTML formats
  • Free quota adjusted from 2000/day to 1000/day

✨ New Features

Agent Skills Goes GA

Agent Skills removed --experimental-skills flag, meaning Skills has been fully tested over 4 release cycles since its official release in 0.6.0, upgraded from experimental to stable status, and can be safely used in production environments.

See PR #1738 

Session History Export Support

Added /export command, supporting export of session history to Markdown, JSONL, and HTML formats. Users can easily save and share conversation records, generate documents or reports. See PR #1515 

How to use?

  • /export <format> <session ID>
  • When <session ID> is empty, exports the current conversation.

New One-Click Install Script

Added one-click install script to further lower the barrier to entry, supporting one-line command installation.

See PR #1653 

Linux / macOS

curl -fsSL https://qwen-code-assets.oss-cn-hangzhou.aliyuncs.com/installation/install-qwen.sh | bash

Windows (Run as Administrator CMD)

curl -fsSL -o %TEMP%\install-qwen.bat https://qwen-code-assets.oss-cn-hangzhou.aliyuncs.com/installation/install-qwen.bat && %TEMP%\install-qwen.bat

It is recommended to restart your terminal after installation to ensure environment variables take effect.

Large File Paste Optimization

Optimized for large file paste scenarios, added placeholder prompts, and fixed enter submission issue on macOS. Improved user experience, especially when dealing with large amounts of code or text.

See PR #1713 

SDK Feature Optimization

  • Session Resume Feature: TypeScript SDK now supports resume option, equivalent to CLI’s --resume flag, users can now save session state. See PR #1714 
  • Electron IPC Integration Support: Added FORK_MODE support for ProcessTransport, enabling deep integration with Electron IPC, making it convenient for developers to build desktop applications. See PR #1719 

Search Tools Support in Plan Mode

Automatically enable WebFetch and WebSearch tools in plan mode, simplifying user operations.

See PR #1686 

🔧 Important Fixes

  • Symbolic Link Support: Skills added symbolic link support for easier organization and management of Skills #1690 
  • SubAgents Tool Limitations: Prevent unauthorized tool usage, enhancing security #1691 
  • File Editing Trailing Whitespace Handling: Fixed issue of preserving trailing whitespace when editing files, ensuring format integrity #1688 
  • Docker Build Fix: Fixed Docker build errors and supported manual version builds #1722 
  • CLI Parameter Parsing: Fixed CLI entry point parameter parsing issues #1758 
  • ACP Model Selection: Fixed ACP model selection to support all configured authentication types #1555 
  • UTF-8 BOM Preservation #1680  - Preserve UTF-8 BOM when editing files, ensuring encoding compatibility
  • Debug Mode Refactoring #1610  - Refactored debug mode output, routing console calls to log file-first debugLogger
  • Build Efficiency Improvement #1681  - Improved build process and added development mode

Windows Compatibility Improvements

  • Enabled Shift+Tab shortcut in Windows PowerShell #1607 
  • Prevent Tab key from cycling approval modes when autocomplete is activated on Windows #1736 

MCP Feature Optimization

  • Fixed MCP multi-part tool result processing logic, ensuring correctness of complex tool calls #1755 
  • Improved MCP server management process and authentication mechanism, enhancing stability and security #1752 
  • Properly clean up MCP server child processes on exit, preventing resource leaks #1285 

Upgrade: Run npm i @qwen-code/qwen-code@latest -g to upgrade to the latest version.

For questions or suggestions, welcome to GitHub Issues !

Last updated on