docs/en/intro/features.mdx
The memory system enables the Agent to remember important information over time, using a three-tier memory flow: conversation context (short-term) → daily memory (mid-term) → MEMORY.md (long-term), forming a complete memory lifecycle.
On first launch, the Agent proactively asks the user for key information and records it in the workspace (default ~/cow) — including agent settings, user identity, and memory files.
In subsequent long-term conversations, the Agent intelligently stores or retrieves memory as needed, continuously updating its own settings, user preferences, and memory files. Deep Dream distillation runs daily, consolidating scattered daily memories into refined long-term memory and generating a narrative-style dream diary.
<Frame> </Frame>See Long-term Memory and Deep Dream for details.
The knowledge base system enables the Agent to continuously accumulate and organize structured knowledge. Unlike memory which records along a timeline, the knowledge base is organized by topics, transforming articles, conversation insights, and learning materials into interconnected Markdown pages that form a continuously growing knowledge network.
The Agent automatically organizes valuable information from conversations into knowledge pages, maintaining cross-references and indexes. The Web console provides document browsing and knowledge graph visualization. Knowledge is stored in ~/cow/knowledge/ within the workspace.
/knowledge commands to view stats, browse directory, and toggle the feature with /knowledge on|offSee Personal Knowledge Base for details.
Tools are the core of how the Agent accesses operating system resources. The Agent intelligently selects and invokes tools based on task requirements, performing file read/write, command execution, scheduled tasks, and more. Built-in tools are implemented in the project's agent/tools/ directory.
Key tools: file read/write/edit, Bash terminal, browser, file send, scheduler, memory search, web search, environment config, and more.
Access to the OS terminal and file system is the most fundamental and core capability. Many other tools and skills build on top of this. Users can interact with the Agent from a mobile device to operate resources on their personal computer or server:
<Frame> </Frame>Combining programming and system access, the Agent can execute the complete Vibecoding workflow — from information search, asset generation, coding, testing, deployment, Nginx configuration, to publishing — all triggered by a single command from your phone:
<Frame> </Frame>The scheduler tool enables dynamic scheduled tasks, supporting one-time tasks, fixed intervals, and Cron expressions. Tasks can be triggered as either a fixed message send or an Agent dynamic task execution:
The built-in browser tool allows the Agent to control a Chromium browser to visit web pages, fill forms, click elements, and take screenshots, with support for dynamic JS-rendered pages. Run cow install-browser to install with one command, automatically adapting to server (headless) and desktop environments:
Secrets required by skills are stored in an environment variable file, managed by the env_config tool. You can update secrets through conversation, with built-in security protection and desensitization:
The Skills system provides infinite extensibility for the Agent. Each Skill consists of a description file, execution scripts (optional), and resources (optional), describing how to complete specific types of tasks. Skills allow the Agent to follow instructions for complex workflows, invoke tools, or integrate third-party systems.
skills/ directory, including skill creator, image recognition, LinkAI agent, web fetch, and more. Built-in skills are automatically enabled based on dependency conditions (API keys, system commands, etc.).~/cow/skills/), capable of implementing any complex business process or third-party integration.Install skills: /skill install <name> or cow skill install <name>, supporting Skill Hub, GitHub, ClawHub, URL, and more.
The skill-creator skill enables rapid skill creation through conversation. You can ask the Agent to codify a workflow as a skill, or send any API documentation and examples for the Agent to complete the integration directly:
web_search tool, supports multiple search engines. Configure BOCHA_API_KEY or LINKAI_API_KEY to enable.openai-image-vision skill, supports gpt-4.1-mini, gpt-4.1, and other models. Requires OPENAI_API_KEY.Visit skills.cowagent.ai to browse all available skills, or use commands in conversation:
/skill list --remote # Browse Skill Hub
/skill search <keyword> # Search skills
/skill install <name> # Install with one command
Also supports installing skills from GitHub, ClawHub, LinkAI, and other third-party platforms. See Install Skills for details.
CowAgent provides two command interaction methods, covering service management, skill installation, configuration, and more:
cow <command> in the system terminal, supporting start, stop, restart, update, status, logs, skill, etc./<command> in conversation. The Web console shows a command menu when you type /.cow start # Start service
cow stop # Stop service
cow update # Update and restart
cow skill install pptx # Install a skill
cow install-browser # Install browser tool
See Command Overview for details.