# Conflicts: # AGENTS.md # pi-tool-search/CHANGELOG.md # pi-tool-search/docs/dynamic-tool-loading.md
3.3 KiB
Current dynamic tool-group loading
pi-tool-search keeps full low-frequency schemas hidden behind a compact, validated group catalog.
session_startactivatestool_search, the six Pi core tools, and configuredalwaysEnablednames. These pinned tools do not consume the dynamic-group budget.- Hidden definitions are hashed with grouping constraints and matched against
extensions/bundle-groups.ts. Available standard tools receive checked-in groups; unavailable optional tools are omitted. - If every hidden tool is recognized, the bundle catalog is used directly. No model call or per-user cache is required.
- Additional tools receive immediate deterministic prefix/source groups. A matching model-enriched cache is reused only if it preserves all checked-in bundle assignments.
- Only a hybrid catalog with unrecognized tools can call
ModelRegistry.complete(). The prompt marks bundle assignments as fixed; validation rejects any response that moves them. - Code validation still requires every exact tool name exactly once and rejects unknown names, duplicates, oversized generated groups, omissions, and tool-card/group mismatches. Generated text never changes executable schemas.
- Loading a group calls
setActiveTools()with its original full tool definitions. Pi supplies newly added schemas on the next model request. - Group load and member execution update an in-session LRU counter. Loading past
maxActiveGroupsormaxDynamicToolsremoves the least-recently-used dynamic groups. turn_startnotices tool or grouping-configuration changes by hash, resets stale dynamic groups, and reconstructs the checked-in/hybrid catalog.
The standard bundle assigns the official Hippo Pi extension's five hippo_* tools to recall and management groups. context_tree_query remains in memory-recall because it recovers condensed tool output; retired Hermes names and third-party tff-memory_* names are not seeded.
The maintained pi-ssh tools are also split by workflow: sequential reviewed agent-controlled connection lives in ssh-connection, structured ssh_read/ssh_write/ssh_edit file operations live in ssh-remote-files, bounded ssh_find/ssh_grep discovery lives in ssh-remote-search, and sequential reviewed workspace changes plus reviewed command execution live in ssh-remote-shell. The workflows tell the model to call ssh_connect or ssh_cd separately and wait for success before issuing remote calls that depend on the new connection or cwd.
The maintained ask_user_question tool has its own user-interaction group so the model can load the complete interactive schema only when a missing decision or preference must come from the user.
A purely additive first load receives Pi's native dynamic-tool result propagation. A replacement that evicts one group while adding another is intentionally non-additive; current Pi detects the removal and uses its safe next-request fallback instead of attaching an invalid additive-only hint.
A model cannot call a schema it had not received in an already-generated assistant response. tool_search therefore returns normally, and the next model request sees the activated group's complete schemas. No provider payload rewriting, proxy dispatch, hidden steer message, old package alias, or duplicate Pi runtime is used.