velaclaw 0.3.0

Protocol-driven autonomous AI agent runtime with intelligent model selection and multi-model negotiation.
"""
Built-in tools for VelaClaw agents.
"""

from .base import tool
from .shell import shell
from .file import file_read, file_write
from .web import web_search, http_request
from .memory import memory_store, memory_recall

__all__ = [
    "tool",
    "shell",
    "file_read",
    "file_write",
    "web_search",
    "http_request",
    "memory_store",
    "memory_recall",
]