diff --git a/docs/users/overview.md b/docs/users/overview.md
index e69de29b..552d7e26 100644
--- a/docs/users/overview.md
+++ b/docs/users/overview.md
@@ -0,0 +1,127 @@
+# Qwen Code overview
+
+> Learn about Qwen Code, Anthropic's agentic coding tool that lives in your terminal and helps you turn ideas into code faster than ever before.
+
+## Get started in 30 seconds
+
+Prerequisites:
+
+* A [Claude.ai](https://claude.ai) (recommended) or [Claude Console](https://console.anthropic.com/) account
+
+**Install Qwen Code:**
+
+
+
+ ```bash theme={null}
+ curl -fsSL https://claude.ai/install.sh | bash
+ ```q
+
+
+
+ ```bash theme={null}
+ brew install --cask claude-code
+ ```
+
+
+
+ ```powershell theme={null}
+ irm https://claude.ai/install.ps1 | iex
+ ```
+
+
+
+ ```bash theme={null}
+ npm install -g @anthropic-ai/claude-code
+ ```
+
+ Requires [Node.js 18+](https://nodejs.org/en/download/)
+
+
+
+**Start using Qwen Code:**
+
+```bash theme={null}
+cd your-project
+claude
+```
+
+You'll be prompted to log in on first use. That's it! [Continue with Quickstart (5 mins) →](/en/quickstart)
+
+
+ See [advanced setup](/en/setup) for installation options or [troubleshooting](/en/troubleshooting) if you hit issues.
+
+
+
+ **New VS Code Extension (Beta)**: Prefer a graphical interface? Our new [VS Code extension](/en/vs-code) provides an easy-to-use native IDE experience without requiring terminal familiarity. Simply install from the marketplace and start coding with Claude directly in your sidebar.
+
+
+## What Qwen Code does for you
+
+* **Build features from descriptions**: Tell Claude what you want to build in plain English. It will make a plan, write the code, and ensure it works.
+* **Debug and fix issues**: Describe a bug or paste an error message. Qwen Code will analyze your codebase, identify the problem, and implement a fix.
+* **Navigate any codebase**: Ask anything about your team's codebase, and get a thoughtful answer back. Qwen Code maintains awareness of your entire project structure, can find up-to-date information from the web, and with [MCP](/en/mcp) can pull from external datasources like Google Drive, Figma, and Slack.
+* **Automate tedious tasks**: Fix fiddly lint issues, resolve merge conflicts, and write release notes. Do all this in a single command from your developer machines, or automatically in CI.
+
+## Why developers love Qwen Code
+
+* **Works in your terminal**: Not another chat window. Not another IDE. Qwen Code meets you where you already work, with the tools you already love.
+* **Takes action**: Qwen Code can directly edit files, run commands, and create commits. Need more? [MCP](/en/mcp) lets Claude read your design docs in Google Drive, update your tickets in Jira, or use *your* custom developer tooling.
+* **Unix philosophy**: Qwen Code is composable and scriptable. `tail -f app.log | claude -p "Slack me if you see any anomalies appear in this log stream"` *works*. Your CI can run `claude -p "If there are new text strings, translate them into French and raise a PR for @lang-fr-team to review"`.
+* **Enterprise-ready**: Use the Claude API, or host on AWS or GCP. Enterprise-grade [security](/en/security), [privacy](/en/data-usage), and [compliance](https://trust.anthropic.com/) is built-in.
+
+## Next steps
+
+
+
+ See Qwen Code in action with practical examples
+
+
+
+ Step-by-step guides for common workflows
+
+
+
+ Solutions for common issues with Qwen Code
+
+
+
+ Add Qwen Code to your IDE
+
+
+
+## Additional resources
+
+
+
+ Create custom AI agents with the Claude Agent SDK
+
+
+
+ Configure Qwen Code with Amazon Bedrock or Google Vertex AI
+
+
+
+ Customize Qwen Code for your workflow
+
+
+
+ Learn about CLI commands and controls
+
+
+
+ Clone our development container reference implementation
+
+
+
+ Discover Qwen Code's safeguards and best practices for safe usage
+
+
+
+ Understand how Qwen Code handles your data
+
+
+
+
+---
+
+> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://code.claude.com/docs/llms.txt
\ No newline at end of file