Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
# Large / generated data
memory/**

# Logs & tmp
# Logs, tmp, usr
logs/*
tmp/*
usr/*

# Knowledge directory – keep only default/
knowledge/**
Expand Down
12 changes: 9 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
**/.DS_Store
**/.env
**/__pycache__/
*.py[cod]
**/.conda/

#Ignore cursor rules
#Ignore IDE files
.cursor/
.windsurf/

# ignore test files in root dir
/*.test.py
Expand All @@ -20,8 +22,9 @@ memory/**
# Handle logs directory
logs/*

# Handle tmp directory
# Handle tmp and usr directory
tmp/*
usr/*

# Handle knowledge directory
knowledge/**
Expand All @@ -39,4 +42,7 @@ instruments/**

# Global rule to include .gitkeep files anywhere
!**/.gitkeep
agent_history.gif

# for browser-use
agent_history.gif

31 changes: 23 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,8 @@ Or see DeepWiki generated documentation:

<div align="center">

> ### 🚨 **IMPORTANT ANNOUNCEMENT** 🚨

The original GitHub and DockerHub repositories for Agent Zero have been transferred to a new namespace:

- **GitHub & DockerHub:** `agent0ai/agent-zero`

From now on, please use this name for both `git clone` and `docker pull` commands.

> ### 🚨 **PROJECTS!** 🚨
Agent Zero now supports **Projects** – isolated workspaces with their own prompts, files, memory, and secrets, so you can create dedicated setups for each use case without mixing contexts.
</div>


Expand Down Expand Up @@ -87,6 +81,7 @@ From now on, please use this name for both `git clone` and `docker pull` command
- The framework does not guide or limit the agent in any way. There are no hard-coded rails that agents have to follow.
- Every prompt, every small message template sent to the agent in its communication loop can be found in the **prompts/** folder and changed.
- Every default tool can be found in the **python/tools/** folder and changed or copied to create new predefined tools.
- **Automated configuration** via `A0_SET_` environment variables for deployment automation and easy setup.

![Prompts](/docs/res/prompts.png)

Expand Down Expand Up @@ -172,6 +167,26 @@ docker run -p 50001:80 agent0ai/agent-zero

## 🎯 Changelog

### v0.9.7 - Projects
[Release video](https://youtu.be/RrTDp_v9V1c)
- Projects management
- Support for custom instructions
- Integration with memory, knowledge, files
- Project specific secrets
- New Welcome screen/Dashboard
- New Wait tool
- Subordinate agent configuration override support
- Support for multiple documents at once in document_query_tool
- Improved context on interventions
- Openrouter embedding support
- Frontend components refactor and polishing
- SSH metadata output fix
- Support for windows powershell in local TTY utility
- More efficient selective streaming for LLMs
- UI output length limit improvements



### v0.9.6 - Memory Dashboard
[Release video](https://youtu.be/sizjAq2-d9s)
- Memory Management Dashboard
Expand Down
Loading