feat(tools): add minio ingestion into memory namespaces

This commit is contained in:
William Valentin
2026-02-16 14:17:52 -08:00
parent 3203c1f3fe
commit 0be93c20b5
10 changed files with 407 additions and 8 deletions
+3 -1
View File
@@ -40,6 +40,7 @@ const PROFILE_TOOLS: Record<ToolProfile, Set<string>> = {
'cron.create',
'cron.delete',
'minio.share',
'minio.ingest',
]),
coding: new Set([
'file.read',
@@ -69,6 +70,7 @@ const PROFILE_TOOLS: Record<ToolProfile, Set<string>> = {
'cron.create',
'cron.delete',
'minio.share',
'minio.ingest',
'file.write',
'file.edit',
'file.patch',
@@ -104,7 +106,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'],
'group:minio': ['minio.share', 'minio.ingest'],
};
/** Expand group references in a list of tool names/patterns. */