From 71c7293197726af89048256945f8faebcacf080e Mon Sep 17 00:00:00 2001 From: Iris Clawd Date: Thu, 14 May 2026 12:45:01 +0000 Subject: [PATCH] docs: remove --public flag references (public tools no longer supported) Remove all references to --public visibility flag since public tools have been removed from the platform (crewai-plus#2380, ENG-1453). Tools are now organization-scoped (private) by default. Co-authored-by: Diego Nogues --- docs/en/guides/tools/platform-tools-cli.mdx | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/docs/en/guides/tools/platform-tools-cli.mdx b/docs/en/guides/tools/platform-tools-cli.mdx index decb74ca9..d571647cb 100644 --- a/docs/en/guides/tools/platform-tools-cli.mdx +++ b/docs/en/guides/tools/platform-tools-cli.mdx @@ -7,7 +7,7 @@ mode: "wide" ## Overview -The CrewAI CLI provides commands to manage custom tools on the **CrewAI platform** — a hosted tool registry that lets you share tools within your organization and across the community without publishing to PyPI. +The CrewAI CLI provides commands to manage custom tools on the **CrewAI platform** — a hosted tool registry that lets you share tools within your organization without publishing to PyPI. | Command | Purpose | |---------|---------| @@ -68,21 +68,13 @@ From your tool project directory, publish it to the CrewAI platform: crewai tool publish ``` -### Visibility Options +### Options | Flag | Description | |------|-------------| -| `--public` | Make the tool available to all platform users | -| `--private` | Restrict visibility to your organization | | `--force` | Bypass Git remote validations | -```bash -# Publish as a public tool -crewai tool publish --public - -# Publish privately (organization only) -crewai tool publish --private -``` +Tools are published privately to your organization by default. --- @@ -112,7 +104,7 @@ cd weather_lookup # ... edit the tool file ... # 4. Publish to the platform -crewai tool publish --public +crewai tool publish # 5. In another project, install and use it crewai tool install weather_lookup @@ -128,7 +120,7 @@ crewai tool install weather_lookup | **Registry** | CrewAI platform | PyPI | | **Install** | `crewai tool install ` | `pip install ` | | **Auth** | `crewai login` | PyPI account + token | -| **Visibility** | `--public` / `--private` flags | Always public | +| **Visibility** | Organization-scoped (private) | Always public | | **Guide** | This page | [Publish Custom Tools](/en/guides/tools/publish-custom-tools) | ---