hex_ai_tools

Hex AI 工具系统 - 文件操作、Bash 执行、搜索等 agent 工具定义。

特性

  • AgentTool 统一工具定义(name / description / params / execute)
  • Read / Write / Edit / Bash / Glob / Grep 基础工具
  • 工具注册与去重

使用

import 'package:hex_ai_tools/hex_ai_tools.dart';

final tool = AgentTool(
  name: 'read',
  description: '读取文件',
  params: {...},
  execute: (args) async => ...,
);

或通过 hex_ai_agent 统一入口访问。

Libraries

hex_ai_tools
Hex AI Tools — tool definitions and execution for the agent system.