1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/src/infrastructure/hands/__init__.py

18 lines
498 B
Python

"""Hands — local execution capabilities for Timmy.
Unlike OpenFang (vendored binary sidecar), these hands run in-process
and provide direct shell and git execution with sandboxing and approval
gates.
Usage:
from infrastructure.hands import shell_hand, git_hand
result = await shell_hand.run("make test")
result = await git_hand.run("status")
"""
from infrastructure.hands.git import git_hand
from infrastructure.hands.shell import shell_hand
__all__ = ["shell_hand", "git_hand"]