Close Menu

    Subscribe to Updates

    Get the latest news from tastytech.

    What's Hot

    Hugging Face hosted malicious software masquerading as OpenAI release

    May 13, 2026

    10 GitHub Repositories to Master Self-Hosting

    May 13, 2026

    Sony’s Xperia 1 VIII Has Bigger Camera Sensors And A New Look

    May 13, 2026
    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram
    tastytech.intastytech.in
    Subscribe
    • AI News & Trends
    • Tech News
    • AI Tools
    • Business & Startups
    • Guides & Tutorials
    • Tech Reviews
    • Automobiles
    • Gaming
    • movies
    tastytech.intastytech.in
    Home»Business & Startups»Plan Mode and Vision Intelligence 
    Plan Mode and Vision Intelligence 
    Business & Startups

    Plan Mode and Vision Intelligence 

    gvfx00@gmail.comBy gvfx00@gmail.comOctober 15, 2025No Comments7 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email


    AI technology is revolutionizing the key developer process and workflow at light speed. Alibaba Cloud has released significant releases recently for Qwen Code (0.0.12 to 0.0.14). Qwen Code features powerful capabilities like Plan Mode and Vision Intelligence. This brings an element of security, intelligence, and flexibility to this Qwen AI coding buddy. In this article, we will cover these releases and test them out in a hands-on session. 

    Table of Contents

    Toggle
    • The New Qwen Code Updates
    • Feature Spotlight: Plan Mode for Safe Coding
    • Feature Spotlight: Vision Intelligence
    • Zed Integration and Better Control
    • Hands-on: Installing the New Updates
      • Prerequisites 
      • Step 1: Installation and Setup
      • Step 2: Testing Plan Mode 
      • Step 3: Testing Vision Intelligence 
    • Community Feedback and Future Outlook
    • Conclusion
    • Frequently Asked Questions
        • Login to continue reading and enjoy expert-curated content.
      • Related posts:
    • Is Your Machine Learning Pipeline as Efficient as it Could Be?
    • How to Speed Up Slow Python Code Even If You’re a Beginner
    • Collaborative AI Systems: Human-AI Teaming Workflows

    The New Qwen Code Updates

    🚀 Exciting updates in Qwen Code v0.0.12–v0.0.14!

    ✨ What’s new?
    • Plan Mode: AI proposes a full implementation plan—you approve before a single line changes.
    • Vision Intelligence: Auto-switch to vision models (Qwen3-VL-Plus with 256K input / 32K output!) when images… pic.twitter.com/XJzhiTeQzj

    — Qwen (@Alibaba_Qwen) October 11, 2025

    Qwen Code is an agentic coding companion that resides in your terminal. It extends into your development environment to assist you with writing, debugging, and refactoring code. Though powerful, earlier versions demanded significant trust from the developer. 

    The AI might change files directly from a prompt. This is fast, but dangerous. A misinterpreted prompt might make unintended changes to the code. The community asked for more control and improved management of non-text content. The engineering team responded with new features. The recent updates are mainly about safety, multimodal, and user experience. 

    Feature Spotlight: Plan Mode for Safe Coding

    The biggest change is Plan Mode. It shifts how the AI coding assistant will work with your codebase. 

    Before, the AI would apply changes directly. Now, Plan Mode adds a review step. When you provide a complicated task, the AI first produces an in-depth implementation plan. It explains exactly which files it will touch and what changes it will make. 

    You need to examine and authorize this plan. The AI will only act upon the changes once you positively confirm them. This conforms Qwen Code to the best software development practices. It provides you with complete control and does not allow for unintentional code overwrite. It transforms the AI from a loose order-taker coder to an active junior partner. 

    As per the 2024 Stack Overflow Developer Survey, 76% of developers are currently or likely to use AI tools, yet accuracy and trust remain the most significant concerns. Plan Mode specifically addresses this lack of trust. 

    Feature Spotlight: Vision Intelligence

    Coding is not always text. It has UI designs, architecture diagrams, and error screenshots. Qwen Code fills this gap now with Vision Intelligence. 

    The model is now able to recognize when you’re giving image inputs. It auto-switches to the Qwen3-VL-Plus model. This model has a high visual reasoning ability. It has a huge context window. 

    This helps you to streamline your developer workflow quite heavily. You can send in a screenshot of the buggy webpage layout. The AI will be able to compare the visual output against your code to recommend fixes. It enhances frontend development and debugging effectively. 

    Zed Integration and Better Control

    The updates also improve compatibility. Users of the Zed Code editor now have better authentication support. You can authenticate using OpenAI API keys or Qwen OAuth. 

    Additionally, the team included granular control options. You can now turn loop detection on and off to avoid having the AI become stuck. The software also includes an ask before overwrite prompt before the /init command deletes files. All these quality-of-life adjustments make Qwen Code a more reliable option for everyday use.

    Hands-on: Installing the New Updates

    Let’s talk no more, code yes. We will be installing the newest version of Qwen Code and trying Plan Mode and Vision Intelligence. 

    Prerequisites 

    • You must have Node.js on your system. 
    • You must have a working API key for Qwen or a Qwen account at https://chat.qwen.ai/ 

    Step 1: Installation and Setup

    Then we need to install or update the tool. Open your terminal. 

    Run the following command: 

    npm install -g qwen-code 

    Once installed, navigate to your project directory. Initialize the tool and authenticate. 

    qwen 

    Link your account by following the prompts on the screen. You may log in by using your Qwen account on https://chat.qwen.ai/  

    Step 2: Testing Plan Mode 

    We will use Plan Mode to reformat a Python script. Suppose we have a file called calc.py with ugly code. 

    Rather than having the AI simply correct it, we request a plan.

    Execute this command in your Qwen code: 

    @calc.py Refactor calc.py to use a class structure. Use Plan Mode. 
    Refactoring Code

    Qwen Code did not alter the file. Rather, it prints a plan. The tool is now asking: Do you want to execute this plan? (Y/N) Type Y and press enter.  

    Now, only the AI code assistant will change your file. This process makes sure you always know what is going on with your code. 

    Writing Code

    Step 3: Testing Vision Intelligence 

    Now let’s test Vision Intelligence. We have a screenshot of the Homepage UI of Analytics Vidhya. 

    Site page

    We would like Qwen Code to examine the image and recommend CSS changes for our style.css file. 

    Execute this command: 

    @AV.png Replicate this analytics vidhya home webpage using html css and javascript
    Switching Model

    The feature identifies the image file extension. It requests changing to the vision model. Then it is followed by providing the visual breakdown of AV.png. 

    Replicating the webpage

    It then suggests HTML, CSS, and JS code for what it finds in the image. This multimodal feature enables a smooth developer flow between design and code.

    The produced webpage is not even near the Home page of Analytics Vidhya, but we must keep in mind that there are lots of UI components in the home page which we didn’t have, like images, font, etc. Then this output isn’t that bad. Nevertheless, some improvements are needed, like responsiveness, padding, and margin. 

    Community Feedback and Future Outlook

    The community reaction to these updates has been positive. Developers appreciate the transparency of Plan Mode. The addition of Vision Intelligence opens new possibilities for frontend engineers. 

    No tool is, however, perfect. Users have complained about repeated problems with the tool not being able to read PDFs. The engineering team is also on GitHub and utilizes the feedback for future updates. Expect additional integration with other development environments and more fine-tuned control features soon. 

    Conclusion

    The new releases to Qwen Code are a significant improvement. Plan Mode brings in the required safety rails for professional use. Vision Intelligence turns it into a true multimodal AI coding assistant. The features greatly bring the developer workflow into the modern age. With the blend of control and high-end AI capabilities, Alibaba Cloud has made an attractive tool. We strongly urge developers to download the latest iteration and try these features out for themselves. 

    Frequently Asked Questions

    Q1. What is Plan Mode in Qwen Code? 

    A. Plan Mode allows the AI to create a step-by-step plan for code updates. You need to approve and review this plan prior to the AI altering any files. 

    Q2. Which model does Vision Intelligence use? 

    A. When image inputs are detected, the tool will automatically switch to the Qwen3-VL-Plus model for visual data analysis. 

    Q3. Is Qwen Code compatible with the Zed editor? 

    A. Yes, recent updates were enhancing Zed integration. It can now authenticate using both OpenAI API keys and Qwen OAuth. 


    Harsh Mishra

    Harsh Mishra is an AI/ML Engineer who spends more time talking to Large Language Models than actual humans. Passionate about GenAI, NLP, and making machines smarter (so they don’t replace him just yet). When not optimizing models, he’s probably optimizing his coffee intake. 🚀☕

    Login to continue reading and enjoy expert-curated content.



    Related posts:

    AI Writes Python Code, But Maintaining It Is Still Your Job

    Excel 101: IF, AND, OR Functions and Conditional Logic Explained

    Is OpenAI’s GPT-5.3 Codex Worth the Hype?

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticleSamsung’s new Android XR headset is coming October 21 and you can reserve one now
    Next Article Art Deco-Inspired Electric Coupe Concept
    gvfx00@gmail.com
    • Website

    Related Posts

    Business & Startups

    10 GitHub Repositories to Master Self-Hosting

    May 13, 2026
    Business & Startups

    5 Useful Python Scripts for Time Series Analysis

    May 13, 2026
    Business & Startups

    Using Polars Instead of Pandas: Performance Deep Dive

    May 12, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Top Posts

    Black Swans in Artificial Intelligence — Dan Rose AI

    October 2, 2025150 Views

    Every Clue That Tony Stark Was Always Doctor Doom

    October 20, 202584 Views

    We let ChatGPT judge impossible superhero debates — here’s how it ruled

    December 31, 202577 Views
    Stay In Touch
    • Facebook
    • YouTube
    • TikTok
    • WhatsApp
    • Twitter
    • Instagram

    Subscribe to Updates

    Get the latest tech news from tastytech.

    About Us
    About Us

    TastyTech.in brings you the latest AI, tech news, cybersecurity tips, and gadget insights all in one place. Stay informed, stay secure, and stay ahead with us!

    Most Popular

    Black Swans in Artificial Intelligence — Dan Rose AI

    October 2, 2025150 Views

    Every Clue That Tony Stark Was Always Doctor Doom

    October 20, 202584 Views

    We let ChatGPT judge impossible superhero debates — here’s how it ruled

    December 31, 202577 Views

    Subscribe to Updates

    Get the latest news from tastytech.

    Facebook X (Twitter) Instagram Pinterest
    • Homepage
    • About Us
    • Contact Us
    • Privacy Policy
    © 2026 TastyTech. Designed by TastyTech.

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Our website is made possible by displaying online advertisements to our visitors. Please support us by disabling your Ad Blocker.