@lobehub/lobehub 2.0.0-next.338 → 2.0.0-next.339

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (257) hide show
  1. package/.gitattributes +35 -0
  2. package/CHANGELOG.md +44 -0
  3. package/changelog/v1.json +15 -0
  4. package/locales/ar/plugin.json +12 -2
  5. package/locales/ar/providers.json +1 -0
  6. package/locales/ar/setting.json +77 -1
  7. package/locales/bg-BG/models.json +5 -10
  8. package/locales/bg-BG/plugin.json +12 -2
  9. package/locales/bg-BG/providers.json +1 -0
  10. package/locales/bg-BG/setting.json +78 -2
  11. package/locales/de-DE/models.json +51 -9
  12. package/locales/de-DE/plugin.json +12 -2
  13. package/locales/de-DE/providers.json +1 -0
  14. package/locales/de-DE/setting.json +78 -2
  15. package/locales/en-US/models.json +11 -10
  16. package/locales/en-US/plugin.json +14 -4
  17. package/locales/en-US/providers.json +1 -0
  18. package/locales/en-US/setting.json +78 -2
  19. package/locales/es-ES/plugin.json +12 -2
  20. package/locales/es-ES/providers.json +1 -0
  21. package/locales/es-ES/setting.json +78 -2
  22. package/locales/fa-IR/plugin.json +12 -2
  23. package/locales/fa-IR/providers.json +1 -0
  24. package/locales/fa-IR/setting.json +78 -2
  25. package/locales/fr-FR/plugin.json +12 -2
  26. package/locales/fr-FR/providers.json +1 -0
  27. package/locales/fr-FR/setting.json +78 -2
  28. package/locales/it-IT/plugin.json +12 -2
  29. package/locales/it-IT/providers.json +1 -0
  30. package/locales/it-IT/setting.json +78 -2
  31. package/locales/ja-JP/plugin.json +12 -2
  32. package/locales/ja-JP/providers.json +1 -0
  33. package/locales/ja-JP/setting.json +78 -2
  34. package/locales/ko-KR/plugin.json +12 -2
  35. package/locales/ko-KR/providers.json +1 -0
  36. package/locales/ko-KR/setting.json +78 -2
  37. package/locales/nl-NL/models.json +4 -9
  38. package/locales/nl-NL/plugin.json +12 -2
  39. package/locales/nl-NL/providers.json +1 -0
  40. package/locales/nl-NL/setting.json +78 -2
  41. package/locales/pl-PL/plugin.json +12 -2
  42. package/locales/pl-PL/providers.json +1 -0
  43. package/locales/pl-PL/setting.json +78 -2
  44. package/locales/pt-BR/plugin.json +12 -2
  45. package/locales/pt-BR/providers.json +1 -0
  46. package/locales/pt-BR/setting.json +78 -2
  47. package/locales/ru-RU/plugin.json +12 -2
  48. package/locales/ru-RU/providers.json +1 -0
  49. package/locales/ru-RU/setting.json +78 -2
  50. package/locales/tr-TR/plugin.json +12 -2
  51. package/locales/tr-TR/providers.json +1 -0
  52. package/locales/tr-TR/setting.json +78 -2
  53. package/locales/vi-VN/plugin.json +12 -2
  54. package/locales/vi-VN/providers.json +1 -0
  55. package/locales/vi-VN/setting.json +77 -1
  56. package/locales/zh-CN/plugin.json +12 -2
  57. package/locales/zh-CN/providers.json +1 -0
  58. package/locales/zh-CN/setting.json +78 -2
  59. package/locales/zh-TW/plugin.json +12 -2
  60. package/locales/zh-TW/providers.json +1 -0
  61. package/locales/zh-TW/setting.json +78 -2
  62. package/package.json +1 -1
  63. package/packages/agent-runtime/src/groupOrchestration/GroupOrchestrationSupervisor.ts +2 -0
  64. package/packages/agent-runtime/src/groupOrchestration/__tests__/GroupOrchestrationSupervisor.test.ts +3 -1
  65. package/packages/agent-runtime/src/groupOrchestration/types.ts +5 -0
  66. package/packages/const/src/index.ts +1 -0
  67. package/packages/const/src/klavis.ts +144 -0
  68. package/packages/const/src/lobehubSkill.ts +34 -0
  69. package/packages/const/src/recommendedSkill.ts +17 -0
  70. package/packages/model-runtime/src/core/contextBuilders/anthropic.test.ts +38 -0
  71. package/packages/model-runtime/src/core/contextBuilders/anthropic.ts +20 -1
  72. package/packages/model-runtime/src/core/contextBuilders/google.test.ts +42 -0
  73. package/packages/model-runtime/src/core/contextBuilders/google.ts +17 -0
  74. package/scripts/electronWorkflow/modifiers/dynamicToStatic.mts +273 -0
  75. package/scripts/electronWorkflow/modifiers/index.mts +10 -0
  76. package/scripts/electronWorkflow/modifiers/nextConfig.mts +1 -0
  77. package/scripts/electronWorkflow/modifiers/nextDynamicToStatic.mts +233 -0
  78. package/scripts/electronWorkflow/modifiers/removeSuspense.mts +124 -0
  79. package/scripts/electronWorkflow/modifiers/routes.mts +14 -2
  80. package/scripts/electronWorkflow/modifiers/settingsContentToStatic.mts +148 -0
  81. package/scripts/electronWorkflow/modifiers/wrapChildrenWithClientOnly.mts +73 -0
  82. package/src/app/[variants]/(main)/home/features/InputArea/SkillInstallBanner.tsx +131 -0
  83. package/src/app/[variants]/(main)/home/features/InputArea/index.tsx +34 -27
  84. package/src/app/[variants]/(main)/settings/features/SettingHeader.tsx +8 -4
  85. package/src/app/[variants]/(main)/settings/features/SettingsContent.tsx +3 -0
  86. package/src/app/[variants]/(main)/settings/hooks/useCategory.tsx +6 -0
  87. package/src/{features/PluginStore/InstalledList/List/Item/Action.tsx → app/[variants]/(main)/settings/skill/features/Actions.tsx} +45 -40
  88. package/src/app/[variants]/(main)/settings/skill/features/KlavisSkillItem.tsx +353 -0
  89. package/src/app/[variants]/(main)/settings/skill/features/LobehubSkillItem.tsx +344 -0
  90. package/src/app/[variants]/(main)/settings/skill/features/McpSkillItem.tsx +116 -0
  91. package/src/app/[variants]/(main)/settings/skill/features/SkillList.tsx +244 -0
  92. package/src/app/[variants]/(main)/settings/skill/index.tsx +35 -0
  93. package/src/components/Plugins/PluginTag.tsx +23 -35
  94. package/src/components/client/ClientOnly.tsx +6 -2
  95. package/src/features/AgentSetting/AgentPlugin/index.tsx +2 -2
  96. package/src/features/ChatInput/ActionBar/Tools/KlavisServerItem.tsx +8 -32
  97. package/src/features/ChatInput/ActionBar/Tools/LobehubSkillServerItem.tsx +8 -30
  98. package/src/features/ChatInput/ActionBar/Tools/PopoverContent.tsx +48 -59
  99. package/src/features/ChatInput/ActionBar/Tools/index.tsx +5 -23
  100. package/src/features/ChatInput/ActionBar/Tools/useControls.tsx +158 -56
  101. package/src/features/IntegrationDetailModal/index.tsx +293 -0
  102. package/src/features/{PluginStore/McpList/Detail → MCP/MCPDetail}/index.tsx +15 -6
  103. package/src/features/MCP/MCPSettings/McpSettingsModal.tsx +58 -0
  104. package/src/features/{PluginStore/McpList/Detail/Settings → MCP/MCPSettings}/index.tsx +39 -27
  105. package/src/features/PluginDetailModal/index.tsx +2 -2
  106. package/src/features/PluginDevModal/index.tsx +16 -40
  107. package/src/features/ProfileEditor/AgentTool.tsx +2 -2
  108. package/src/features/ProtocolUrlHandler/InstallPlugin/OfficialPluginInstallModal/index.tsx +1 -1
  109. package/src/features/{PluginStore/AddPluginButton.tsx → SkillStore/AddSkillButton.tsx} +3 -3
  110. package/src/features/SkillStore/CommunityList/Item.tsx +158 -0
  111. package/src/features/SkillStore/CommunityList/index.tsx +101 -0
  112. package/src/features/SkillStore/Content.tsx +59 -0
  113. package/src/features/{PluginStore/PluginEmpty.tsx → SkillStore/Empty.tsx} +8 -8
  114. package/src/features/SkillStore/LobeHubList/Item.tsx +118 -0
  115. package/src/features/SkillStore/LobeHubList/index.tsx +187 -0
  116. package/src/features/SkillStore/LobeHubList/useSkillConnect.ts +239 -0
  117. package/src/features/SkillStore/Search/index.tsx +43 -0
  118. package/src/features/{PluginStore → SkillStore}/index.tsx +14 -10
  119. package/src/features/SkillStore/style.ts +27 -0
  120. package/src/locales/default/plugin.ts +15 -4
  121. package/src/locales/default/setting.ts +185 -2
  122. package/src/services/chat/mecha/agentConfigResolver.test.ts +197 -0
  123. package/src/services/chat/mecha/agentConfigResolver.ts +44 -17
  124. package/src/store/chat/agents/GroupOrchestration/createGroupOrchestrationExecutors.ts +40 -37
  125. package/src/store/chat/slices/aiChat/actions/__tests__/streamingExecutor.test.ts +78 -0
  126. package/src/store/chat/slices/aiChat/actions/streamingExecutor.ts +50 -16
  127. package/src/store/global/initialState.ts +1 -0
  128. package/src/store/tool/slices/lobehubSkillStore/action.test.ts +914 -0
  129. package/src/store/tool/slices/lobehubSkillStore/selectors.test.ts +548 -0
  130. package/.cursor/skills/vercel-react-best-practices/AGENTS.md +0 -2410
  131. package/.cursor/skills/vercel-react-best-practices/SKILL.md +0 -125
  132. package/.cursor/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +0 -55
  133. package/.cursor/skills/vercel-react-best-practices/rules/advanced-use-latest.md +0 -49
  134. package/.cursor/skills/vercel-react-best-practices/rules/async-api-routes.md +0 -38
  135. package/.cursor/skills/vercel-react-best-practices/rules/async-defer-await.md +0 -80
  136. package/.cursor/skills/vercel-react-best-practices/rules/async-dependencies.md +0 -36
  137. package/.cursor/skills/vercel-react-best-practices/rules/async-parallel.md +0 -28
  138. package/.cursor/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +0 -99
  139. package/.cursor/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +0 -59
  140. package/.cursor/skills/vercel-react-best-practices/rules/bundle-conditional.md +0 -31
  141. package/.cursor/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +0 -49
  142. package/.cursor/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +0 -35
  143. package/.cursor/skills/vercel-react-best-practices/rules/bundle-preload.md +0 -50
  144. package/.cursor/skills/vercel-react-best-practices/rules/client-event-listeners.md +0 -74
  145. package/.cursor/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +0 -71
  146. package/.cursor/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +0 -48
  147. package/.cursor/skills/vercel-react-best-practices/rules/client-swr-dedup.md +0 -56
  148. package/.cursor/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +0 -57
  149. package/.cursor/skills/vercel-react-best-practices/rules/js-cache-function-results.md +0 -80
  150. package/.cursor/skills/vercel-react-best-practices/rules/js-cache-property-access.md +0 -28
  151. package/.cursor/skills/vercel-react-best-practices/rules/js-cache-storage.md +0 -70
  152. package/.cursor/skills/vercel-react-best-practices/rules/js-combine-iterations.md +0 -32
  153. package/.cursor/skills/vercel-react-best-practices/rules/js-early-exit.md +0 -50
  154. package/.cursor/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +0 -45
  155. package/.cursor/skills/vercel-react-best-practices/rules/js-index-maps.md +0 -37
  156. package/.cursor/skills/vercel-react-best-practices/rules/js-length-check-first.md +0 -49
  157. package/.cursor/skills/vercel-react-best-practices/rules/js-min-max-loop.md +0 -82
  158. package/.cursor/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +0 -24
  159. package/.cursor/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +0 -57
  160. package/.cursor/skills/vercel-react-best-practices/rules/rendering-activity.md +0 -26
  161. package/.cursor/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +0 -47
  162. package/.cursor/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +0 -40
  163. package/.cursor/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +0 -38
  164. package/.cursor/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +0 -46
  165. package/.cursor/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +0 -82
  166. package/.cursor/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +0 -28
  167. package/.cursor/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +0 -39
  168. package/.cursor/skills/vercel-react-best-practices/rules/rerender-dependencies.md +0 -45
  169. package/.cursor/skills/vercel-react-best-practices/rules/rerender-derived-state.md +0 -29
  170. package/.cursor/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +0 -74
  171. package/.cursor/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +0 -58
  172. package/.cursor/skills/vercel-react-best-practices/rules/rerender-memo.md +0 -44
  173. package/.cursor/skills/vercel-react-best-practices/rules/rerender-transitions.md +0 -40
  174. package/.cursor/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +0 -73
  175. package/.cursor/skills/vercel-react-best-practices/rules/server-cache-lru.md +0 -41
  176. package/.cursor/skills/vercel-react-best-practices/rules/server-cache-react.md +0 -76
  177. package/.cursor/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +0 -83
  178. package/.cursor/skills/vercel-react-best-practices/rules/server-serialization.md +0 -38
  179. package/src/features/PluginStore/Content.tsx +0 -54
  180. package/src/features/PluginStore/InstalledList/Detail/CustomPluginEmptyState.tsx +0 -79
  181. package/src/features/PluginStore/InstalledList/Detail/index.tsx +0 -21
  182. package/src/features/PluginStore/InstalledList/List/Item/index.tsx +0 -61
  183. package/src/features/PluginStore/InstalledList/List/index.tsx +0 -72
  184. package/src/features/PluginStore/InstalledList/index.tsx +0 -90
  185. package/src/features/PluginStore/McpList/List/Action.tsx +0 -119
  186. package/src/features/PluginStore/McpList/List/Item.tsx +0 -83
  187. package/src/features/PluginStore/McpList/List/index.tsx +0 -93
  188. package/src/features/PluginStore/McpList/index.tsx +0 -58
  189. package/src/features/PluginStore/PluginList/Detail/DetailProvider.tsx +0 -19
  190. package/src/features/PluginStore/PluginList/Detail/EmptyState.tsx +0 -56
  191. package/src/features/PluginStore/PluginList/Detail/Header.tsx +0 -130
  192. package/src/features/PluginStore/PluginList/Detail/InstallDetail/Nav.tsx +0 -73
  193. package/src/features/PluginStore/PluginList/Detail/InstallDetail/Settings.tsx +0 -19
  194. package/src/features/PluginStore/PluginList/Detail/InstallDetail/Tools.tsx +0 -111
  195. package/src/features/PluginStore/PluginList/Detail/InstallDetail/index.tsx +0 -24
  196. package/src/features/PluginStore/PluginList/Detail/Loading.tsx +0 -42
  197. package/src/features/PluginStore/PluginList/Detail/TagList.tsx +0 -35
  198. package/src/features/PluginStore/PluginList/Detail/index.tsx +0 -39
  199. package/src/features/PluginStore/PluginList/Detail/useCategory.tsx +0 -76
  200. package/src/features/PluginStore/PluginList/List/Action.tsx +0 -78
  201. package/src/features/PluginStore/PluginList/List/Item.tsx +0 -92
  202. package/src/features/PluginStore/PluginList/List/index.tsx +0 -94
  203. package/src/features/PluginStore/PluginList/index.tsx +0 -46
  204. package/src/features/PluginStore/Search/index.tsx +0 -40
  205. /package/{.codex/skills → .agents}/vercel-react-best-practices/AGENTS.md +0 -0
  206. /package/{.codex/skills → .agents}/vercel-react-best-practices/SKILL.md +0 -0
  207. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/advanced-event-handler-refs.md +0 -0
  208. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/advanced-use-latest.md +0 -0
  209. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/async-api-routes.md +0 -0
  210. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/async-defer-await.md +0 -0
  211. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/async-dependencies.md +0 -0
  212. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/async-parallel.md +0 -0
  213. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/async-suspense-boundaries.md +0 -0
  214. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/bundle-barrel-imports.md +0 -0
  215. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/bundle-conditional.md +0 -0
  216. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/bundle-defer-third-party.md +0 -0
  217. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/bundle-dynamic-imports.md +0 -0
  218. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/bundle-preload.md +0 -0
  219. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/client-event-listeners.md +0 -0
  220. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/client-localstorage-schema.md +0 -0
  221. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/client-passive-event-listeners.md +0 -0
  222. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/client-swr-dedup.md +0 -0
  223. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-batch-dom-css.md +0 -0
  224. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-cache-function-results.md +0 -0
  225. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-cache-property-access.md +0 -0
  226. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-cache-storage.md +0 -0
  227. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-combine-iterations.md +0 -0
  228. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-early-exit.md +0 -0
  229. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-hoist-regexp.md +0 -0
  230. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-index-maps.md +0 -0
  231. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-length-check-first.md +0 -0
  232. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-min-max-loop.md +0 -0
  233. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-set-map-lookups.md +0 -0
  234. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/js-tosorted-immutable.md +0 -0
  235. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rendering-activity.md +0 -0
  236. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +0 -0
  237. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rendering-conditional-render.md +0 -0
  238. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rendering-content-visibility.md +0 -0
  239. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rendering-hoist-jsx.md +0 -0
  240. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +0 -0
  241. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rendering-svg-precision.md +0 -0
  242. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rerender-defer-reads.md +0 -0
  243. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rerender-dependencies.md +0 -0
  244. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rerender-derived-state.md +0 -0
  245. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rerender-functional-setstate.md +0 -0
  246. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rerender-lazy-state-init.md +0 -0
  247. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rerender-memo.md +0 -0
  248. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/rerender-transitions.md +0 -0
  249. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/server-after-nonblocking.md +0 -0
  250. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/server-cache-lru.md +0 -0
  251. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/server-cache-react.md +0 -0
  252. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/server-parallel-fetching.md +0 -0
  253. /package/{.codex/skills → .agents}/vercel-react-best-practices/rules/server-serialization.md +0 -0
  254. /package/src/{features/PluginStore/InstalledList → app/[variants]/(main)/settings/skill/features}/EditCustomPlugin.tsx +0 -0
  255. /package/src/features/{PluginStore/McpList/Detail → MCP/MCPDetail}/Loading.tsx +0 -0
  256. /package/src/features/{PluginStore → SkillStore}/Loading.tsx +0 -0
  257. /package/src/features/{PluginStore → SkillStore}/VirtuosoLoading.tsx +0 -0
@@ -114,7 +114,7 @@
114
114
  "defaultAgent.model.desc": "Default model used when creating a new Agent",
115
115
  "defaultAgent.model.title": "Model",
116
116
  "defaultAgent.title": "Default Agent Settings",
117
- "group.aiConfig": "Model",
117
+ "group.aiConfig": "Agent",
118
118
  "group.common": "General",
119
119
  "group.profile": "Account",
120
120
  "group.subscription": "Subscription",
@@ -489,6 +489,14 @@
489
489
  "settingTTS.voice.desc": "Select a voice for the current agent, different TTS services support different voices",
490
490
  "settingTTS.voice.preview": "Voice Preview",
491
491
  "settingTTS.voice.title": "Text-to-Speech Voice",
492
+ "skillStore.button": "Skill Store",
493
+ "skillStore.empty": "Browse the Skill store. Install one to get started, add more later.",
494
+ "skillStore.emptySearch": "No matching Skills",
495
+ "skillStore.networkError": "Network error, please try again",
496
+ "skillStore.search": "Search skills by name or keyword, press Enter to search…",
497
+ "skillStore.tabs.community": "Community",
498
+ "skillStore.tabs.lobehub": "LobeHub",
499
+ "skillStore.title": "Skill Store",
492
500
  "startConversation": "Start Conversation",
493
501
  "storage.actions.export.button": "Export",
494
502
  "storage.actions.export.exportType.agent": "Export Agent Settings",
@@ -561,6 +569,7 @@
561
569
  "systemAgent.translation.modelDesc": "Specify the model used for translation",
562
570
  "systemAgent.translation.title": "Message Translation Agent",
563
571
  "tab.about": "About",
572
+ "tab.addCustomSkill": "Add custom skill",
564
573
  "tab.agent": "Agent Service",
565
574
  "tab.all": "All",
566
575
  "tab.apikey": "API Key Management",
@@ -575,6 +584,12 @@
575
584
  "tab.provider": "AI Service Provider",
576
585
  "tab.proxy": "Network Proxy",
577
586
  "tab.security": "Security",
587
+ "tab.skill": "Skill Management",
588
+ "tab.skillDesc": "Manage your connected skills and integrations",
589
+ "tab.skillDetail": "Skill Details",
590
+ "tab.skillEmpty": "No skills connected yet",
591
+ "tab.skillInstalled": "Installed Skills",
592
+ "tab.skillIntegration": "Integration",
578
593
  "tab.stats": "Analytics",
579
594
  "tab.storage": "Data Storage",
580
595
  "tab.sync": "Cloud Sync",
@@ -587,7 +602,10 @@
587
602
  "tools.klavis.authCompleted": "Authentication Completed",
588
603
  "tools.klavis.authFailed": "Authentication Failed",
589
604
  "tools.klavis.authRequired": "Authentication Required",
605
+ "tools.klavis.connect": "Connect",
590
606
  "tools.klavis.connected": "Connected",
607
+ "tools.klavis.disconnect": "Disconnect",
608
+ "tools.klavis.disconnected": "Disconnected",
591
609
  "tools.klavis.error": "Error",
592
610
  "tools.klavis.groupName": "Klavis Tools",
593
611
  "tools.klavis.manage": "Manage Klavis",
@@ -600,17 +618,75 @@
600
618
  "tools.klavis.serverCreatedFailed": "Failed to create server",
601
619
  "tools.klavis.serverRemoved": "Server removed",
602
620
  "tools.klavis.servers": "servers",
621
+ "tools.klavis.servers.airtable.description": "Airtable is a cloud-based database and spreadsheet platform that combines the flexibility of a spreadsheet with the power of a database, enabling teams to organize, track, and collaborate on projects with customizable views and powerful automation features",
622
+ "tools.klavis.servers.airtable.introduction": "Integrate with Airtable to manage your databases and workflows. Query records, create entries, update data, and automate operations with customizable views and powerful tracking features.",
623
+ "tools.klavis.servers.cal-com.description": "Cal.com is an open-source scheduling platform that helps you schedule meetings without the back-and-forth emails. Manage event types, bookings, availability, and integrate with calendars for seamless appointment scheduling",
624
+ "tools.klavis.servers.cal-com.introduction": "Connect to Cal.com to manage your scheduling and appointments. View availability, book meetings, manage event types, and automate your calendar through natural conversation.",
625
+ "tools.klavis.servers.clickup.description": "ClickUp is a comprehensive project management and productivity platform that helps teams organize tasks, manage projects, and collaborate effectively with customizable workflows and powerful tracking features",
626
+ "tools.klavis.servers.clickup.introduction": "Connect to ClickUp to manage tasks, track projects, and organize your work. Create tasks, update statuses, manage custom workflows, and collaborate with your team through natural language commands.",
627
+ "tools.klavis.servers.confluence.description": "Confluence is a team workspace where knowledge and collaboration meet",
628
+ "tools.klavis.servers.confluence.introduction": "Connect to Confluence to access and manage team documentation. Search pages, create content, organize spaces, and build your knowledge base through conversational AI assistance.",
629
+ "tools.klavis.servers.dropbox.description": "Complete file management solution for Dropbox cloud storage. Upload, download, organize files and folders, manage sharing and collaboration, handle file versions, create file requests, and perform batch operations on your Dropbox files and folders",
630
+ "tools.klavis.servers.dropbox.introduction": "Integrate with Dropbox to access and manage your files. Upload, download, share files, manage folders, handle file versions, and organize your cloud storage through conversational AI.",
631
+ "tools.klavis.servers.figma.description": "Figma is a collaborative interface design tool for web and mobile applications.",
632
+ "tools.klavis.servers.figma.introduction": "Connect to Figma to access design files and collaborate on projects. View designs, export assets, browse components, and manage your design workflow through natural conversation.",
633
+ "tools.klavis.servers.github.description": "Enhanced GitHub MCP Server",
634
+ "tools.klavis.servers.github.introduction": "Connect to GitHub to manage repositories, issues, pull requests, and code. Search code, review changes, create branches, and collaborate on software development projects through conversational AI.",
635
+ "tools.klavis.servers.gmail.description": "Gmail is a free email service provided by Google",
636
+ "tools.klavis.servers.gmail.introduction": "Bring the power of Gmail directly into your AI assistant. Read, compose, and send emails, search your inbox, manage labels, and organize your communications—all through natural conversation.",
637
+ "tools.klavis.servers.google-calendar.description": "Google Calendar is a time-management and scheduling calendar service",
638
+ "tools.klavis.servers.google-calendar.introduction": "Integrate Google Calendar to view, create, and manage your events seamlessly. Schedule meetings, set reminders, check availability, and coordinate your time—all through natural language commands.",
639
+ "tools.klavis.servers.google-docs.description": "Google Docs is a word processor included as part of the free, web-based Google Docs Editors suite",
640
+ "tools.klavis.servers.google-docs.introduction": "Integrate with Google Docs to create, edit, and manage documents. Write content, format text, collaborate in real-time, and access your documents through natural conversation.",
641
+ "tools.klavis.servers.google-drive.description": "Google Drive is a cloud storage service",
642
+ "tools.klavis.servers.google-drive.introduction": "Connect to Google Drive to access, organize, and manage your files. Search documents, upload files, share content, and navigate your cloud storage efficiently through AI assistance.",
643
+ "tools.klavis.servers.google-sheets.description": "Google Sheets is a web-based spreadsheet application that allows users to create, edit, and collaborate on spreadsheets online",
644
+ "tools.klavis.servers.google-sheets.introduction": "Connect to Google Sheets to read, write, and analyze spreadsheet data. Perform calculations, generate reports, create charts, and manage tabular data collaboratively with AI assistance.",
645
+ "tools.klavis.servers.hubspot.description": "HubSpot is a developer and marketer of software products for inbound marketing, sales, and customer service",
646
+ "tools.klavis.servers.hubspot.introduction": "Integrate with HubSpot to manage contacts, deals, and marketing campaigns. Access CRM data, track pipelines, automate workflows, and streamline your sales and marketing operations.",
647
+ "tools.klavis.servers.jira.description": "Jira is a project management and issue tracking tool developed by Atlassian",
648
+ "tools.klavis.servers.jira.introduction": "Integrate with Jira to manage issues, track progress, and organize sprints. Create tickets, update statuses, query project data, and streamline your development workflow through natural conversation.",
649
+ "tools.klavis.servers.notion.description": "Notion is a collaborative productivity and note-taking application",
650
+ "tools.klavis.servers.notion.introduction": "Connect to Notion to access and manage your workspace. Create pages, search content, update databases, and organize your knowledge base—all through natural conversation with your AI assistant.",
651
+ "tools.klavis.servers.onedrive.description": "OneDrive is a file hosting service and synchronization service operated by Microsoft",
652
+ "tools.klavis.servers.onedrive.introduction": "Connect to OneDrive to access and manage your Microsoft cloud files. Upload, download, share files, organize folders, and collaborate on documents through AI-powered assistance.",
653
+ "tools.klavis.servers.outlook-mail.description": "Outlook Mail is a web-based suite of webmail, contacts, tasks, and calendaring services from Microsoft.",
654
+ "tools.klavis.servers.outlook-mail.introduction": "Integrate with Outlook Mail to read, send, and manage your Microsoft emails. Search messages, compose emails, manage folders, and organize your inbox through natural conversation.",
655
+ "tools.klavis.servers.salesforce.description": "Salesforce is the world's leading customer relationship management (CRM) platform that helps businesses connect with customers, partners, and potential customers",
656
+ "tools.klavis.servers.salesforce.introduction": "Connect to Salesforce to manage customer relationships and sales data. Query records, update opportunities, track leads, and automate your CRM workflows through natural language commands.",
657
+ "tools.klavis.servers.slack.description": "Slack is a messaging app for business that connects people to the information they need",
658
+ "tools.klavis.servers.slack.introduction": "Integrate with Slack to send messages, search conversations, and manage channels. Connect with your team, automate communication workflows, and access workspace information through natural language.",
659
+ "tools.klavis.servers.supabase.description": "Supabase official MCP Server",
660
+ "tools.klavis.servers.supabase.introduction": "Integrate with Supabase to manage your database and backend services. Query data, manage authentication, handle storage, and interact with your application backend through natural conversation.",
661
+ "tools.klavis.servers.whatsapp.description": "WhatsApp Business API integration that enables sending text messages, media, and managing conversations with customers. Perfect for customer support, marketing campaigns, and automated messaging workflows through the official WhatsApp Business platform.",
662
+ "tools.klavis.servers.whatsapp.introduction": "Integrate with WhatsApp Business to send messages, manage conversations, and engage with customers. Automate messaging workflows and handle communications through conversational AI.",
663
+ "tools.klavis.servers.youtube.description": "YouTube is a video-sharing platform where users can upload, share, and discover content. Access video information, transcripts, and metadata programmatically.",
664
+ "tools.klavis.servers.youtube.introduction": "Connect to YouTube to search videos, access transcripts, and retrieve video information. Analyze content, extract metadata, and discover videos through natural conversation.",
665
+ "tools.klavis.servers.zendesk.description": "Zendesk is a customer service software company",
666
+ "tools.klavis.servers.zendesk.introduction": "Integrate with Zendesk to manage support tickets and customer interactions. Create, update, and track support requests, access customer data, and streamline your support operations.",
603
667
  "tools.klavis.tools": "tools",
604
668
  "tools.klavis.verifyAuth": "I have completed authentication",
605
669
  "tools.lobehubSkill.authorize": "Authorize",
606
670
  "tools.lobehubSkill.connect": "Connect",
671
+ "tools.lobehubSkill.connected": "Connected",
672
+ "tools.lobehubSkill.disconnect": "Disconnect",
673
+ "tools.lobehubSkill.disconnectConfirm.desc": "You can still continue previous chats that reference {{name}} content. However, the assistant won't be able to access new content or perform new tasks.",
674
+ "tools.lobehubSkill.disconnectConfirm.title": "Disconnect {{name}}?",
675
+ "tools.lobehubSkill.disconnected": "Disconnected",
607
676
  "tools.lobehubSkill.error": "Error",
677
+ "tools.lobehubSkill.providers.linear.description": "Linear is a modern issue tracking and project management tool designed for high-performance teams to build better software faster",
678
+ "tools.lobehubSkill.providers.linear.introduction": "Bring the power of Linear directly into your AI assistant. Create and update issues, manage sprints, track project progress, and streamline your development workflow—all through natural conversation.",
679
+ "tools.lobehubSkill.providers.microsoft.description": "Outlook Calendar is an integrated scheduling tool within Microsoft Outlook that enables users to create appointments, organize meetings with others, and manage their time and events effectively.",
680
+ "tools.lobehubSkill.providers.microsoft.introduction": "Integrate with Outlook Calendar to view, create, and manage your events seamlessly. Schedule meetings, check availability, set reminders, and coordinate your time—all through natural language commands.",
681
+ "tools.lobehubSkill.providers.twitter.description": "X (Twitter) is a social media platform for sharing real-time updates, news, and engaging with your audience through posts, replies, and direct messages.",
682
+ "tools.lobehubSkill.providers.twitter.introduction": "Connect to X (Twitter) to post tweets, manage your timeline, and engage with your audience. Create content, schedule posts, monitor mentions, and build your social media presence through conversational AI.",
608
683
  "tools.notInstalled": "Not Installed",
609
684
  "tools.notInstalledWarning": "This skill is not currently installed, which may affect agent functionality.",
610
685
  "tools.plugins.enabled": "Enabled: {{num}}",
611
686
  "tools.plugins.groupName": "Skills",
687
+ "tools.plugins.management": "Skill Management",
612
688
  "tools.plugins.noEnabled": "No skills enabled",
613
- "tools.plugins.store": "Skill Store",
689
+ "tools.plugins.store": "Add skill",
614
690
  "tools.tabs.all": "All",
615
691
  "tools.tabs.installed": "Enabled",
616
692
  "tools.title": "Extension Tools"
@@ -210,9 +210,9 @@
210
210
  "dev.deleteSuccess": "Skill eliminado",
211
211
  "dev.manifest.identifier.desc": "Identificador único del Skill",
212
212
  "dev.manifest.identifier.label": "Identificador",
213
+ "dev.manifest.mode.claude": "Habilidad de Claude",
214
+ "dev.manifest.mode.claudeWip": "Próximamente",
213
215
  "dev.manifest.mode.mcp": "MCP",
214
- "dev.manifest.mode.mcpExp": "Experimental",
215
- "dev.manifest.mode.url": "URL en línea",
216
216
  "dev.manifest.name.desc": "Título del Skill",
217
217
  "dev.manifest.name.label": "Título",
218
218
  "dev.manifest.name.placeholder": "Motor de búsqueda",
@@ -319,6 +319,9 @@
319
319
  "dev.tabs.meta": "Información meta",
320
320
  "dev.title.create": "Agregar Skill personalizado",
321
321
  "dev.title.edit": "Editar Skill personalizado",
322
+ "dev.title.editCommunity": "Editar habilidad de la comunidad",
323
+ "dev.title.skillDetails": "Detalles de la habilidad",
324
+ "dev.title.skillSettings": "Configuración de la habilidad",
322
325
  "dev.type.lobe": "Skill de {{appName}}",
323
326
  "dev.type.openai": "Skill de OpenAI",
324
327
  "dev.update": "Actualizar",
@@ -341,6 +344,11 @@
341
344
  "inspector.delete": "Eliminar llamada",
342
345
  "inspector.orphanedToolCall": "Se detectó una llamada de Skill huérfana, puede afectar la ejecución del Agente. Elimínala.",
343
346
  "inspector.pluginRender": "Ver interfaz del Skill",
347
+ "integrationDetail.author": "Autor",
348
+ "integrationDetail.details": "Detalles",
349
+ "integrationDetail.developedBy": "Desarrollado por",
350
+ "integrationDetail.tools": "Herramientas",
351
+ "integrationDetail.trustWarning": "Utiliza únicamente conectores de desarrolladores en los que confíes. LobeHub no controla qué herramientas ponen a disposición los desarrolladores y no puede garantizar que funcionen como se espera ni que no cambien.",
344
352
  "list.item.deprecated.title": "Eliminado",
345
353
  "list.item.local.config": "Configuración",
346
354
  "list.item.local.title": "Personalizado",
@@ -480,7 +488,9 @@
480
488
  "settings.saveSettings": "Guardar",
481
489
  "settings.title": "Configuración de la comunidad de Skills",
482
490
  "showInPortal": "Ver detalles en el espacio de trabajo",
491
+ "skillInstallBanner.title": "Agrega habilidades a Lobe AI",
483
492
  "store.actions.cancel": "Cancelar",
493
+ "store.actions.configure": "Configurar",
484
494
  "store.actions.confirmUninstall": "Desinstalar eliminará la configuración del Skill. ¿Continuar?",
485
495
  "store.actions.detail": "Detalles",
486
496
  "store.actions.install": "Instalar",
@@ -29,6 +29,7 @@
29
29
  "internlm.description": "Una organización de código abierto centrada en la investigación de modelos grandes y herramientas, que ofrece una plataforma eficiente y fácil de usar para acceder a modelos y algoritmos de vanguardia.",
30
30
  "jina.description": "Fundada en 2020, Jina AI es una empresa líder en búsqueda con IA. Su pila de búsqueda incluye modelos vectoriales, reordenadores y pequeños modelos de lenguaje para construir aplicaciones generativas y multimodales confiables y de alta calidad.",
31
31
  "lmstudio.description": "LM Studio es una aplicación de escritorio para desarrollar y experimentar con LLMs en tu ordenador.",
32
+ "lobehub.description": "LobeHub Cloud utiliza APIs oficiales para acceder a modelos de IA y mide el uso mediante Créditos vinculados a los tokens del modelo.",
32
33
  "minimax.description": "Fundada en 2021, MiniMax desarrolla IA de propósito general con modelos fundacionales multimodales, incluyendo modelos de texto MoE con billones de parámetros, modelos de voz y visión, junto con aplicaciones como Hailuo AI.",
33
34
  "mistral.description": "Mistral ofrece modelos avanzados generales, especializados y de investigación para razonamiento complejo, tareas multilingües y generación de código, con llamadas a funciones para integraciones personalizadas.",
34
35
  "modelscope.description": "ModelScope es la plataforma de modelos como servicio de Alibaba Cloud, que ofrece una amplia gama de modelos de IA y servicios de inferencia.",
@@ -96,7 +96,7 @@
96
96
  "defaultAgent.model.desc": "Modelo predeterminado utilizado al crear un nuevo Agente",
97
97
  "defaultAgent.model.title": "Modelo",
98
98
  "defaultAgent.title": "Configuración Predeterminada del Agente",
99
- "group.aiConfig": "Modelo",
99
+ "group.aiConfig": "Agente",
100
100
  "group.common": "General",
101
101
  "group.profile": "Cuenta",
102
102
  "group.subscription": "Suscripción",
@@ -471,6 +471,14 @@
471
471
  "settingTTS.voice.desc": "Selecciona una voz para el agente actual, los diferentes servicios TTS admiten diferentes voces",
472
472
  "settingTTS.voice.preview": "Vista Previa de Voz",
473
473
  "settingTTS.voice.title": "Voz de Texto a Voz",
474
+ "skillStore.button": "Tienda de Habilidades",
475
+ "skillStore.empty": "Explora la tienda de habilidades. Instala una para comenzar y añade más después.",
476
+ "skillStore.emptySearch": "No se encontraron habilidades coincidentes",
477
+ "skillStore.networkError": "Error de red, por favor intenta de nuevo",
478
+ "skillStore.search": "Busca habilidades por nombre o palabra clave, presiona Enter para buscar…",
479
+ "skillStore.tabs.community": "Comunidad",
480
+ "skillStore.tabs.lobehub": "LobeHub",
481
+ "skillStore.title": "Tienda de Habilidades",
474
482
  "startConversation": "Iniciar Conversación",
475
483
  "storage.actions.export.button": "Exportar",
476
484
  "storage.actions.export.exportType.agent": "Exportar Configuración del Agente",
@@ -543,6 +551,7 @@
543
551
  "systemAgent.translation.modelDesc": "Especifica el modelo usado para traducción",
544
552
  "systemAgent.translation.title": "Agente de Traducción de Mensajes",
545
553
  "tab.about": "Acerca de",
554
+ "tab.addCustomSkill": "Agregar habilidad personalizada",
546
555
  "tab.agent": "Servicio de Agente",
547
556
  "tab.apikey": "Gestión de Claves API",
548
557
  "tab.chatAppearance": "Apariencia del Chat",
@@ -556,6 +565,12 @@
556
565
  "tab.provider": "Proveedor de Servicios de IA",
557
566
  "tab.proxy": "Proxy de Red",
558
567
  "tab.security": "Seguridad",
568
+ "tab.skill": "Gestión de habilidades",
569
+ "tab.skillDesc": "Administra tus habilidades e integraciones conectadas",
570
+ "tab.skillDetail": "Detalles de la habilidad",
571
+ "tab.skillEmpty": "Aún no hay habilidades conectadas",
572
+ "tab.skillInstalled": "Habilidades instaladas",
573
+ "tab.skillIntegration": "Integración",
559
574
  "tab.stats": "Analíticas",
560
575
  "tab.storage": "Almacenamiento de Datos",
561
576
  "tab.sync": "Sincronización en la Nube",
@@ -568,7 +583,10 @@
568
583
  "tools.klavis.authCompleted": "Autenticación Completada",
569
584
  "tools.klavis.authFailed": "Autenticación Fallida",
570
585
  "tools.klavis.authRequired": "Autenticación Requerida",
586
+ "tools.klavis.connect": "Conectar",
571
587
  "tools.klavis.connected": "Conectado",
588
+ "tools.klavis.disconnect": "Desconectar",
589
+ "tools.klavis.disconnected": "Desconectado",
572
590
  "tools.klavis.error": "Error",
573
591
  "tools.klavis.groupName": "Herramientas Klavis",
574
592
  "tools.klavis.manage": "Gestionar Klavis",
@@ -581,17 +599,75 @@
581
599
  "tools.klavis.serverCreatedFailed": "Error al crear el servidor",
582
600
  "tools.klavis.serverRemoved": "Servidor eliminado",
583
601
  "tools.klavis.servers": "servidores",
602
+ "tools.klavis.servers.airtable.description": "Airtable es una plataforma en la nube que combina la flexibilidad de una hoja de cálculo con el poder de una base de datos, permitiendo a los equipos organizar, seguir y colaborar en proyectos con vistas personalizables y potentes funciones de automatización.",
603
+ "tools.klavis.servers.airtable.introduction": "Integra Airtable para gestionar tus bases de datos y flujos de trabajo. Consulta registros, crea entradas, actualiza datos y automatiza operaciones con vistas personalizables y potentes funciones de seguimiento.",
604
+ "tools.klavis.servers.cal-com.description": "Cal.com es una plataforma de programación de código abierto que te ayuda a agendar reuniones sin correos electrónicos innecesarios. Administra tipos de eventos, reservas, disponibilidad e intégralo con calendarios para una programación fluida.",
605
+ "tools.klavis.servers.cal-com.introduction": "Conéctate con Cal.com para gestionar tu agenda y citas. Consulta disponibilidad, agenda reuniones, administra tipos de eventos y automatiza tu calendario mediante conversación natural.",
606
+ "tools.klavis.servers.clickup.description": "ClickUp es una plataforma integral de gestión de proyectos y productividad que ayuda a los equipos a organizar tareas, gestionar proyectos y colaborar eficazmente con flujos de trabajo personalizables y potentes funciones de seguimiento.",
607
+ "tools.klavis.servers.clickup.introduction": "Conéctate con ClickUp para gestionar tareas, seguir proyectos y organizar tu trabajo. Crea tareas, actualiza estados, administra flujos de trabajo personalizados y colabora con tu equipo mediante comandos en lenguaje natural.",
608
+ "tools.klavis.servers.confluence.description": "Confluence es un espacio de trabajo en equipo donde se combinan el conocimiento y la colaboración.",
609
+ "tools.klavis.servers.confluence.introduction": "Conéctate con Confluence para acceder y gestionar la documentación del equipo. Busca páginas, crea contenido, organiza espacios y construye tu base de conocimiento con ayuda de IA conversacional.",
610
+ "tools.klavis.servers.dropbox.description": "Solución completa de gestión de archivos para el almacenamiento en la nube de Dropbox. Sube, descarga, organiza archivos y carpetas, gestiona el uso compartido y la colaboración, maneja versiones de archivos, crea solicitudes de archivos y realiza operaciones por lotes en tus archivos y carpetas de Dropbox.",
611
+ "tools.klavis.servers.dropbox.introduction": "Integra Dropbox para acceder y gestionar tus archivos. Sube, descarga, comparte archivos, organiza carpetas, gestiona versiones y organiza tu almacenamiento en la nube mediante IA conversacional.",
612
+ "tools.klavis.servers.figma.description": "Figma es una herramienta colaborativa de diseño de interfaces para aplicaciones web y móviles.",
613
+ "tools.klavis.servers.figma.introduction": "Conéctate con Figma para acceder a archivos de diseño y colaborar en proyectos. Visualiza diseños, exporta recursos, explora componentes y gestiona tu flujo de trabajo de diseño mediante conversación natural.",
614
+ "tools.klavis.servers.github.description": "Servidor MCP de GitHub mejorado",
615
+ "tools.klavis.servers.github.introduction": "Conéctate con GitHub para gestionar repositorios, incidencias, pull requests y código. Busca código, revisa cambios, crea ramas y colabora en proyectos de desarrollo de software mediante IA conversacional.",
616
+ "tools.klavis.servers.gmail.description": "Gmail es un servicio de correo electrónico gratuito proporcionado por Google",
617
+ "tools.klavis.servers.gmail.introduction": "Lleva el poder de Gmail directamente a tu asistente de IA. Lee, redacta y envía correos, busca en tu bandeja de entrada, gestiona etiquetas y organiza tus comunicaciones, todo mediante conversación natural.",
618
+ "tools.klavis.servers.google-calendar.description": "Google Calendar es un servicio de calendario para la gestión del tiempo y programación de eventos",
619
+ "tools.klavis.servers.google-calendar.introduction": "Integra Google Calendar para ver, crear y gestionar tus eventos sin complicaciones. Programa reuniones, establece recordatorios, consulta disponibilidad y coordina tu tiempo mediante comandos en lenguaje natural.",
620
+ "tools.klavis.servers.google-docs.description": "Google Docs es un procesador de texto incluido en la suite gratuita de editores de Google Docs basada en la web",
621
+ "tools.klavis.servers.google-docs.introduction": "Integra Google Docs para crear, editar y gestionar documentos. Escribe contenido, da formato al texto, colabora en tiempo real y accede a tus documentos mediante conversación natural.",
622
+ "tools.klavis.servers.google-drive.description": "Google Drive es un servicio de almacenamiento en la nube",
623
+ "tools.klavis.servers.google-drive.introduction": "Conéctate con Google Drive para acceder, organizar y gestionar tus archivos. Busca documentos, sube archivos, comparte contenido y navega por tu almacenamiento en la nube de forma eficiente con ayuda de IA.",
624
+ "tools.klavis.servers.google-sheets.description": "Google Sheets es una aplicación de hojas de cálculo basada en la web que permite a los usuarios crear, editar y colaborar en línea",
625
+ "tools.klavis.servers.google-sheets.introduction": "Conéctate con Google Sheets para leer, escribir y analizar datos de hojas de cálculo. Realiza cálculos, genera informes, crea gráficos y gestiona datos en tablas de forma colaborativa con ayuda de IA.",
626
+ "tools.klavis.servers.hubspot.description": "HubSpot es un desarrollador y proveedor de software para marketing de atracción, ventas y servicio al cliente",
627
+ "tools.klavis.servers.hubspot.introduction": "Integra HubSpot para gestionar contactos, oportunidades y campañas de marketing. Accede a datos de CRM, sigue embudos de ventas, automatiza flujos de trabajo y optimiza tus operaciones de ventas y marketing.",
628
+ "tools.klavis.servers.jira.description": "Jira es una herramienta de gestión de proyectos y seguimiento de incidencias desarrollada por Atlassian",
629
+ "tools.klavis.servers.jira.introduction": "Integra Jira para gestionar incidencias, seguir el progreso y organizar sprints. Crea tickets, actualiza estados, consulta datos de proyectos y optimiza tu flujo de trabajo de desarrollo mediante conversación natural.",
630
+ "tools.klavis.servers.notion.description": "Notion es una aplicación colaborativa de productividad y toma de notas",
631
+ "tools.klavis.servers.notion.introduction": "Conéctate con Notion para acceder y gestionar tu espacio de trabajo. Crea páginas, busca contenido, actualiza bases de datos y organiza tu base de conocimiento mediante conversación natural con tu asistente de IA.",
632
+ "tools.klavis.servers.onedrive.description": "OneDrive es un servicio de alojamiento y sincronización de archivos operado por Microsoft",
633
+ "tools.klavis.servers.onedrive.introduction": "Conéctate con OneDrive para acceder y gestionar tus archivos en la nube de Microsoft. Sube, descarga, comparte archivos, organiza carpetas y colabora en documentos con ayuda de IA.",
634
+ "tools.klavis.servers.outlook-mail.description": "Outlook Mail es una suite basada en la web que incluye correo, contactos, tareas y calendario de Microsoft.",
635
+ "tools.klavis.servers.outlook-mail.introduction": "Integra Outlook Mail para leer, enviar y gestionar tus correos electrónicos de Microsoft. Busca mensajes, redacta correos, organiza carpetas y gestiona tu bandeja de entrada mediante conversación natural.",
636
+ "tools.klavis.servers.salesforce.description": "Salesforce es la plataforma de gestión de relaciones con clientes (CRM) líder en el mundo que ayuda a las empresas a conectar con clientes, socios y prospectos",
637
+ "tools.klavis.servers.salesforce.introduction": "Conéctate con Salesforce para gestionar relaciones con clientes y datos de ventas. Consulta registros, actualiza oportunidades, sigue prospectos y automatiza tus flujos de trabajo de CRM mediante comandos en lenguaje natural.",
638
+ "tools.klavis.servers.slack.description": "Slack es una aplicación de mensajería para empresas que conecta a las personas con la información que necesitan",
639
+ "tools.klavis.servers.slack.introduction": "Integra Slack para enviar mensajes, buscar conversaciones y gestionar canales. Conéctate con tu equipo, automatiza flujos de comunicación y accede a la información del espacio de trabajo mediante lenguaje natural.",
640
+ "tools.klavis.servers.supabase.description": "Servidor MCP oficial de Supabase",
641
+ "tools.klavis.servers.supabase.introduction": "Integra Supabase para gestionar tu base de datos y servicios backend. Consulta datos, gestiona autenticación, maneja almacenamiento e interactúa con el backend de tu aplicación mediante conversación natural.",
642
+ "tools.klavis.servers.whatsapp.description": "Integración con la API de WhatsApp Business que permite enviar mensajes de texto, medios y gestionar conversaciones con clientes. Ideal para soporte al cliente, campañas de marketing y flujos de mensajería automatizados a través de la plataforma oficial de WhatsApp Business.",
643
+ "tools.klavis.servers.whatsapp.introduction": "Integra WhatsApp Business para enviar mensajes, gestionar conversaciones e interactuar con clientes. Automatiza flujos de mensajería y gestiona comunicaciones mediante IA conversacional.",
644
+ "tools.klavis.servers.youtube.description": "YouTube es una plataforma para compartir videos donde los usuarios pueden subir, compartir y descubrir contenido. Accede a información de videos, transcripciones y metadatos de forma programática.",
645
+ "tools.klavis.servers.youtube.introduction": "Conéctate con YouTube para buscar videos, acceder a transcripciones y obtener información de contenido. Analiza videos, extrae metadatos y descubre contenido mediante conversación natural.",
646
+ "tools.klavis.servers.zendesk.description": "Zendesk es una empresa de software de atención al cliente",
647
+ "tools.klavis.servers.zendesk.introduction": "Integra Zendesk para gestionar tickets de soporte e interacciones con clientes. Crea, actualiza y sigue solicitudes de soporte, accede a datos de clientes y optimiza tus operaciones de atención al cliente.",
584
648
  "tools.klavis.tools": "herramientas",
585
649
  "tools.klavis.verifyAuth": "He completado la autenticación",
586
650
  "tools.lobehubSkill.authorize": "Autorizar",
587
651
  "tools.lobehubSkill.connect": "Conectar",
652
+ "tools.lobehubSkill.connected": "Conectado",
653
+ "tools.lobehubSkill.disconnect": "Desconectar",
654
+ "tools.lobehubSkill.disconnectConfirm.desc": "Aún puedes continuar conversaciones anteriores que hagan referencia al contenido de {{name}}. Sin embargo, el asistente no podrá acceder a contenido nuevo ni realizar nuevas tareas.",
655
+ "tools.lobehubSkill.disconnectConfirm.title": "¿Desconectar {{name}}?",
656
+ "tools.lobehubSkill.disconnected": "Desconectado",
588
657
  "tools.lobehubSkill.error": "Error",
658
+ "tools.lobehubSkill.providers.linear.description": "Linear es una herramienta moderna de seguimiento de incidencias y gestión de proyectos diseñada para equipos de alto rendimiento que desean desarrollar software mejor y más rápido",
659
+ "tools.lobehubSkill.providers.linear.introduction": "Lleva el poder de Linear directamente a tu asistente de IA. Crea y actualiza incidencias, gestiona sprints, sigue el progreso de proyectos y optimiza tu flujo de trabajo de desarrollo mediante conversación natural.",
660
+ "tools.lobehubSkill.providers.microsoft.description": "Outlook Calendar es una herramienta de programación integrada en Microsoft Outlook que permite a los usuarios crear citas, organizar reuniones y gestionar su tiempo y eventos de forma eficaz.",
661
+ "tools.lobehubSkill.providers.microsoft.introduction": "Integra Outlook Calendar para ver, crear y gestionar tus eventos sin complicaciones. Programa reuniones, consulta disponibilidad, establece recordatorios y coordina tu tiempo mediante comandos en lenguaje natural.",
662
+ "tools.lobehubSkill.providers.twitter.description": "X (Twitter) es una plataforma de redes sociales para compartir actualizaciones en tiempo real, noticias y conectar con tu audiencia mediante publicaciones, respuestas y mensajes directos.",
663
+ "tools.lobehubSkill.providers.twitter.introduction": "Conéctate con X (Twitter) para publicar tuits, gestionar tu cronología e interactuar con tu audiencia. Crea contenido, programa publicaciones, monitorea menciones y fortalece tu presencia en redes sociales mediante IA conversacional.",
589
664
  "tools.notInstalled": "No Instalado",
590
665
  "tools.notInstalledWarning": "Esta habilidad no está instalada actualmente, lo que puede afectar la funcionalidad del agente.",
591
666
  "tools.plugins.enabled": "Habilitadas: {{num}}",
592
667
  "tools.plugins.groupName": "Habilidades",
668
+ "tools.plugins.management": "Gestión de habilidades",
593
669
  "tools.plugins.noEnabled": "No hay habilidades habilitadas",
594
- "tools.plugins.store": "Tienda de Habilidades",
670
+ "tools.plugins.store": "Agregar habilidad",
595
671
  "tools.tabs.all": "Todas",
596
672
  "tools.tabs.installed": "Habilitadas",
597
673
  "tools.title": "Herramientas de Extensión"
@@ -210,9 +210,9 @@
210
210
  "dev.deleteSuccess": "مهارت حذف شد",
211
211
  "dev.manifest.identifier.desc": "شناسه یکتا برای مهارت",
212
212
  "dev.manifest.identifier.label": "شناسه",
213
+ "dev.manifest.mode.claude": "مهارت کلود",
214
+ "dev.manifest.mode.claudeWip": "به‌زودی",
213
215
  "dev.manifest.mode.mcp": "MCP",
214
- "dev.manifest.mode.mcpExp": "آزمایشی",
215
- "dev.manifest.mode.url": "URL آنلاین",
216
216
  "dev.manifest.name.desc": "عنوان مهارت",
217
217
  "dev.manifest.name.label": "عنوان",
218
218
  "dev.manifest.name.placeholder": "موتور جستجو",
@@ -319,6 +319,9 @@
319
319
  "dev.tabs.meta": "اطلاعات متا",
320
320
  "dev.title.create": "افزودن مهارت سفارشی",
321
321
  "dev.title.edit": "ویرایش مهارت سفارشی",
322
+ "dev.title.editCommunity": "ویرایش مهارت انجمن",
323
+ "dev.title.skillDetails": "جزئیات مهارت",
324
+ "dev.title.skillSettings": "تنظیمات مهارت",
322
325
  "dev.type.lobe": "مهارت {{appName}}",
323
326
  "dev.type.openai": "مهارت OpenAI",
324
327
  "dev.update": "به‌روزرسانی",
@@ -341,6 +344,11 @@
341
344
  "inspector.delete": "حذف فراخوانی",
342
345
  "inspector.orphanedToolCall": "فراخوانی مهارت بدون وابستگی شناسایی شد، ممکن است بر اجرای عامل تأثیر بگذارد. آن را حذف کنید.",
343
346
  "inspector.pluginRender": "مشاهده رابط کاربری مهارت",
347
+ "integrationDetail.author": "نویسنده",
348
+ "integrationDetail.details": "جزئیات",
349
+ "integrationDetail.developedBy": "توسعه‌دهنده",
350
+ "integrationDetail.tools": "ابزارها",
351
+ "integrationDetail.trustWarning": "فقط از کانکتورهایی استفاده کنید که توسط توسعه‌دهندگانی که به آن‌ها اعتماد دارید ساخته شده‌اند. LobeHub کنترلی بر ابزارهایی که توسعه‌دهندگان ارائه می‌دهند ندارد و نمی‌تواند تضمین کند که این ابزارها طبق انتظار عمل می‌کنند یا تغییر نخواهند کرد.",
344
352
  "list.item.deprecated.title": "حذف شده",
345
353
  "list.item.local.config": "پیکربندی",
346
354
  "list.item.local.title": "سفارشی",
@@ -480,7 +488,9 @@
480
488
  "settings.saveSettings": "ذخیره تنظیمات",
481
489
  "settings.title": "تنظیمات جامعه مهارت",
482
490
  "showInPortal": "مشاهده جزئیات در Workspace",
491
+ "skillInstallBanner.title": "افزودن مهارت‌ها به Lobe AI",
483
492
  "store.actions.cancel": "لغو",
493
+ "store.actions.configure": "پیکربندی",
484
494
  "store.actions.confirmUninstall": "حذف مهارت باعث پاک شدن پیکربندی آن می‌شود. ادامه می‌دهید؟",
485
495
  "store.actions.detail": "جزئیات",
486
496
  "store.actions.install": "نصب",
@@ -29,6 +29,7 @@
29
29
  "internlm.description": "یک سازمان متن‌باز متمرکز بر تحقیقات مدل‌های بزرگ و ابزارهای مرتبط که پلتفرمی کارآمد و آسان برای استفاده ارائه می‌دهد تا مدل‌ها و الگوریتم‌های پیشرفته را در دسترس قرار دهد.",
30
30
  "jina.description": "Jina AI که در سال 2020 تأسیس شد، یک شرکت پیشرو در زمینه جستجوی هوش مصنوعی است. پشته جستجوی آن شامل مدل‌های برداری، رتبه‌بندها و مدل‌های زبانی کوچک برای ساخت اپلیکیشن‌های جستجوی مولد و چندوجهی با کیفیت بالا است.",
31
31
  "lmstudio.description": "LM Studio یک اپلیکیشن دسکتاپ برای توسعه و آزمایش مدل‌های زبانی بزرگ روی رایانه شخصی شماست.",
32
+ "lobehub.description": "LobeHub Cloud از رابط‌های برنامه‌نویسی رسمی برای دسترسی به مدل‌های هوش مصنوعی استفاده می‌کند و مصرف را با اعتباراتی که به توکن‌های مدل وابسته‌اند، اندازه‌گیری می‌کند.",
32
33
  "minimax.description": "MiniMax که در سال 2021 تأسیس شد، هوش مصنوعی چندمنظوره با مدل‌های پایه چندوجهی از جمله مدل‌های متنی با پارامترهای تریلیونی، مدل‌های گفتاری و تصویری توسعه می‌دهد و اپ‌هایی مانند Hailuo AI را ارائه می‌کند.",
33
34
  "mistral.description": "Mistral مدل‌های عمومی، تخصصی و تحقیقاتی پیشرفته‌ای برای استدلال پیچیده، وظایف چندزبانه و تولید کد ارائه می‌دهد و از فراخوانی توابع برای یکپارچه‌سازی سفارشی پشتیبانی می‌کند.",
34
35
  "modelscope.description": "ModelScope پلتفرم مدل به‌عنوان‌سرویس Alibaba Cloud است که مجموعه‌ای گسترده از مدل‌های هوش مصنوعی و خدمات استنتاج را ارائه می‌دهد.",
@@ -96,7 +96,7 @@
96
96
  "defaultAgent.model.desc": "مدل پیش‌فرض هنگام ایجاد عامل جدید",
97
97
  "defaultAgent.model.title": "مدل",
98
98
  "defaultAgent.title": "تنظیمات پیش‌فرض عامل",
99
- "group.aiConfig": "مدل",
99
+ "group.aiConfig": "عامل",
100
100
  "group.common": "عمومی",
101
101
  "group.profile": "حساب کاربری",
102
102
  "group.subscription": "اشتراک",
@@ -471,6 +471,14 @@
471
471
  "settingTTS.voice.desc": "یک صدا برای عامل فعلی انتخاب کنید، سرویس‌های مختلف TTS از صداهای متفاوتی پشتیبانی می‌کنند",
472
472
  "settingTTS.voice.preview": "پیش‌نمایش صدا",
473
473
  "settingTTS.voice.title": "صدای تبدیل متن به گفتار",
474
+ "skillStore.button": "فروشگاه مهارت",
475
+ "skillStore.empty": "فروشگاه مهارت را مرور کنید. برای شروع یکی را نصب کرده و بعداً موارد بیشتری اضافه کنید.",
476
+ "skillStore.emptySearch": "هیچ مهارتی مطابق با جستجو یافت نشد",
477
+ "skillStore.networkError": "خطای شبکه، لطفاً دوباره تلاش کنید",
478
+ "skillStore.search": "جستجوی مهارت‌ها بر اساس نام یا کلمه کلیدی، برای جستجو Enter را فشار دهید…",
479
+ "skillStore.tabs.community": "جامعه",
480
+ "skillStore.tabs.lobehub": "LobeHub",
481
+ "skillStore.title": "فروشگاه مهارت",
474
482
  "startConversation": "شروع گفتگو",
475
483
  "storage.actions.export.button": "خروجی گرفتن",
476
484
  "storage.actions.export.exportType.agent": "خروجی تنظیمات عامل",
@@ -543,6 +551,7 @@
543
551
  "systemAgent.translation.modelDesc": "مدلی که برای ترجمه پیام‌ها استفاده می‌شود",
544
552
  "systemAgent.translation.title": "عامل ترجمه پیام",
545
553
  "tab.about": "درباره",
554
+ "tab.addCustomSkill": "افزودن مهارت سفارشی",
546
555
  "tab.agent": "سرویس عامل",
547
556
  "tab.apikey": "مدیریت کلید API",
548
557
  "tab.chatAppearance": "ظاهر گفتگو",
@@ -556,6 +565,12 @@
556
565
  "tab.provider": "ارائه‌دهنده سرویس هوش مصنوعی",
557
566
  "tab.proxy": "پروکسی شبکه",
558
567
  "tab.security": "امنیت",
568
+ "tab.skill": "مدیریت مهارت‌ها",
569
+ "tab.skillDesc": "مدیریت مهارت‌ها و یکپارچه‌سازی‌های متصل",
570
+ "tab.skillDetail": "جزئیات مهارت",
571
+ "tab.skillEmpty": "هنوز مهارتی متصل نشده است",
572
+ "tab.skillInstalled": "مهارت‌های نصب‌شده",
573
+ "tab.skillIntegration": "یکپارچه‌سازی",
559
574
  "tab.stats": "تحلیل‌ها",
560
575
  "tab.storage": "ذخیره‌سازی داده",
561
576
  "tab.sync": "همگام‌سازی ابری",
@@ -568,7 +583,10 @@
568
583
  "tools.klavis.authCompleted": "احراز هویت کامل شد",
569
584
  "tools.klavis.authFailed": "احراز هویت ناموفق بود",
570
585
  "tools.klavis.authRequired": "احراز هویت لازم است",
586
+ "tools.klavis.connect": "اتصال",
571
587
  "tools.klavis.connected": "متصل شد",
588
+ "tools.klavis.disconnect": "قطع اتصال",
589
+ "tools.klavis.disconnected": "قطع اتصال",
572
590
  "tools.klavis.error": "خطا",
573
591
  "tools.klavis.groupName": "ابزارهای Klavis",
574
592
  "tools.klavis.manage": "مدیریت Klavis",
@@ -581,17 +599,75 @@
581
599
  "tools.klavis.serverCreatedFailed": "ایجاد سرور ناموفق بود",
582
600
  "tools.klavis.serverRemoved": "سرور حذف شد",
583
601
  "tools.klavis.servers": "سرورها",
602
+ "tools.klavis.servers.airtable.description": "Airtable یک پلتفرم پایگاه داده و صفحه‌گسترده مبتنی بر ابر است که انعطاف‌پذیری صفحه‌گسترده را با قدرت پایگاه داده ترکیب می‌کند و به تیم‌ها امکان می‌دهد پروژه‌ها را با نماهای قابل تنظیم و ویژگی‌های قدرتمند خودکارسازی سازمان‌دهی، پیگیری و مدیریت کنند.",
603
+ "tools.klavis.servers.airtable.introduction": "با Airtable یکپارچه شوید تا پایگاه‌های داده و جریان‌های کاری خود را مدیریت کنید. رکوردها را جستجو کنید، ورودی ایجاد کنید، داده‌ها را به‌روزرسانی کنید و عملیات را با نماهای قابل تنظیم و ویژگی‌های پیگیری قدرتمند خودکار کنید.",
604
+ "tools.klavis.servers.cal-com.description": "Cal.com یک پلتفرم زمان‌بندی متن‌باز است که به شما کمک می‌کند بدون ایمیل‌های رفت‌وبرگشتی جلسات را برنامه‌ریزی کنید. انواع رویداد، رزروها، در دسترس بودن را مدیریت کرده و با تقویم‌ها برای زمان‌بندی یکپارچه قرار ملاقات‌ها یکپارچه شوید.",
605
+ "tools.klavis.servers.cal-com.introduction": "به Cal.com متصل شوید تا زمان‌بندی و قرار ملاقات‌های خود را مدیریت کنید. در دسترس بودن را مشاهده کنید، جلسات را رزرو کنید، انواع رویداد را مدیریت کرده و تقویم خود را از طریق مکالمه طبیعی خودکار کنید.",
606
+ "tools.klavis.servers.clickup.description": "ClickUp یک پلتفرم جامع مدیریت پروژه و بهره‌وری است که به تیم‌ها کمک می‌کند وظایف را سازمان‌دهی کرده، پروژه‌ها را مدیریت کرده و با جریان‌های کاری قابل تنظیم و ویژگی‌های پیگیری قدرتمند به‌طور مؤثر همکاری کنند.",
607
+ "tools.klavis.servers.clickup.introduction": "به ClickUp متصل شوید تا وظایف را مدیریت کرده، پروژه‌ها را پیگیری کرده و کار خود را سازمان‌دهی کنید. وظایف ایجاد کنید، وضعیت‌ها را به‌روزرسانی کنید، جریان‌های کاری سفارشی را مدیریت کرده و از طریق دستورات زبان طبیعی با تیم خود همکاری کنید.",
608
+ "tools.klavis.servers.confluence.description": "Confluence یک فضای کاری تیمی است که دانش و همکاری را به هم پیوند می‌دهد.",
609
+ "tools.klavis.servers.confluence.introduction": "به Confluence متصل شوید تا به مستندات تیمی دسترسی پیدا کرده و آن را مدیریت کنید. صفحات را جستجو کنید، محتوا ایجاد کنید، فضاها را سازمان‌دهی کرده و پایگاه دانش خود را از طریق کمک هوش مصنوعی مکالمه‌ای بسازید.",
610
+ "tools.klavis.servers.dropbox.description": "راهکار کامل مدیریت فایل برای فضای ابری Dropbox. بارگذاری، دانلود، سازمان‌دهی فایل‌ها و پوشه‌ها، مدیریت اشتراک‌گذاری و همکاری، مدیریت نسخه‌های فایل، ایجاد درخواست فایل و انجام عملیات دسته‌ای روی فایل‌ها و پوشه‌های Dropbox.",
611
+ "tools.klavis.servers.dropbox.introduction": "با Dropbox یکپارچه شوید تا به فایل‌های خود دسترسی پیدا کرده و آن‌ها را مدیریت کنید. فایل‌ها را بارگذاری، دانلود و به اشتراک بگذارید، پوشه‌ها را مدیریت کرده، نسخه‌های فایل را کنترل کرده و فضای ابری خود را از طریق هوش مصنوعی مکالمه‌ای سازمان‌دهی کنید.",
612
+ "tools.klavis.servers.figma.description": "Figma یک ابزار طراحی رابط کاربری مشارکتی برای برنامه‌های وب و موبایل است.",
613
+ "tools.klavis.servers.figma.introduction": "به Figma متصل شوید تا به فایل‌های طراحی دسترسی پیدا کرده و روی پروژه‌ها همکاری کنید. طراحی‌ها را مشاهده کنید، منابع را صادر کنید، اجزا را مرور کرده و جریان کاری طراحی خود را از طریق مکالمه طبیعی مدیریت کنید.",
614
+ "tools.klavis.servers.github.description": "سرور MCP پیشرفته GitHub",
615
+ "tools.klavis.servers.github.introduction": "به GitHub متصل شوید تا مخازن، مسائل، درخواست‌های کش و کد را مدیریت کنید. کد را جستجو کنید، تغییرات را بررسی کنید، شاخه ایجاد کرده و از طریق هوش مصنوعی مکالمه‌ای روی پروژه‌های توسعه نرم‌افزار همکاری کنید.",
616
+ "tools.klavis.servers.gmail.description": "Gmail یک سرویس ایمیل رایگان ارائه‌شده توسط گوگل است.",
617
+ "tools.klavis.servers.gmail.introduction": "قدرت Gmail را مستقیماً به دستیار هوش مصنوعی خود بیاورید. ایمیل‌ها را بخوانید، بنویسید و ارسال کنید، در صندوق ورودی جستجو کنید، برچسب‌ها را مدیریت کرده و ارتباطات خود را از طریق مکالمه طبیعی سازمان‌دهی کنید.",
618
+ "tools.klavis.servers.google-calendar.description": "Google Calendar یک سرویس تقویم برای مدیریت زمان و برنامه‌ریزی است.",
619
+ "tools.klavis.servers.google-calendar.introduction": "Google Calendar را یکپارچه کنید تا رویدادهای خود را مشاهده، ایجاد و مدیریت کنید. جلسات را برنامه‌ریزی کنید، یادآورها را تنظیم کنید، در دسترس بودن را بررسی کرده و زمان خود را از طریق دستورات زبان طبیعی هماهنگ کنید.",
620
+ "tools.klavis.servers.google-docs.description": "Google Docs یک پردازشگر متن است که بخشی از مجموعه ویرایشگرهای آنلاین رایگان گوگل می‌باشد.",
621
+ "tools.klavis.servers.google-docs.introduction": "با Google Docs یکپارچه شوید تا اسناد را ایجاد، ویرایش و مدیریت کنید. محتوا بنویسید، متن را قالب‌بندی کنید، به‌صورت هم‌زمان همکاری کرده و از طریق مکالمه طبیعی به اسناد خود دسترسی پیدا کنید.",
622
+ "tools.klavis.servers.google-drive.description": "Google Drive یک سرویس ذخیره‌سازی ابری است.",
623
+ "tools.klavis.servers.google-drive.introduction": "به Google Drive متصل شوید تا به فایل‌های خود دسترسی پیدا کرده، آن‌ها را سازمان‌دهی و مدیریت کنید. اسناد را جستجو کنید، فایل‌ها را بارگذاری کنید، محتوا را به اشتراک بگذارید و فضای ابری خود را به‌طور مؤثر از طریق کمک هوش مصنوعی مرور کنید.",
624
+ "tools.klavis.servers.google-sheets.description": "Google Sheets یک برنامه صفحه‌گسترده مبتنی بر وب است که به کاربران امکان می‌دهد به‌صورت آنلاین صفحه‌گسترده ایجاد، ویرایش و به‌صورت مشترک کار کنند.",
625
+ "tools.klavis.servers.google-sheets.introduction": "به Google Sheets متصل شوید تا داده‌های صفحه‌گسترده را بخوانید، بنویسید و تحلیل کنید. محاسبات انجام دهید، گزارش تولید کنید، نمودار ایجاد کرده و داده‌های جدولی را با کمک هوش مصنوعی به‌صورت مشارکتی مدیریت کنید.",
626
+ "tools.klavis.servers.hubspot.description": "HubSpot توسعه‌دهنده نرم‌افزارهای بازاریابی درون‌گرا، فروش و خدمات مشتری است.",
627
+ "tools.klavis.servers.hubspot.introduction": "با HubSpot یکپارچه شوید تا مخاطبین، معاملات و کمپین‌های بازاریابی را مدیریت کنید. به داده‌های CRM دسترسی پیدا کنید، جریان‌های فروش را پیگیری کرده، جریان‌های کاری را خودکار کرده و عملیات فروش و بازاریابی خود را بهینه کنید.",
628
+ "tools.klavis.servers.jira.description": "Jira یک ابزار مدیریت پروژه و پیگیری مسائل است که توسط Atlassian توسعه یافته است.",
629
+ "tools.klavis.servers.jira.introduction": "با Jira یکپارچه شوید تا مسائل را مدیریت کرده، پیشرفت را پیگیری کرده و اسپرینت‌ها را سازمان‌دهی کنید. تیکت ایجاد کنید، وضعیت‌ها را به‌روزرسانی کنید، داده‌های پروژه را جستجو کرده و جریان کاری توسعه خود را از طریق مکالمه طبیعی بهینه کنید.",
630
+ "tools.klavis.servers.notion.description": "Notion یک برنامه بهره‌وری مشارکتی و یادداشت‌برداری است.",
631
+ "tools.klavis.servers.notion.introduction": "به Notion متصل شوید تا به فضای کاری خود دسترسی پیدا کرده و آن را مدیریت کنید. صفحه ایجاد کنید، محتوا جستجو کنید، پایگاه‌های داده را به‌روزرسانی کرده و پایگاه دانش خود را از طریق مکالمه طبیعی با دستیار هوش مصنوعی سازمان‌دهی کنید.",
632
+ "tools.klavis.servers.onedrive.description": "OneDrive یک سرویس میزبانی و همگام‌سازی فایل است که توسط مایکروسافت ارائه می‌شود.",
633
+ "tools.klavis.servers.onedrive.introduction": "به OneDrive متصل شوید تا به فایل‌های ابری مایکروسافت خود دسترسی پیدا کرده و آن‌ها را مدیریت کنید. فایل‌ها را بارگذاری، دانلود و به اشتراک بگذارید، پوشه‌ها را سازمان‌دهی کرده و از طریق کمک هوش مصنوعی روی اسناد همکاری کنید.",
634
+ "tools.klavis.servers.outlook-mail.description": "Outlook Mail یک مجموعه مبتنی بر وب از خدمات ایمیل، مخاطبین، وظایف و تقویم از مایکروسافت است.",
635
+ "tools.klavis.servers.outlook-mail.introduction": "با Outlook Mail یکپارچه شوید تا ایمیل‌های مایکروسافت خود را بخوانید، ارسال کرده و مدیریت کنید. پیام‌ها را جستجو کنید، ایمیل بنویسید، پوشه‌ها را مدیریت کرده و صندوق ورودی خود را از طریق مکالمه طبیعی سازمان‌دهی کنید.",
636
+ "tools.klavis.servers.salesforce.description": "Salesforce پیشروترین پلتفرم مدیریت ارتباط با مشتری (CRM) در جهان است که به کسب‌وکارها کمک می‌کند با مشتریان، شرکا و مشتریان بالقوه ارتباط برقرار کنند.",
637
+ "tools.klavis.servers.salesforce.introduction": "به Salesforce متصل شوید تا روابط مشتری و داده‌های فروش را مدیریت کنید. رکوردها را جستجو کنید، فرصت‌ها را به‌روزرسانی کنید، سرنخ‌ها را پیگیری کرده و جریان‌های کاری CRM خود را از طریق دستورات زبان طبیعی خودکار کنید.",
638
+ "tools.klavis.servers.slack.description": "Slack یک برنامه پیام‌رسانی برای کسب‌وکار است که افراد را به اطلاعات مورد نیازشان متصل می‌کند.",
639
+ "tools.klavis.servers.slack.introduction": "با Slack یکپارچه شوید تا پیام ارسال کنید، مکالمات را جستجو کرده و کانال‌ها را مدیریت کنید. با تیم خود ارتباط برقرار کنید، جریان‌های کاری ارتباطی را خودکار کرده و به اطلاعات فضای کاری از طریق زبان طبیعی دسترسی پیدا کنید.",
640
+ "tools.klavis.servers.supabase.description": "سرور رسمی MCP برای Supabase",
641
+ "tools.klavis.servers.supabase.introduction": "با Supabase یکپارچه شوید تا پایگاه داده و خدمات بک‌اند خود را مدیریت کنید. داده‌ها را جستجو کنید، احراز هویت را مدیریت کرده، ذخیره‌سازی را کنترل کرده و از طریق مکالمه طبیعی با بک‌اند برنامه خود تعامل داشته باشید.",
642
+ "tools.klavis.servers.whatsapp.description": "یکپارچه‌سازی با API کسب‌وکار WhatsApp که امکان ارسال پیام متنی، رسانه‌ای و مدیریت مکالمات با مشتریان را فراهم می‌کند. مناسب برای پشتیبانی مشتری، کمپین‌های بازاریابی و جریان‌های کاری پیام‌رسانی خودکار از طریق پلتفرم رسمی WhatsApp Business.",
643
+ "tools.klavis.servers.whatsapp.introduction": "با WhatsApp Business یکپارچه شوید تا پیام ارسال کرده، مکالمات را مدیریت کرده و با مشتریان تعامل داشته باشید. جریان‌های کاری پیام‌رسانی را خودکار کرده و ارتباطات را از طریق هوش مصنوعی مکالمه‌ای مدیریت کنید.",
644
+ "tools.klavis.servers.youtube.description": "YouTube یک پلتفرم اشتراک‌گذاری ویدیو است که کاربران می‌توانند در آن ویدیو بارگذاری، به اشتراک‌گذاری و کشف کنند. به اطلاعات ویدیو، رونوشت‌ها و فراداده‌ها به‌صورت برنامه‌نویسی دسترسی پیدا کنید.",
645
+ "tools.klavis.servers.youtube.introduction": "به YouTube متصل شوید تا ویدیوها را جستجو کرده، به رونوشت‌ها دسترسی پیدا کرده و اطلاعات ویدیو را بازیابی کنید. محتوا را تحلیل کرده، فراداده استخراج کرده و از طریق مکالمه طبیعی ویدیوها را کشف کنید.",
646
+ "tools.klavis.servers.zendesk.description": "Zendesk یک شرکت نرم‌افزاری خدمات مشتری است.",
647
+ "tools.klavis.servers.zendesk.introduction": "با Zendesk یکپارچه شوید تا تیکت‌های پشتیبانی و تعاملات مشتری را مدیریت کنید. درخواست‌های پشتیبانی ایجاد، به‌روزرسانی و پیگیری کرده، به داده‌های مشتری دسترسی پیدا کرده و عملیات پشتیبانی خود را بهینه کنید.",
584
648
  "tools.klavis.tools": "ابزارها",
585
649
  "tools.klavis.verifyAuth": "احراز هویت را کامل کرده‌ام",
586
650
  "tools.lobehubSkill.authorize": "اعطا مجوز",
587
651
  "tools.lobehubSkill.connect": "اتصال",
652
+ "tools.lobehubSkill.connected": "متصل شد",
653
+ "tools.lobehubSkill.disconnect": "قطع اتصال",
654
+ "tools.lobehubSkill.disconnectConfirm.desc": "شما همچنان می‌توانید گفتگوهای قبلی که به محتوای {{name}} اشاره دارند را ادامه دهید. با این حال، دستیار دیگر به محتوای جدید دسترسی نخواهد داشت یا نمی‌تواند وظایف جدیدی انجام دهد.",
655
+ "tools.lobehubSkill.disconnectConfirm.title": "قطع اتصال {{name}}؟",
656
+ "tools.lobehubSkill.disconnected": "قطع اتصال",
588
657
  "tools.lobehubSkill.error": "خطا",
658
+ "tools.lobehubSkill.providers.linear.description": "Linear یک ابزار مدرن پیگیری مسائل و مدیریت پروژه است که برای تیم‌های با عملکرد بالا طراحی شده تا نرم‌افزار بهتری را سریع‌تر بسازند.",
659
+ "tools.lobehubSkill.providers.linear.introduction": "قدرت Linear را مستقیماً به دستیار هوش مصنوعی خود بیاورید. مسائل ایجاد و به‌روزرسانی کنید، اسپرینت‌ها را مدیریت کرده، پیشرفت پروژه را پیگیری کرده و جریان کاری توسعه خود را از طریق مکالمه طبیعی بهینه کنید.",
660
+ "tools.lobehubSkill.providers.microsoft.description": "تقویم Outlook یک ابزار زمان‌بندی یکپارچه در Microsoft Outlook است که به کاربران امکان می‌دهد قرار ملاقات ایجاد کرده، جلسات را با دیگران سازمان‌دهی کرده و زمان و رویدادهای خود را به‌طور مؤثر مدیریت کنند.",
661
+ "tools.lobehubSkill.providers.microsoft.introduction": "با تقویم Outlook یکپارچه شوید تا رویدادهای خود را مشاهده، ایجاد و مدیریت کنید. جلسات را برنامه‌ریزی کنید، در دسترس بودن را بررسی کرده، یادآورها را تنظیم کرده و زمان خود را از طریق دستورات زبان طبیعی هماهنگ کنید.",
662
+ "tools.lobehubSkill.providers.twitter.description": "X (توییتر) یک پلتفرم رسانه اجتماعی برای به‌اشتراک‌گذاری به‌روزرسانی‌های لحظه‌ای، اخبار و تعامل با مخاطبان از طریق پست‌ها، پاسخ‌ها و پیام‌های مستقیم است.",
663
+ "tools.lobehubSkill.providers.twitter.introduction": "به X (توییتر) متصل شوید تا توییت ارسال کرده، تایم‌لاین خود را مدیریت کرده و با مخاطبان خود تعامل داشته باشید. محتوا ایجاد کنید، پست‌ها را زمان‌بندی کرده، اشاره‌ها را پایش کرده و حضور خود در شبکه‌های اجتماعی را از طریق هوش مصنوعی مکالمه‌ای تقویت کنید.",
589
664
  "tools.notInstalled": "نصب نشده",
590
665
  "tools.notInstalledWarning": "این مهارت در حال حاضر نصب نشده است و ممکن است عملکرد عامل را تحت تأثیر قرار دهد.",
591
666
  "tools.plugins.enabled": "فعال‌شده: {{num}}",
592
667
  "tools.plugins.groupName": "مهارت‌ها",
668
+ "tools.plugins.management": "مدیریت مهارت‌ها",
593
669
  "tools.plugins.noEnabled": "هیچ مهارتی فعال نیست",
594
- "tools.plugins.store": "فروشگاه مهارت‌ها",
670
+ "tools.plugins.store": "افزودن مهارت",
595
671
  "tools.tabs.all": "همه",
596
672
  "tools.tabs.installed": "فعال‌شده",
597
673
  "tools.title": "ابزارهای افزونه"
@@ -210,9 +210,9 @@
210
210
  "dev.deleteSuccess": "Compétence supprimée",
211
211
  "dev.manifest.identifier.desc": "Identifiant unique de la compétence",
212
212
  "dev.manifest.identifier.label": "Identifiant",
213
+ "dev.manifest.mode.claude": "Compétence Claude",
214
+ "dev.manifest.mode.claudeWip": "Bientôt disponible",
213
215
  "dev.manifest.mode.mcp": "MCP",
214
- "dev.manifest.mode.mcpExp": "Expérimental",
215
- "dev.manifest.mode.url": "URL en ligne",
216
216
  "dev.manifest.name.desc": "Titre de la compétence",
217
217
  "dev.manifest.name.label": "Titre",
218
218
  "dev.manifest.name.placeholder": "Moteur de recherche",
@@ -319,6 +319,9 @@
319
319
  "dev.tabs.meta": "Infos méta",
320
320
  "dev.title.create": "Ajouter une compétence personnalisée",
321
321
  "dev.title.edit": "Modifier une compétence personnalisée",
322
+ "dev.title.editCommunity": "Modifier la compétence communautaire",
323
+ "dev.title.skillDetails": "Détails de la compétence",
324
+ "dev.title.skillSettings": "Paramètres de la compétence",
322
325
  "dev.type.lobe": "Compétence {{appName}}",
323
326
  "dev.type.openai": "Compétence OpenAI",
324
327
  "dev.update": "Mettre à jour",
@@ -341,6 +344,11 @@
341
344
  "inspector.delete": "Supprimer l’appel",
342
345
  "inspector.orphanedToolCall": "Appel de compétence orphelin détecté, peut affecter l’exécution de l’agent. Supprimez-le.",
343
346
  "inspector.pluginRender": "Voir l’interface de la compétence",
347
+ "integrationDetail.author": "Auteur",
348
+ "integrationDetail.details": "Détails",
349
+ "integrationDetail.developedBy": "Développé par",
350
+ "integrationDetail.tools": "Outils",
351
+ "integrationDetail.trustWarning": "N'utilisez que les connecteurs provenant de développeurs de confiance. LobeHub ne contrôle pas les outils mis à disposition par les développeurs et ne peut garantir leur bon fonctionnement ni qu'ils ne seront pas modifiés.",
344
352
  "list.item.deprecated.title": "Supprimée",
345
353
  "list.item.local.config": "Configuration",
346
354
  "list.item.local.title": "Personnalisée",
@@ -480,7 +488,9 @@
480
488
  "settings.saveSettings": "Enregistrer",
481
489
  "settings.title": "Paramètres de la communauté de compétences",
482
490
  "showInPortal": "Voir les détails dans l’espace de travail",
491
+ "skillInstallBanner.title": "Ajouter des compétences à Lobe AI",
483
492
  "store.actions.cancel": "Annuler",
493
+ "store.actions.configure": "Configurer",
484
494
  "store.actions.confirmUninstall": "La désinstallation effacera la configuration de la compétence. Continuer ?",
485
495
  "store.actions.detail": "Détails",
486
496
  "store.actions.install": "Installer",