feat(tools): add minio prefix sync into memory

This commit is contained in:
William Valentin
2026-02-16 14:21:18 -08:00
parent 0be93c20b5
commit 22f225998f
10 changed files with 434 additions and 4 deletions
+3 -1
View File
@@ -41,6 +41,7 @@ const PROFILE_TOOLS: Record<ToolProfile, Set<string>> = {
'cron.delete',
'minio.share',
'minio.ingest',
'minio.sync',
]),
coding: new Set([
'file.read',
@@ -71,6 +72,7 @@ const PROFILE_TOOLS: Record<ToolProfile, Set<string>> = {
'cron.delete',
'minio.share',
'minio.ingest',
'minio.sync',
'file.write',
'file.edit',
'file.patch',
@@ -106,7 +108,7 @@ export const TOOL_GROUPS: Record<string, string[]> = {
'group:gdrive': ['drive.list', 'drive.search', 'drive.read'],
'group:gtasks': ['tasks.lists', 'tasks.list'],
'group:cron': ['cron.list', 'cron.trigger', 'cron.create', 'cron.delete'],
'group:minio': ['minio.share', 'minio.ingest'],
'group:minio': ['minio.share', 'minio.ingest', 'minio.sync'],
};
/** Expand group references in a list of tool names/patterns. */