- Add Vite as alternative build (vite.config.ts, scripts/vite-plugin-*)
- Add dab04af7 RSS fix (distRoot, ripgrep path, post-build)
- Pull in packages/builtin-tools/ (+354 files)
- Pull in packages/agent-tools/, mcp-client/, acp-link/, weixin/
- Copy defines.ts from upstream for Vite compatibility
- Update package.json with Vite scripts and deps
19 lines
402 B
TypeScript
19 lines
402 B
TypeScript
// agent-tools — Tool interface definitions and registry utilities
|
|
// Pure types + pure functions, zero runtime dependencies
|
|
|
|
export type {
|
|
AnyObject,
|
|
ToolInputJSONSchema,
|
|
ToolProgressData,
|
|
ToolProgress,
|
|
ToolCallProgress,
|
|
ToolResult,
|
|
ValidationResult,
|
|
PermissionResult,
|
|
CoreTool,
|
|
Tool,
|
|
Tools,
|
|
} from './types.js'
|
|
|
|
export { findToolByName, toolMatchesName } from './registry.js'
|