import { createRegistry } from '../../registry.js'; import { searchTool } from '../search.js'; import { listActionsTool, proposeActionTool } from './actions.js'; import { infraAuditTool } from './infra_audit.js'; // read (search) + her action tools + infra sanity check. No propose_change // (she fixes infra, not content). export const blueRegistry = createRegistry(); blueRegistry.registerTool(searchTool); blueRegistry.registerTool(listActionsTool); blueRegistry.registerTool(proposeActionTool); blueRegistry.registerTool(infraAuditTool);