[`agentic_crew.tools`](#module-agentic_crew.tools)
Custom tools for CrewAI game development crews.
This module provides file manipulation and web scraping tools.
For Meshy 3D asset generation tools, use mesh-toolkit directly: from mesh_toolkit.agent_tools.crewai import get_tools as get_meshy_tools
Usage: from agentic_crew.tools import ( GameCodeReaderTool, GameCodeWriterTool, DirectoryListTool, CrawlWebsiteTool, ScrapeWebsiteTool, get_all_tools, )
Submodules
Section titled “Submodules”Package Contents
Section titled “Package Contents”Functions
Section titled “Functions”get_file_tools | Get the standard file manipulation tools. |
|---|---|
get_scraping_tools | Get the web scraping tools. |
get_all_tools | Get all available tools. |
__all__ |
|---|
agentic_crew.tools.get_file_tools()
Section titled “agentic_crew.tools.get_file_tools()”Get the standard file manipulation tools.
Returns: List of file tool instances
agentic_crew.tools.get_scraping_tools()
Section titled “agentic_crew.tools.get_scraping_tools()”Get the web scraping tools.
Returns: List of scraping tool instances
agentic_crew.tools.get_all_tools()
Section titled “agentic_crew.tools.get_all_tools()”Get all available tools.
Returns file and scraping tools. For Meshy tools, use mesh_toolkit.agent_tools.crewai.
Returns: List of all tool instances
agentic_crew.tools.__all__
Section titled “agentic_crew.tools.__all__”[‘DirectoryListTool’, ‘GameCodeReaderTool’, ‘GameCodeWriterTool’, ‘CrawlWebsiteTool’, ‘ScrapeWebsite…