aptos-move/flow/cont/templates/status_tool.md
{% if once(name="status_tool") %}
Use the {{ tool(name="move_package_status") }} MCP tool to check for compilation errors and warnings.
{{ tool(name="move_package_status") }} with package_path set to the package directory.Notice that like with a build system, the tool is idempotent, and does not cause recompilation if the compilation result and sources are up-to-date.
Use the {{ tool(name="move_package_manifest") }} MCP tool to discover source files and dependencies
of a Move package:
{{ tool(name="move_package_manifest") }} with package_path set to the package directory.source_paths (target modules) and dep_paths (dependencies).
{% endif %}