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
8 changes: 4 additions & 4 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ knowledge/**
!knowledge/default/
!knowledge/default/**

# Instruments directory – keep only default/
instruments/**
!instruments/default/
!instruments/default/**
# Skills directory – keep only builtin/
skills/**
!skills/builtin/
!skills/builtin/**

# Keep .gitkeep markers anywhere
!**/.gitkeep
Expand Down
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ knowledge/**
!knowledge/default/
!knowledge/default/**

# Handle instruments directory
instruments/**
!instruments/**/
# Explicitly allow the default folder in instruments
!instruments/default/
!instruments/default/**
# Handle skills directory (SKILL.md standard)
skills/**
!skills/**/
# Explicitly allow the builtin folder in skills
!skills/builtin/
!skills/builtin/**

# Global rule to include .gitkeep files anywhere
!**/.gitkeep
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Agent Zero now supports **Projects** – isolated workspaces with their own prom
- Tool usage functionality has been developed from scratch to be the most compatible and reliable, even with very small models.
- **Default Tools:** Agent Zero includes tools like knowledge, code execution, and communication.
- **Creating Custom Tools:** Extend Agent Zero's functionality by creating your own custom tools.
- **Instruments:** Instruments are a new type of tool that allow you to create custom functions and procedures that can be called by Agent Zero.
- **Skills (SKILL.md Standard):** Skills are contextual expertise loaded dynamically when relevant. They use the open SKILL.md standard (developed by Anthropic), making them compatible with Claude Code, Cursor, Goose, OpenAI Codex CLI, and GitHub Copilot.

3. **Multi-agent Cooperation**

Expand Down
Loading