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
18 lines
672 B
TypeScript
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';
|