(handle: str)
| 652 | @tool.command(name="create") |
| 653 | @click.argument("handle") |
| 654 | def tool_create(handle: str) -> None: |
| 655 | from crewai_cli.tools.main import ToolCommand |
| 656 | |
| 657 | tool_cmd = ToolCommand() |
| 658 | tool_cmd.create(handle) |
| 659 | |
| 660 | |
| 661 | @tool.command(name="install") |
nothing calls this directly
no test coverage detected