yoi/crates/tools
2026-06-05 06:25:54 +09:00
..
src feat: add pod feature registry slice 2026-06-05 06:25:54 +09:00
tests feat: add web search and fetch tools 2026-05-29 17:58:11 +09:00
Cargo.toml secrets: add local key store 2026-06-01 07:07:39 +09:00
README.md docs: reorganize developer documentation 2026-06-01 20:59:32 +09:00

tools

Role

tools implements built-in tools and shared tool execution helpers used by Pods.

Boundaries

Owns:

  • built-in filesystem, web, memory, and Pod-management tool implementations where applicable
  • bounded tool output formatting
  • scope-aware file operation helpers
  • tool-facing diagnostics suitable for history/model consumption

Does not own:

  • manifest permission policy definition (manifest)
  • Worker tool-loop semantics (llm-worker)
  • Pod lifecycle decisions (pod)
  • UI presentation (tui)

Design notes

A tool implementation must assume model input is untrusted. Permission policy, scope checks, output bounding, and redaction are part of the safety boundary, not optional UI behavior.

See also