Tools and Managed Bifrost
Anvil combines built-in execution tools with tools supplied by MCP servers. The model-facing catalog is assembled per session and permission policy applies to every call.
Built-In Tools
Section titled “Built-In Tools”Core tools cover file reading and writing, targeted edits, directory listing, text search, web search, and shell execution. Path validation keeps built-in file operations inside the session working directory; shell execution follows the selected permission and sandbox strategy.
Use the tool that matches the question:
- file reads for a known non-source file or exact range;
- text search for strings, configuration, logs, and prose;
- Bifrost symbol tools for declarations, source, references, and callers; and
- shell commands for repository-native checks and workflows.
Managed Bifrost
Section titled “Managed Bifrost”Anvil preconfigures an enabled local Bifrost MCP server:
<managed-bifrost> --root {cwd} --mcp core --no-line-numbersOn first use, Anvil downloads the pinned release for the current platform, verifies its checksum, and caches it under the Anvil configuration directory. Network failure prevents that cold start; later sessions reuse the cached binary.
The managed toolset includes code-intelligence operations such as:
search_symbolsfor declarations;get_symbol_sourcesfor exact implementation blocks;get_summariesfor API shape and orientation;scan_usages_by_referenceor its compatible usage form for references and callers;most_relevant_filesfor repository relationships; and- bounded filename and file-list discovery.
Tool names can evolve with the pinned Bifrost release. Use the advertised session catalog rather than assuming a tool exists from an older screenshot.
Evidence Boundaries
Section titled “Evidence Boundaries”A visible Bifrost call proves the configured analyzer answered that request; it does not prove every runtime target, path-sensitive behavior, or whole-program property. Inspect truncation, ambiguity, and diagnostics when present. A candidate importer file is not proof of an actual callsite, and text similarity is not declaration identity.
The ten-minute evaluation deliberately requires named Bifrost tools so a plausible model answer cannot pass by ordinary file reading.
Restrict the Catalog
Section titled “Restrict the Catalog”An optional allowed_tools array in setup.json filters exact tool names after built-in, MCP, skill, and dynamic tools have been assembled:
{ "allowed_tools": ["read_file", "grep_search", "search_symbols", "task"]}Unknown names are ignored. Omitting the field preserves the full catalog; an empty array disables every model-callable tool.