Skip to content

[`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, )

get_file_toolsGet the standard file manipulation tools.
get_scraping_toolsGet the web scraping tools.
get_all_toolsGet all available tools.
__all__

Get the standard file manipulation tools.

Returns: List of file tool instances

Get the web scraping tools.

Returns: List of scraping tool instances

Get all available tools.

Returns file and scraping tools. For Meshy tools, use mesh_toolkit.agent_tools.crewai.

Returns: List of all tool instances

[‘DirectoryListTool’, ‘GameCodeReaderTool’, ‘GameCodeWriterTool’, ‘CrawlWebsiteTool’, ‘ScrapeWebsite…