import { Settings } from '../types/index.js'; export { buildCustomTools } from './self-modify.js'; export { startScheduler } from './scheduler.js'; import '@strands-agents/sdk'; /** * tools/index.ts — Single entry point for all careless v2 tools. * * buildTools(settings) returns full tool array based on feature flags * AND per-tool enable/disable from settings.disabledTools. */ /** Tool catalog — grouped for UI enable/disable in Settings > Tools */ declare const TOOL_GROUPS: { id: string; label: string; tools: any[]; }[]; /** Flat list of every tool name — for the per-tool toggle UI. */ declare function getAllToolNames(): string[]; declare function buildTools(settings: Settings): any[]; export { TOOL_GROUPS, buildTools, getAllToolNames };