# Intro URL: /docs/framework/intro Source: /app/src/content/docs/framework/intro.mdx ![Intro](/intro.webp) import { Card, Cards } from 'fumadocs-ui/components/card'; import { Brain, Network, GitBranch, Puzzle, Eye, MessageSquare, Layers, Users } from 'lucide-react'; **Open-source AI agent framework for building autonomous systems that solve real-world tasks effectively.** Astreus is the developer-friendly AI agent framework that lets you build powerful, production-ready agents in minutes. Rapidly develop sophisticated AI systems with full control over capabilities while maintaining clean, maintainable code. ## Installation ```bash npm install @astreus-ai/astreus ``` ## Basic Usage ```typescript import { Agent } from '@astreus-ai/astreus'; const agent = await Agent.create({ name: 'Assistant', model: 'gpt-4o', memory: true }); const response = await agent.ask('How can you help me?'); ``` ## Core Features } title="Sub-Agents"> Intelligent task delegation with specialized agent coordination, hierarchical workflows, and LLM-powered assignment. } title="Advanced Memory System"> Per-agent persistent memory with automatic context integration and vector search capabilities. } title="Task Orchestration"> Structured task execution with status tracking, dependency management, and streaming support. } title="Graph Workflows"> Complex workflow orchestration with conditional execution, parallel processing, and sub-agent integration. } title="MCP Integration"> Model Context Protocol support for seamless external tool and service connections. } title="Plugin System"> Extensible tool integration with JSON schema validation and automatic LLM function calling. } title="Vision Processing"> Built-in image analysis and document processing capabilities for multimodal interactions. } title="Knowledge Base"> RAG integration with document chunking, vector embeddings, and similarity search.