galet-tools
Self-contained generic tool handlers and the handler framework they run on.
Lineage
This package is extracted from the Lucy monorepo (src/handlers) as described
in the Lucy design doc software/ai/lucy/design/handlers-extraction.md and
the plan software/ai/lucy/plan/handlers-extraction.md.
It is a fresh repository with no shared git history. Handler logic moves
verbatim; the only intentional changes are the import namespace
(src.handlers.* -> galet_tools.*) and the configuration boundary: tools
depend on narrow port interfaces owned by this package (ConfigProvider,
StorageLocationResolver, SandboxRootResolver, SecurityPolicy, ...),
never on Lucy's ConfigManager. Lucy implements those ports at its
composition root.
Features
- Handler framework —
HandlerV2ABC,HandlerRegistry, schema handling, and permission filtering. - Generic tools —
file_load,file_save,patch_apply,execute_command,generate_svg, andgenerate_image, registered under their existing names.file_loadsupports bounded line-range reads. - Ports — sibling-owned interfaces the host implements, keeping the tools free of any host dependency.
- Handler discovery — installed packages can contribute handlers through Python package entry points without changing Lucy or galet-tools.
Quick start
python -m venv .venv
.venv/bin/pip install -e .
Run the suite:
python -m pytest -q
Using the registry in a host
Galet owns the handler contract and base registry. A host such as Lucy composes the generic handlers, its own host-specific handlers, and installed extension packages:
from galet_tools import HandlerRegistry, register_installed_handlers
from galet_tools.register_generic_defaults import register_generic_defaults
registry = HandlerRegistry()
register_generic_defaults(registry)
register_lucy_handlers(registry)
register_installed_handlers(registry)
Discovery adds installed capabilities to the registry; it does not grant them to an agent. The host should continue to apply its agent and context allowlists when selecting tool definitions.
Creating a handler extension
An extension package declares a registrar in its pyproject.toml:
[project.entry-points."galet_tools.handlers"]
web = "galet_web_tools:register"
The target is a callable that receives the shared registry:
def register(registry):
registry.register(SearchHandler)
registry.register(FetchHandler)
Entry points are loaded in deterministic name order. A plugin that cannot be
loaded, does not resolve to a callable, or fails during registration raises
HandlerPluginError with the responsible entry-point name. This is
intentionally fail-fast so a host cannot start with an unexpectedly incomplete
tool set.
MCP server
An optional MCP (Model Context Protocol) server exposes the six generic tools over streamable HTTP. Install the extra:
.venv/bin/pip install -e '.[mcp]'
Copy the example config and start the server:
cp galet-mcp.example.json galet-mcp.json
galet-tools-mcp
galet-tools-mcp reads galet-mcp.json from the current directory by
default; point it elsewhere with --config <path>.
Configuration
galet-mcp.json mirrors galet-mcp.example.json. Required keys are
account, storage_root, storage_namespace, and sandbox_root; a
null, blank, or (for the two path keys) relative value fails validation.
Optional keys left out or set to null fall back to their defaults:
allowlist— tools to expose; default is all six (file_load,file_save,patch_apply,execute_command,generate_svg,generate_image).external_roots— named external roots the tools may access; default none.host— default127.0.0.1; loopback only.port— default8765.fonts— font paths for the generators; default none.
What it exposes
tools/list and tools/call over streamable HTTP at
http://127.0.0.1:8765/mcp.
Smoke-test from the CLI
galet-tools-smoke is the end-to-end CLI client: it connects over HTTP
(streamable HTTP) to a running galet MCP server using the official MCP SDK
and performs real tools/list and tools/call round trips.
galet-tools-smoke list
galet-tools-smoke list --json
galet-tools-smoke call <tool> '<json args>'
The default URL is http://127.0.0.1:8765/mcp; override it with --url.
The default read timeout is 30s; override it with --timeout.
Example round trip (storage root from galet-mcp.json):
galet-tools-smoke call file_save '{"path":"smoke/hello.txt","file_content":"hello galet smoke"}'
galet-tools-smoke call file_load '{"path":"smoke/hello.txt"}'
galet-tools-smoke call execute_command '{"command":"pwd","working_directory":"."}'
Exit codes: 0 ok; 1 tool reported an error (isError); 2 usage or
bad JSON; 3 could not reach the server.
Fail-closed behaviour
The server refuses to start when the allowlist is empty or has no overlap with the registered tools, and only the advertised tools are callable. Unknown tool names in the allowlist fail validation.
Security
Binding is loopback-only by design: host must resolve to a loopback
address. Remote access needs a separate reverse-proxy design.
License
MIT — see LICENSE.
Release files for galet-tools 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| galet_tools-0.1.0.tar.gz | 56.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| galet_tools-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 107.1 kB
Release files / galet_tools-0.1.0.tar.gz
| Download URL | galet_tools-0.1.0.tar.gz |
|---|---|
| Size | 56.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
dc6b16bcec3e900859783c808f3d5ea05fad07c7c6a7f78a2c307271afeb5957
|
|
BLAKE2b-256 checksum How to use checksums |
3a234f5cb6706fad6156ec6ecceefe5927034dc592668cd1a1859382880b13f8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"12","id":"bookworm","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
|
Release files / galet_tools-0.1.0-py3-none-any.whl
| Download URL | galet_tools-0.1.0-py3-none-any.whl |
|---|---|
| Size | 50.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2b7d270a828ec3bf5d9f11e3cf2cd2bec9eec71b5d39f30fc73f505a3e489d8b
|
|
BLAKE2b-256 checksum How to use checksums |
cc2aa065274ee00b01c2bd08e5219723574a214d809989497e8a0daeab8d712e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"12","id":"bookworm","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
|