Artificial intelligence is moving beyond traditional chatbots toward Agentic AI—systems that can understand objectives, plan tasks, use tools, execute actions, observe results, and adapt.
Alibaba is building this ecosystem around Qwen and a growing set of agent-development and enterprise platforms.

Alibaba Agentic AI Ecosystem

Component

Role

Qwen

Foundation models for reasoning, coding and multimodal AI

AgentScope

Open-source framework for building and orchestrating AI agents

AgentCore

Enterprise platform for building, deploying, governing and monitoring agents

Qwen Cloud / Model Studio

Cloud access to Qwen models and AI development capabilities

Wukong

Enterprise platform for multi-agent business workflows

DataWorks Data Agent

AI-assisted data engineering, governance and operations

Alibaba Cloud

Compute, storage, networking and AI infrastructure

How an Agent Works

Traditional AI:

Prompt → Model → Response

Agentic AI:

Goal → Plan → Tool → Execute → Observe → Correct → Result

For example, a DBA agent could receive:

"Investigate high database storage."

It could then:

  1. Check tablespace usage.

  2. Identify the largest tables.

  3. Analyse growth.

  4. Check retention and partitioning.

  5. Identify archival candidates.

  6. Generate remediation SQL.

  7. Request human approval.

  8. Execute approved changes.

  9. Verify the result.

  10. Produce a report.

Technical Architecture

              User
                │
                ▼
        AgentScope / AgentCore
                │
                ▼
              Qwen
                │
       ┌────────┼────────┐
       ▼        ▼        ▼
     Tools     MCP     Memory
       │
       ├── Oracle
       ├── PostgreSQL
       ├── Cloud APIs
       └── Enterprise Systems
                │
                ▼
        Approval / Security
                │
                ▼
           Execution
                │
                ▼
          Verification

A simplified AgentScope implementation connects a Qwen model to tools:

from agentscope.agent import Agent
from agentscope.model import DashScopeChatModel

agent = Agent(
    name="DBAAgent",
    system_prompt="Investigate database issues and require approval for production changes.",
    model=DashScopeChatModel(
        model="qwen3.6-plus",
        api_key="DASHSCOPE_API_KEY"
    )
)

The important point is that Qwen provides the intelligence, while the agent framework connects that intelligence to tools, memory, enterprise data and actions.

Why It Matters

Agentic AI can automate multi-step workflows across:

However, production agents require RBAC, tool restrictions, audit logging, monitoring and human approval for sensitive operations.

The Bigger Picture

Alibaba's strategy is moving from:

"AI that answers questions"

to:

"AI that completes controlled tasks."

With Qwen as the model layer, AgentScope for development, AgentCore for enterprise agent management, Wukong for business workflows, and DataWorks Data Agent for data operations, Alibaba is building a broader platform for enterprise Agentic AI.

Summary

Alibaba's strategy is moving from:

"AI that answers questions"

to:

"AI that completes controlled tasks."

With Qwen as the model layer, AgentScope for development, AgentCore for enterprise agent management, Wukong for business workflows, and DataWorks Data Agent for data operations, Alibaba is building a broader platform for enterprise Agentic AI.