Files
vibn-agent-runner/src/tools/index.ts
mawkone ecd207108c feat: add web_search tool to Atlas using Jina AI free search
Atlas can now search the internet during product discovery conversations
to research competitors, pricing models, and market context. Uses Jina
AI's free search endpoint — no API key required.

Made-with: Cursor
2026-03-01 20:10:53 -08:00

18 lines
672 B
TypeScript

// Import domain files first — side effects register each tool into the registry.
// Order determines ALL_TOOLS array order (informational only).
import './file';
import './shell';
import './git';
import './gitea';
import './coolify';
import './agent';
import './memory';
import './skills';
import './prd';
import './search';
// Re-export the public API — identical surface to the old tools.ts
export { ALL_TOOLS, executeTool, ToolDefinition } from './registry';
export { ToolContext, MemoryUpdate } from './context';
export { PROTECTED_GITEA_REPOS, PROTECTED_COOLIFY_PROJECT, PROTECTED_COOLIFY_APPS, assertGiteaWritable, assertCoolifyDeployable } from './security';