test_all_builtin_tools

Installation
SKILL.md
import asyncio
from builtin.tools.registry import execute_builtin_tool

async def main():
    print("--- Starting Built-in Tool Integration Test ---")
    
    test_dir = "test_skill_workspace"
    test_file = f"{test_dir}/test_file.txt"
    
    # 0. Cleanup from previous runs
    print("\n[Phase 0: Cleanup]")
    cleanup_result = await execute_builtin_tool("bash", {"command": f"rm -rf {test_dir}"})
    print(f"Cleanup result: {cleanup_result}")
Related skills

More from memento-teams/memento-skills

Installs
3
GitHub Stars
1.3K
First Seen
Apr 1, 2026