feat: remove --public/--private flags from tool publish command

All tools are now private to the organization by default. The --public
and --private CLI flags have been removed along with the is_public
parameter throughout the stack. Docs updated across EN, PT-BR, and KO.
This commit is contained in:
Heitor Sammuel Carvalho
2026-03-18 13:28:59 -03:00
parent 116182f708
commit a60aa3daca
8 changed files with 14 additions and 54 deletions

View File

@@ -9,10 +9,7 @@ mode: "wide"
The Tool Repository is a package manager for CrewAI tools. It allows users to publish, install, and manage tools that integrate with CrewAI crews and flows.
Tools can be:
- **Private**: accessible only within your organization (default)
- **Public**: accessible to all CrewAI users if published with the `--public` flag
All tools are private by default and accessible only within your organization.
The repository is not a version control system. Use Git to track code changes and enable collaboration.
@@ -106,12 +103,6 @@ To publish the tool:
crewai tool publish
```
By default, tools are published as private. To make a tool public:
```bash
crewai tool publish --public
```
For more details on how to build tools, see [Creating your own tools](/en/concepts/tools#creating-your-own-tools).
## Updating Tools