From 062bbd3e4d850453924e62354cbc6f407f5f2f70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=86=A0=E8=BE=B0?= Date: Sat, 27 Jun 2026 20:29:19 +0800 Subject: [PATCH 1/4] fix(meet): forward wake phrase for active meeting bots --- app/src/components/skills/MeetingBotsCard.tsx | 12 ++++++++++++ .../skills/__tests__/MeetingBotsCard.test.tsx | 11 ++++++++++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/app/src/components/skills/MeetingBotsCard.tsx b/app/src/components/skills/MeetingBotsCard.tsx index 9f20fcbf05..5b4de873cb 100644 --- a/app/src/components/skills/MeetingBotsCard.tsx +++ b/app/src/components/skills/MeetingBotsCard.tsx @@ -1,3 +1,4 @@ +import debug from 'debug'; import { type RefObject, useCallback, useEffect, useMemo, useRef, useState } from 'react'; import { type MascotFace, RiveMascot } from '../../features/human/Mascot'; @@ -34,6 +35,8 @@ import { RecentCallsSection } from './RecentCallsSection'; type Toast = { type: 'success' | 'error' | 'info'; title: string; message?: string }; +const log = debug('meeting-bots'); + interface Props { onToast?: (toast: Toast) => void; } @@ -251,6 +254,7 @@ function MeetingBotsInline({ onToast, hasSubmittedRef }: MeetingBotsInlineProps) mascotColor === 'custom' ? { primaryColor: customPrimaryColor, secondaryColor: customSecondaryColor } : undefined; + const wakePhrase = listenOnly ? undefined : `Hey ${agentName}`; // Success ('active') is handled by the parent MeetingBotsCard, which stays // mounted across the inline→active view swap. The error path lives here @@ -274,6 +278,13 @@ function MeetingBotsInline({ onToast, hasSubmittedRef }: MeetingBotsInlineProps) hasSubmittedRef.current = true; try { const meetingId = crypto.randomUUID(); + log('join submit %o', { + active: !listenOnly, + agentChars: agentName.length, + ownerChars: respondTo.trim().length, + wakeChars: wakePhrase?.length ?? 0, + correlationId: meetingId, + }); dispatch(setBackendMeetJoining({ meetUrl: meetUrl.trim(), meetingId, listenOnly })); await joinMeetViaBackendBot({ meetUrl, @@ -285,6 +296,7 @@ function MeetingBotsInline({ onToast, hasSubmittedRef }: MeetingBotsInlineProps) riveColors, correlationId: meetingId, respondToParticipant: respondTo.trim() || undefined, + wakePhrase, listenOnly, }); } catch (err) { diff --git a/app/src/components/skills/__tests__/MeetingBotsCard.test.tsx b/app/src/components/skills/__tests__/MeetingBotsCard.test.tsx index 2d12f0575d..b63d8232e0 100644 --- a/app/src/components/skills/__tests__/MeetingBotsCard.test.tsx +++ b/app/src/components/skills/__tests__/MeetingBotsCard.test.tsx @@ -61,6 +61,9 @@ describe('MeetingBotsCard', () => { agentName: 'Tiny', // Participant-name field is wired to the backend authorized-speaker gate. respondToParticipant: 'Alice', + // Active mode must give the backend a wake phrase so it can emit + // bot:in_call_request when the participant addresses the bot. + wakePhrase: 'Hey Tiny', // Active toggle defaults to checked → listen-only false. listenOnly: false, }) @@ -109,6 +112,7 @@ describe('MeetingBotsCard', () => { meetUrl: 'https://meet.google.com/abc-defg-hij', displayName: 'Nova', agentName: 'Nova', + wakePhrase: 'Hey Nova', systemPrompt: 'Calm and concise.', mascotId: 'yellow', riveColors: { primaryColor: '#123456', secondaryColor: '#abcdef' }, @@ -188,7 +192,12 @@ describe('MeetingBotsCard', () => { fireEvent.submit(document.querySelector('form')!); await vi.waitFor(() => { - expect(joinMock).toHaveBeenCalledWith(expect.objectContaining({ listenOnly: true })); + expect(joinMock).toHaveBeenCalledWith( + expect.objectContaining({ + listenOnly: true, + wakePhrase: undefined, + }) + ); }); }); }); From 3d663256c09fc3175b5dfa18048fb755c8ff1490 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=86=A0=E8=BE=B0?= Date: Sat, 27 Jun 2026 20:58:29 +0800 Subject: [PATCH 2/4] docs: refresh localized readme links --- docs/README.de.md | 36 ++++++++++++++++++------------------ docs/README.ja-JP.md | 37 ++++++++++++++++++------------------- docs/README.ko.md | 37 ++++++++++++++++++------------------- docs/README.ur-pk.md | 28 ++++++++++++++-------------- docs/README.zh-CN.md | 35 ++++++++++++++++++----------------- 5 files changed, 86 insertions(+), 87 deletions(-) diff --git a/docs/README.de.md b/docs/README.de.md index 43d76ea984..9636619bee 100644 --- a/docs/README.de.md +++ b/docs/README.de.md @@ -2,7 +2,6 @@ 🇺🇸 English | 🇨🇳 简体中文 | 🇯🇵 日本語 | 🇰🇷 한국어 | 🇩🇪 Deutsch | 🇵🇰 اردو

-

OpenHuman

@@ -24,10 +23,9 @@ OpenHuman ist deine persönliche KI-Superintelligenz: Lokaler Speicher, verwaltete Dienste wo nötig, schlicht und mächtig.

-

Discord • - Reddit • + DiscussionsX/TwitterDoku@senamakel folgen (Creator) @@ -63,9 +61,11 @@ irm https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/instal ``` + > **Linux:** the AppImage can crash on launch under Wayland (and on Arch-based distros with `sharun: Interpreter not found!`) — see [#2463](https://github.com/tinyhumansai/openhuman/issues/2463) for the cause and env-var workarounds. -Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); -once published, Arch users can install it with `yay -S openhuman-bin`. +> Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); +> once published, Arch users can install it with `yay -S openhuman-bin`. + # Was ist OpenHuman? @@ -80,7 +80,7 @@ OpenHuman ist ein quelloffener, agentenbasierter Assistent, der sich in deinen A - **[Memory Tree](https://tinyhumans.gitbook.io/openhuman/features/memory-tree) + [Obsidian-Wiki](https://tinyhumans.gitbook.io/openhuman/features/obsidian-wiki)**: eine lokal-zentrierte Wissensbasis, aufgebaut aus deinen Daten und deinen Aktivitäten. Alles, was du verbindest, wird in Markdown-Chunks von ≤3k Tokens kanonisiert, bewertet und in hierarchische Zusammenfassungs-Bäume gefaltet, gespeichert in **SQLite auf deiner Maschine**. Dieselben Chunks landen als `.md`-Dateien in einem Obsidian-kompatiblen Vault, das du öffnen, durchstöbern und editieren kannst — inspiriert von Karpathys [obsidian-wiki-Workflow](https://x.com/karpathy/status/2039805659525644595). -- **Alles eingebaut**: Web-Suche, ein Web-Fetch-[Scraper](https://tinyhumans.gitbook.io/openhuman/features/native-tools), ein vollständiges Coder-Toolset (Dateisystem, Git, Lint, Test, Grep) und [native Sprache](https://tinyhumans.gitbook.io/openhuman/features/voice) (STT als Eingabe, ElevenLabs TTS als Ausgabe, Lippensynchronisation für das Maskottchen, Live-Google-Meet-Agent) sind ab Werk verdrahtet. Standardmäßig nutzt [Model-Routing](https://tinyhumans.gitbook.io/openhuman/features/model-routing) das OpenHuman-Backend, um das passende LLM für jede Workload auszuwählen und zu proxien (Reasoning, Fast oder Vision). Ein Abo umfasst alle Modelle. Keine "erst-ein-Plugin-installieren-um-Dateien-zu-lesen"-Hürde. [Optional lokale KI über Ollama](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai) für On-Device-Workloads. +- **Alles eingebaut**: Web-Suche, ein Web-Fetch-[Scraper](https://tinyhumans.gitbook.io/openhuman/features/native-tools), ein vollständiges Coder-Toolset (Dateisystem, Git, Lint, Test, Grep) und [native Sprache](https://tinyhumans.gitbook.io/openhuman/features/native-tools/voice) (STT als Eingabe, ElevenLabs TTS als Ausgabe, Lippensynchronisation für das Maskottchen, Live-Google-Meet-Agent) sind ab Werk verdrahtet. Standardmäßig nutzt [Model-Routing](https://tinyhumans.gitbook.io/openhuman/features/model-routing) das OpenHuman-Backend, um das passende LLM für jede Workload auszuwählen und zu proxien (Reasoning, Fast oder Vision). Ein Abo umfasst alle Modelle. Keine "erst-ein-Plugin-installieren-um-Dateien-zu-lesen"-Hürde. [Optional lokale KI über Ollama](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai) für On-Device-Workloads. - **[Smarte Token-Kompression (TokenJuice)](https://tinyhumans.gitbook.io/openhuman/features/token-compression)**: Jeder Tool-Aufruf, jedes Scrape-Ergebnis, jeder E-Mail-Text und jeder Such-Payload läuft durch eine Token-Kompressionsschicht, bevor er ein LLM-Modell erreicht. HTML wird zu Markdown konvertiert, lange URLs werden gekürzt, und ausschweifende Tool-Ausgaben werden über eine konfigurierbare Regel-Ebene dedupliziert und zusammengefasst usw. CJK, Emojis und andere Multi-Byte-Texte bleiben Graphem für Graphem erhalten — niemals abgeschnitten. Du erhältst dieselbe Information bei einem Bruchteil der Tokens. Kosten und Latenz sinken um bis zu 80%. @@ -116,24 +116,24 @@ Du hostest [agentmemory](https://github.com/rohitg00/agentmemory) bereits selbst Übersichtsvergleich (Produkte entwickeln sich weiter — bitte beim jeweiligen Anbieter verifizieren). OpenHuman ist darauf ausgelegt, **Vendor-Wildwuchs zu reduzieren**, **Workflow-Wissen auf dem Gerät zu halten** und dem Agenten eine **persistente Erinnerung** an deine Daten zu geben — nicht nur an den Chat. -| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| ------------------- | ----------------- | ----------------- | ----------------- | ---------------------------------- | -| **Quelloffen** | 🚫 Proprietär | ✅ MIT | ✅ MIT | ✅ GNU | -| **Einfacher Einstieg** | ✅ Desktop + CLI | ⚠️ Terminal zuerst | ⚠️ Terminal zuerst | ✅ Aufgeräumte UI, in Minuten | -| **Kosten** | ⚠️ Abo + Zusatzkosten | ⚠️ BYO-Modelle | ⚠️ BYO-Modelle | ✅ Ein Abo + TokenJuice | -| **Memory** | ✅ chat-gebunden | ⚠️ plugin-abhängig | ✅ selbstlernend | 🚀 Memory Tree + Obsidian-Vault, optional [agentmemory](https://github.com/rohitg00/agentmemory)-Backend | -| **Integrationen** | ⚠️ wenige Konnektoren | ⚠️ BYO | ⚠️ BYO | 🚀 118+ über OAuth | -| **Auto-Fetch** | 🚫 keiner | 🚫 keiner | 🚫 keiner | ✅ 20-Min.-Sync ins Memory | -| **API-Wildwuchs** | 🚫 zusätzliche Keys | 🚫 BYOK | 🚫 Multi-Vendor | ✅ ein Account | -| **Model-Routing** | 🚫 nur ein Modell | ⚠️ manuell | ⚠️ manuell | ✅ eingebaut | -| **Native Tools** | ✅ nur Code | ✅ nur Code | ✅ nur Code | ✅ Code + Suche + Scraper + Sprache | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| ---------------------- | --------------------- | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------- | +| **Quelloffen** | 🚫 Proprietär | ✅ MIT | ✅ MIT | ✅ GNU | +| **Einfacher Einstieg** | ✅ Desktop + CLI | ⚠️ Terminal zuerst | ⚠️ Terminal zuerst | ✅ Aufgeräumte UI, in Minuten | +| **Kosten** | ⚠️ Abo + Zusatzkosten | ⚠️ BYO-Modelle | ⚠️ BYO-Modelle | ✅ Ein Abo + TokenJuice | +| **Memory** | ✅ chat-gebunden | ⚠️ plugin-abhängig | ✅ selbstlernend | 🚀 Memory Tree + Obsidian-Vault, optional [agentmemory](https://github.com/rohitg00/agentmemory)-Backend | +| **Integrationen** | ⚠️ wenige Konnektoren | ⚠️ BYO | ⚠️ BYO | 🚀 118+ über OAuth | +| **Auto-Fetch** | 🚫 keiner | 🚫 keiner | 🚫 keiner | ✅ 20-Min.-Sync ins Memory | +| **API-Wildwuchs** | 🚫 zusätzliche Keys | 🚫 BYOK | 🚫 Multi-Vendor | ✅ ein Account | +| **Model-Routing** | 🚫 nur ein Modell | ⚠️ manuell | ⚠️ manuell | ✅ eingebaut | +| **Native Tools** | ✅ nur Code | ✅ nur Code | ✅ nur Code | ✅ Code + Suche + Scraper + Sprache | # Gib uns einen Stern auf GitHub _Baust du auch in Richtung AGI und künstlichem Bewusstsein? Setze einen Stern und hilf anderen, den Weg zu finden._

- + diff --git a/docs/README.ja-JP.md b/docs/README.ja-JP.md index 9e26642754..6ce689ba75 100644 --- a/docs/README.ja-JP.md +++ b/docs/README.ja-JP.md @@ -19,10 +19,9 @@ OpenHuman はあなたのパーソナル AI スーパーインテリジェンスです:ローカルメモリ、必要に応じてマネージドサービス、シンプルで強力。

-

Discord • - Reddit • + DiscussionsX/Twitterドキュメント@senamakel(作者)をフォロー @@ -32,8 +31,6 @@ 🇺🇸 English | 🇨🇳 简体中文 | 🇯🇵 日本語 | 🇰🇷 한국어 | 🇩🇪 Deutsch | 🇵🇰 اردو

- -

Early Beta 最新リリース @@ -63,9 +60,11 @@ irm https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/instal ``` + > **Linux:** the AppImage can crash on launch under Wayland (and on Arch-based distros with `sharun: Interpreter not found!`) — see [#2463](https://github.com/tinyhumansai/openhuman/issues/2463) for the cause and env-var workarounds. -Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); -once published, Arch users can install it with `yay -S openhuman-bin`. +> Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); +> once published, Arch users can install it with `yay -S openhuman-bin`. + # OpenHuman とは? @@ -80,7 +79,7 @@ OpenHuman は、あなたの日常生活に統合されるよう設計された - **[Memory Tree](https://tinyhumans.gitbook.io/openhuman/features/memory-tree) + [Obsidian Wiki](https://tinyhumans.gitbook.io/openhuman/features/obsidian-wiki)**: あなたのデータとアクティビティから構築されるローカルファーストのナレッジベースです。接続したすべての情報は ≤3k トークンの Markdown チャンクへ正規化され、スコアリングされ、階層的なサマリーツリーに畳み込まれて **あなたのマシン上の SQLite** に保存されます。同じチャンクは Obsidian 互換のボルトに `.md` ファイルとして配置され、開いて閲覧・編集できます。Karpathy 氏の [obsidian-wiki ワークフロー](https://x.com/karpathy/status/2039805659525644595)にインスパイアされています。 -- **電池同梱(Batteries included)**: ウェブ検索、ウェブフェッチ用[スクレイパー](https://tinyhumans.gitbook.io/openhuman/features/native-tools)、フルコーダーツールセット(ファイルシステム、git、lint、test、grep)、そして[ネイティブ音声](https://tinyhumans.gitbook.io/openhuman/features/voice)(STT 入力、ElevenLabs TTS 出力、マスコットのリップシンク、ライブ Google Meet エージェント)がデフォルトで組み込まれています。デフォルトで、[モデルルーティング](https://tinyhumans.gitbook.io/openhuman/features/model-routing)は OpenHuman バックエンドを使用して各ワークロードに適切な LLM(reasoning、fast、または vision)を選択およびプロキシします。一つのサブスクリプションですべてのモデルが含まれます。「ファイル読み込みのためにプラグインをインストール」という煩わしさはありません。デバイス上のワークロード向けに [Ollama によるオプショナルなローカル AI](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai) も利用できます。 +- **電池同梱(Batteries included)**: ウェブ検索、ウェブフェッチ用[スクレイパー](https://tinyhumans.gitbook.io/openhuman/features/native-tools)、フルコーダーツールセット(ファイルシステム、git、lint、test、grep)、そして[ネイティブ音声](https://tinyhumans.gitbook.io/openhuman/features/native-tools/voice)(STT 入力、ElevenLabs TTS 出力、マスコットのリップシンク、ライブ Google Meet エージェント)がデフォルトで組み込まれています。デフォルトで、[モデルルーティング](https://tinyhumans.gitbook.io/openhuman/features/model-routing)は OpenHuman バックエンドを使用して各ワークロードに適切な LLM(reasoning、fast、または vision)を選択およびプロキシします。一つのサブスクリプションですべてのモデルが含まれます。「ファイル読み込みのためにプラグインをインストール」という煩わしさはありません。デバイス上のワークロード向けに [Ollama によるオプショナルなローカル AI](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai) も利用できます。 - **[スマートトークン圧縮 (TokenJuice)](https://tinyhumans.gitbook.io/openhuman/features/token-compression)**: すべてのツール呼び出し、スクレイプ結果、メール本文、検索ペイロードは、LLM モデルに渡される前にトークン圧縮レイヤーを通過します。HTML は Markdown に変換され、長い URL は短縮され、冗長なツール出力は設定可能なルールレイヤーで重複排除と要約が行われるなど…。CJK、絵文字などのマルチバイト文字は書記素(grapheme)単位で完全に保持され、除去されることはありません。同じ情報をわずかなトークン数で得られます。コストとレイテンシを最大 80% 削減します。 @@ -116,24 +115,24 @@ OpenHuman はその待ち時間をスキップします。アカウントを接 ハイレベルな比較です(製品は進化するため、各ベンダーで確認してください)。OpenHuman は **ベンダーの乱立を最小限に抑え**、**ワークフロー知識をデバイス上に保ち**、チャットだけでなくあなたのデータに対する **永続的なメモリ** をエージェントに与えるよう構築されています。 -| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| -------------------- | ------------------- | ------------------- | ------------------- | -------------------------------------------------- | -| **オープンソース** | 🚫 プロプライエタリ | ✅ MIT | ✅ MIT | ✅ GNU | -| **開始が簡単** | ✅ デスクトップ + CLI | ⚠️ ターミナル中心 | ⚠️ ターミナル中心 | ✅ クリーンな UI、数分 | -| **コスト** | ⚠️ サブスク + アドオン | ⚠️ モデル持ち込み | ⚠️ モデル持ち込み | ✅ 1 つのサブスク + TokenJuice | -| **メモリ** | ✅ チャット範囲のみ | ⚠️ プラグイン依存 | ✅ 自己学習 | 🚀 Memory Tree + Obsidian ボルト、オプションの [agentmemory](https://github.com/rohitg00/agentmemory) バックエンド | -| **統合** | ⚠️ 少数のコネクター | ⚠️ 持ち込み | ⚠️ 持ち込み | 🚀 OAuth 経由で 118+ | -| **自動取得** | 🚫 なし | 🚫 なし | 🚫 なし | ✅ 20 分同期でメモリに取り込み | -| **API の乱立** | 🚫 追加キー | 🚫 BYOK | 🚫 マルチベンダー | ✅ 1 アカウント | -| **モデルルーティング** | 🚫 単一モデル | ⚠️ 手動 | ⚠️ 手動 | ✅ ビルトイン | -| **ネイティブツール** | ✅ コードのみ | ✅ コードのみ | ✅ コードのみ | ✅ コード + 検索 + スクレイパー + 音声 | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| ---------------------- | ---------------------- | ----------------- | ----------------- | ------------------------------------------------------------------------------------------------------------------ | +| **オープンソース** | 🚫 プロプライエタリ | ✅ MIT | ✅ MIT | ✅ GNU | +| **開始が簡単** | ✅ デスクトップ + CLI | ⚠️ ターミナル中心 | ⚠️ ターミナル中心 | ✅ クリーンな UI、数分 | +| **コスト** | ⚠️ サブスク + アドオン | ⚠️ モデル持ち込み | ⚠️ モデル持ち込み | ✅ 1 つのサブスク + TokenJuice | +| **メモリ** | ✅ チャット範囲のみ | ⚠️ プラグイン依存 | ✅ 自己学習 | 🚀 Memory Tree + Obsidian ボルト、オプションの [agentmemory](https://github.com/rohitg00/agentmemory) バックエンド | +| **統合** | ⚠️ 少数のコネクター | ⚠️ 持ち込み | ⚠️ 持ち込み | 🚀 OAuth 経由で 118+ | +| **自動取得** | 🚫 なし | 🚫 なし | 🚫 なし | ✅ 20 分同期でメモリに取り込み | +| **API の乱立** | 🚫 追加キー | 🚫 BYOK | 🚫 マルチベンダー | ✅ 1 アカウント | +| **モデルルーティング** | 🚫 単一モデル | ⚠️ 手動 | ⚠️ 手動 | ✅ ビルトイン | +| **ネイティブツール** | ✅ コードのみ | ✅ コードのみ | ✅ コードのみ | ✅ コード + 検索 + スクレイパー + 音声 | # GitHub でスターをお願いします _AGI と人工意識への道を進んでいますか? リポジトリにスターをつけて、他の人にも道筋を見つけてもらいましょう。_

- + diff --git a/docs/README.ko.md b/docs/README.ko.md index 83900635d4..ae69f3684e 100644 --- a/docs/README.ko.md +++ b/docs/README.ko.md @@ -19,10 +19,9 @@ OpenHuman은 당신의 개인용 AI 슈퍼 지능입니다: 로컬 메모리, 필요한 경우 관리형 서비스, 단순하고 강력합니다.

-

Discord • - Reddit • + DiscussionsX/Twitter문서@senamakel(제작자) 팔로우 @@ -32,8 +31,6 @@ 🇺🇸 English | 🇨🇳 简体中文 | 🇯🇵 日本語 | 🇰🇷 한국어 | 🇩🇪 Deutsch | 🇵🇰 اردو

- -

얼리 베타 최신 릴리스 @@ -64,9 +61,11 @@ irm https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/instal ``` + > **Linux:** the AppImage can crash on launch under Wayland (and on Arch-based distros with `sharun: Interpreter not found!`) — see [#2463](https://github.com/tinyhumansai/openhuman/issues/2463) for the cause and env-var workarounds. -Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); -once published, Arch users can install it with `yay -S openhuman-bin`. +> Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); +> once published, Arch users can install it with `yay -S openhuman-bin`. + # OpenHuman이란 무엇인가요? @@ -79,7 +78,7 @@ OpenHuman은 일상 생활에 통합되도록 설계된 오픈 소스 에이전 - **[메모리 트리(Memory Tree)](https://tinyhumans.gitbook.io/openhuman/features/memory-tree) + [Obsidian 위키](https://tinyhumans.gitbook.io/openhuman/features/obsidian-wiki)**: 당신의 데이터와 활동을 바탕으로 구축된 로컬 우선 지식 베이스입니다. 연결된 모든 것은 3k 토큰 이하의 Markdown 청크로 규격화되고 점수가 매겨지며, **당신의 머신에 있는 SQLite**에 저장되는 계층적 요약 트리로 접힙니다. 동일한 청크는 당신이 열고, 탐색하고, 편집할 수 있는 Obsidian 호환 볼트에 `.md` 파일로 저장됩니다. 이는 Karpathy의 [obsidian-wiki 워크플로우](https://x.com/karpathy/status/2039805659525644595)에서 영감을 받았습니다. -- **모든 것이 포함됨(Batteries included)**: 웹 검색, 웹 가져오기 [스크레이퍼](https://tinyhumans.gitbook.io/openhuman/features/native-tools), 전체 코더 툴셋(파일 시스템, git, lint, test, grep), 그리고 [네이티브 음성](https://tinyhumans.gitbook.io/openhuman/features/voice)(STT 입력, ElevenLabs TTS 출력, 마스코트 립싱크, 라이브 Google Meet 에이전트)이 기본적으로 연결되어 있습니다. 기본적으로 [모델 라우팅](https://tinyhumans.gitbook.io/openhuman/features/model-routing)은 OpenHuman 백엔드를 사용하여 각 워크로드에 적합한 LLM(추론, 고속 또는 비전)을 선택하고 프록시합니다. 하나의 구독에 모든 모델이 포함됩니다. "파일을 읽기 위해 플러그인 설치"와 같은 번거로움이 없습니다. 온디바이스 워크로드를 위해 [Ollama를 통한 선택적 로컬 AI](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai)를 지원합니다. +- **모든 것이 포함됨(Batteries included)**: 웹 검색, 웹 가져오기 [스크레이퍼](https://tinyhumans.gitbook.io/openhuman/features/native-tools), 전체 코더 툴셋(파일 시스템, git, lint, test, grep), 그리고 [네이티브 음성](https://tinyhumans.gitbook.io/openhuman/features/native-tools/voice)(STT 입력, ElevenLabs TTS 출력, 마스코트 립싱크, 라이브 Google Meet 에이전트)이 기본적으로 연결되어 있습니다. 기본적으로 [모델 라우팅](https://tinyhumans.gitbook.io/openhuman/features/model-routing)은 OpenHuman 백엔드를 사용하여 각 워크로드에 적합한 LLM(추론, 고속 또는 비전)을 선택하고 프록시합니다. 하나의 구독에 모든 모델이 포함됩니다. "파일을 읽기 위해 플러그인 설치"와 같은 번거로움이 없습니다. 온디바이스 워크로드를 위해 [Ollama를 통한 선택적 로컬 AI](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai)를 지원합니다. - **[스마트 토큰 압축(TokenJuice)](https://tinyhumans.gitbook.io/openhuman/features/token-compression)**: 모든 도구 호출, 스크레이핑 결과, 이메일 본문 및 검색 페이로드는 LLM 모델에 전달되기 전에 토큰 압축 레이어를 거칩니다. HTML은 Markdown으로 변환되고, 긴 URL은 단축되며, 장황한 도구 출력은 구성 가능한 규칙 오버레이 등을 통해 중복 제거 및 요약됩니다. CJK, 이모지 및 기타 멀티바이트 텍스트는 자소(grapheme) 단위로 보존되며 절대 삭제되지 않습니다. 동일한 정보를 훨씬 적은 토큰으로 얻을 수 있어 비용과 지연 시간을 최대 80%까지 줄일 수 있습니다. @@ -115,24 +114,24 @@ OpenHuman은 기다림을 생략합니다. 계정을 연결하고, [자동 가 상위 수준 비교(제품은 진화하므로 각 벤더에 확인하세요). OpenHuman은 **벤더 분산화(sprawl)를 최소화**하고, **워크플로우 지식을 기기에 유지**하며, 채팅뿐만 아니라 당신의 데이터에 대한 **지속적인 기억**을 에이전트에게 제공하도록 구축되었습니다. -| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| ------------------- | ----------------- | ----------------- | ----------------- | ---------------------------------- | -| **오픈 소스** | 🚫 독점 소스 | ✅ MIT | ✅ MIT | ✅ GNU | -| **시작하기 쉬움** | ✅ 데스크톱 + CLI | ⚠️ 터미널 우선 | ⚠️ 터미널 우선 | ✅ 깔끔한 UI, 단 몇 분 | -| **비용** | ⚠️ 구독 + 애드온 | ⚠️ 모델 직접 제공 | ⚠️ 모델 직접 제공 | ✅ 단일 구독 + TokenJuice | -| **메모리** | ✅ 채팅 범위 한정 | ⚠️ 플러그인 의존 | ✅ 자기 학습 | 🚀 메모리 트리 + Obsidian 볼트, 선택적 [agentmemory](https://github.com/rohitg00/agentmemory) 백엔드 | -| **통합** | ⚠️ 적은 커넥터 | ⚠️ 직접 구축 | ⚠️ 직접 구축 | 🚀 OAuth를 통한 118개 이상 | -| **자동 가져오기** | 🚫 없음 | 🚫 없음 | 🚫 없음 | ✅ 20분마다 메모리로 동기화 | -| **API 분산화** | 🚫 추가 키 필요 | 🚫 BYOK | 🚫 멀티 벤더 | ✅ 단일 계정 | -| **모델 라우팅** | 🚫 단일 모델 | ⚠️ 수동 | ⚠️ 수동 | ✅ 내장됨 | -| **네이티브 도구** | ✅ 코드 전용 | ✅ 코드 전용 | ✅ 코드 전용 | ✅ 코드 + 검색 + 스크레이퍼 + 음성 | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| ----------------- | ----------------- | ----------------- | ----------------- | ---------------------------------------------------------------------------------------------------- | +| **오픈 소스** | 🚫 독점 소스 | ✅ MIT | ✅ MIT | ✅ GNU | +| **시작하기 쉬움** | ✅ 데스크톱 + CLI | ⚠️ 터미널 우선 | ⚠️ 터미널 우선 | ✅ 깔끔한 UI, 단 몇 분 | +| **비용** | ⚠️ 구독 + 애드온 | ⚠️ 모델 직접 제공 | ⚠️ 모델 직접 제공 | ✅ 단일 구독 + TokenJuice | +| **메모리** | ✅ 채팅 범위 한정 | ⚠️ 플러그인 의존 | ✅ 자기 학습 | 🚀 메모리 트리 + Obsidian 볼트, 선택적 [agentmemory](https://github.com/rohitg00/agentmemory) 백엔드 | +| **통합** | ⚠️ 적은 커넥터 | ⚠️ 직접 구축 | ⚠️ 직접 구축 | 🚀 OAuth를 통한 118개 이상 | +| **자동 가져오기** | 🚫 없음 | 🚫 없음 | 🚫 없음 | ✅ 20분마다 메모리로 동기화 | +| **API 분산화** | 🚫 추가 키 필요 | 🚫 BYOK | 🚫 멀티 벤더 | ✅ 단일 계정 | +| **모델 라우팅** | 🚫 단일 모델 | ⚠️ 수동 | ⚠️ 수동 | ✅ 내장됨 | +| **네이티브 도구** | ✅ 코드 전용 | ✅ 코드 전용 | ✅ 코드 전용 | ✅ 코드 + 검색 + 스크레이퍼 + 음성 | # GitHub에서 스타를 눌러주세요 _AGI와 인공 의식을 향해 나아가고 계신가요? 저장소에 스타를 눌러 다른 사람들도 이 길을 찾을 수 있도록 도와주세요._

- + diff --git a/docs/README.ur-pk.md b/docs/README.ur-pk.md index ecd7fda64f..4bdd4d1487 100644 --- a/docs/README.ur-pk.md +++ b/docs/README.ur-pk.md @@ -34,7 +34,7 @@

ڈسکارڈ • - ریڈٹ • + DiscussionsX/ٹویٹردستاویزاتفالو کریں @senamakel (مصنف) @@ -152,7 +152,7 @@ OpenHuman ایک اوپن سورس ایجنٹک اسسٹنٹ ہے جو آپ کی - **[میموری ٹری](https://tinyhumans.gitbook.io/openhuman/features/memory-tree) + [Obsidian Wiki](https://tinyhumans.gitbook.io/openhuman/features/obsidian-wiki)**: ایک مقامی اول علم کا ذخیرہ جو آپ کے ڈیٹا اور سرگرمی سے بنایا گیا ہے۔ آپ جو کچھ بھی جوڑتے ہیں وہ ≤3k-token کے Markdown ٹکڑوں میں معیاری ہو جاتا ہے، اسکور کیا جاتا ہے، اور درجہ بندی کے خلاصے کے درختوں میں جوڑ دیا جاتا ہے جو **آپ کی مشین پر SQLite** میں محفوظ ہوتے ہیں۔ وہی ٹکڑے Obsidian-مطابق والٹ میں `.md` فائلوں کے طور پر اترتے ہیں جسے آپ کھول سکتے ہیں، براؤز اور ایڈٹ کر سکتے ہیں، کارپیتھی کے [obsidian-wiki ورک فلو](https://x.com/karpathy/status/2039805659525644595) سے متاثر۔ -- **سب کچھ شامل ہے**: ویب سرچ، ایک ویب فیچ [سکریپر](https://tinyhumans.gitbook.io/openhuman/features/native-tools)، ایک مکمل کوڈر ٹول سیٹ (فائل سسٹم، گٹ، لنٹ، ٹیسٹ، گریپ)، اور [مقامی آواز](https://tinyhumans.gitbook.io/openhuman/features/voice) (STT ان پٹ، ElevenLabs TTS آؤٹ پٹ، مسکاٹ لپ سنک، لائیو Google Meet ایجنٹ) ڈیفالٹ طور پر وائرڈ ہیں۔ ڈیفالٹ طور پر، [ماڈل روٹنگ](https://tinyhumans.gitbook.io/openhuman/features/model-routing) ہر ورک لوڈ (reasoning، fast، یا vision) کے لیے صحیح LLM کو منتخب اور پروکسی کرنے کے لیے OpenHuman بیک اینڈ استعمال کرتی ہے۔ ایک سبسکرپشن میں تمام ماڈلز شامل ہیں۔ کوئی "فائل پڑھنے کے لیے پلگ ان انسٹال کریں" رگڑ نہیں۔ تعاون یافتہ ڈیوائس پر ورک لوڈز کے لیے [Ollama کے ذریعے اختیاری مقامی AI](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai) استعمال کریں۔ +- **سب کچھ شامل ہے**: ویب سرچ، ایک ویب فیچ [سکریپر](https://tinyhumans.gitbook.io/openhuman/features/native-tools)، ایک مکمل کوڈر ٹول سیٹ (فائل سسٹم، گٹ، لنٹ، ٹیسٹ، گریپ)، اور [مقامی آواز](https://tinyhumans.gitbook.io/openhuman/features/native-tools/voice) (STT ان پٹ، ElevenLabs TTS آؤٹ پٹ، مسکاٹ لپ سنک، لائیو Google Meet ایجنٹ) ڈیفالٹ طور پر وائرڈ ہیں۔ ڈیفالٹ طور پر، [ماڈل روٹنگ](https://tinyhumans.gitbook.io/openhuman/features/model-routing) ہر ورک لوڈ (reasoning، fast، یا vision) کے لیے صحیح LLM کو منتخب اور پروکسی کرنے کے لیے OpenHuman بیک اینڈ استعمال کرتی ہے۔ ایک سبسکرپشن میں تمام ماڈلز شامل ہیں۔ کوئی "فائل پڑھنے کے لیے پلگ ان انسٹال کریں" رگڑ نہیں۔ تعاون یافتہ ڈیوائس پر ورک لوڈز کے لیے [Ollama کے ذریعے اختیاری مقامی AI](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai) استعمال کریں۔ - **[اسمارٹ ٹوکن کمپریشن (TokenJuice)](https://tinyhumans.gitbook.io/openhuman/features/token-compression)**: ہر ٹول کال، سکریپ نتیجہ، ای میل باڈی، اور سرچ پے لوڈ کسی بھی LLM ماڈل کو چھونے سے پہلے ٹوکن کمپریشن پرت سے گزرتا ہے۔ HTML کو Markdown میں تبدیل کیا جاتا ہے، لمبے URLs کو چھوٹا کیا جاتا ہے، اور لمبے ٹول آؤٹ پٹ کو ایک قابل ترتیب اصول اوورلے وغیرہ کے ذریعے ڈیڈپ اور خلاصہ کیا جاتا ہے... CJK، ایموجی، اور دیگر ملٹی بائٹ ٹیکسٹ گرافیم بہ گرافیم محفوظ رہتے ہیں — کبھی نہیں ہٹائے جاتے۔ آپ کو وہی معلومات ملتی ہیں لیکن ٹوکنز کے ایک حصے میں۔ لاگت اور تاخیر کو 80% تک کم کرنا۔ @@ -200,17 +200,17 @@ OpenHuman انتظار چھوڑ دیتا ہے۔ اپنے اکاؤنٹس جوڑی

-| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| ------------------- | ----------------- | ----------------- | ----------------- | ---------------------------------- | -| **اوپن سورس** | 🚫 ملکیتی | ✅ MIT | ✅ MIT | ✅ GNU | -| **شروع کرنا آسان** | ✅ ڈیسک ٹاپ + کمانڈ لائن | ⚠️ پہلے ٹرمینل | ⚠️ پہلے ٹرمینل | ✅ صاف یوزر انٹرفیس، منٹوں میں | -| **لاگت** | ⚠️ سبسکرپشن + ایڈ آنز | ⚠️ اپنے ماڈل | ⚠️ اپنے ماڈل | ✅ ایک سبسکرپشن + TokenJuice | -| **یادداشت** | ✅ چیٹ تک محدود | ⚠️ پلگ ان پر انحصار | ✅ خود سیکھنا | 🚀 میموری ٹری + Obsidian والٹ، اختیاری [agentmemory](https://github.com/rohitg00/agentmemory) بیک اینڈ | -| **انضمام** | ⚠️ چند کنیکٹر | ⚠️ خود لائیں | ⚠️ خود لائیں | 🚀 118+ OAuth کے ذریعے | -| **خودکار لانا** | 🚫 کوئی نہیں | 🚫 کوئی نہیں | 🚫 کوئی نہیں | ✅ 20 منٹ سنک میموری میں | -| **API پھیلاؤ** | 🚫 اضافی چابیاں | 🚫 اپنی چابیاں | 🚫 کئی وینڈر | ✅ ایک اکاؤنٹ | -| **ماڈل روٹنگ** | 🚫 ایک ماڈل | ⚠️ دستی | ⚠️ دستی | ✅ بلٹ ان | -| **مقامی ٹولز** | ✅ صرف کوڈ | ✅ صرف کوڈ | ✅ صرف کوڈ | ✅ کوڈ + سرچ + سکریپر + آواز | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| ------------------ | ------------------------ | ------------------- | -------------- | ------------------------------------------------------------------------------------------------------ | +| **اوپن سورس** | 🚫 ملکیتی | ✅ MIT | ✅ MIT | ✅ GNU | +| **شروع کرنا آسان** | ✅ ڈیسک ٹاپ + کمانڈ لائن | ⚠️ پہلے ٹرمینل | ⚠️ پہلے ٹرمینل | ✅ صاف یوزر انٹرفیس، منٹوں میں | +| **لاگت** | ⚠️ سبسکرپشن + ایڈ آنز | ⚠️ اپنے ماڈل | ⚠️ اپنے ماڈل | ✅ ایک سبسکرپشن + TokenJuice | +| **یادداشت** | ✅ چیٹ تک محدود | ⚠️ پلگ ان پر انحصار | ✅ خود سیکھنا | 🚀 میموری ٹری + Obsidian والٹ، اختیاری [agentmemory](https://github.com/rohitg00/agentmemory) بیک اینڈ | +| **انضمام** | ⚠️ چند کنیکٹر | ⚠️ خود لائیں | ⚠️ خود لائیں | 🚀 118+ OAuth کے ذریعے | +| **خودکار لانا** | 🚫 کوئی نہیں | 🚫 کوئی نہیں | 🚫 کوئی نہیں | ✅ 20 منٹ سنک میموری میں | +| **API پھیلاؤ** | 🚫 اضافی چابیاں | 🚫 اپنی چابیاں | 🚫 کئی وینڈر | ✅ ایک اکاؤنٹ | +| **ماڈل روٹنگ** | 🚫 ایک ماڈل | ⚠️ دستی | ⚠️ دستی | ✅ بلٹ ان | +| **مقامی ٹولز** | ✅ صرف کوڈ | ✅ صرف کوڈ | ✅ صرف کوڈ | ✅ کوڈ + سرچ + سکریپر + آواز |
@@ -225,7 +225,7 @@ _AGI اور مصنوعی شعور کی طرف بڑھ رہے ہیں؟ ریپو ک

- + diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md index 8f9d2e8153..6ede886da2 100644 --- a/docs/README.zh-CN.md +++ b/docs/README.zh-CN.md @@ -23,10 +23,9 @@ OpenHuman 是你的个人 AI 超级智能:本地记忆,按需托管服务,简洁而强大。

-

Discord • - Reddit • + DiscussionsX/Twitter文档关注 @senamakel(作者) @@ -61,9 +60,11 @@ irm https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/instal ``` + > **Linux:** the AppImage can crash on launch under Wayland (and on Arch-based distros with `sharun: Interpreter not found!`) — see [#2463](https://github.com/tinyhumansai/openhuman/issues/2463) for the cause and env-var workarounds. -Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); -once published, Arch users can install it with `yay -S openhuman-bin`. +> Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); +> once published, Arch users can install it with `yay -S openhuman-bin`. + # 什么是 OpenHuman? @@ -78,7 +79,7 @@ OpenHuman 是一个开源智能助手,旨在融入你的日常生活。以下 - **[记忆树](https://tinyhumans.gitbook.io/openhuman/features/memory-tree) + [Obsidian Wiki](https://tinyhumans.gitbook.io/openhuman/features/obsidian-wiki)**:一个基于你的数据和活动构建的本地优先知识库。你连接的所有内容都被规范化为不超过 3k token 的 Markdown 片段,经过评分后折叠成层级化的摘要树,存储在**你本机的 SQLite** 中。同样的片段以 `.md` 文件形式落地到兼容 Obsidian 的仓库中,你可以打开、浏览和编辑,灵感来源于 Karpathy 的 [obsidian-wiki 工作流](https://x.com/karpathy/status/2039805659525644595)。 -- **开箱即用**:默认内置网络搜索、网页抓取[爬虫](https://tinyhumans.gitbook.io/openhuman/features/native-tools)、完整的编码工具集(文件系统、git、lint、test、grep)以及[原生语音](https://tinyhumans.gitbook.io/openhuman/features/voice)(STT 输入、ElevenLabs TTS 输出、吉祥物口型同步、实时 Google Meet 智能体)。默认情况下,[模型路由](https://tinyhumans.gitbook.io/openhuman/features/model-routing)使用 OpenHuman 后端来选择和代理每个工作负载的合适 LLM(推理型、快速型或视觉型)。一个订阅包含所有模型。没有"安装插件才能读文件"的摩擦。[可选通过 Ollama 使用本地 AI](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai) 处理端侧工作负载。 +- **开箱即用**:默认内置网络搜索、网页抓取[爬虫](https://tinyhumans.gitbook.io/openhuman/features/native-tools)、完整的编码工具集(文件系统、git、lint、test、grep)以及[原生语音](https://tinyhumans.gitbook.io/openhuman/features/native-tools/voice)(STT 输入、ElevenLabs TTS 输出、吉祥物口型同步、实时 Google Meet 智能体)。默认情况下,[模型路由](https://tinyhumans.gitbook.io/openhuman/features/model-routing)使用 OpenHuman 后端来选择和代理每个工作负载的合适 LLM(推理型、快速型或视觉型)。一个订阅包含所有模型。没有"安装插件才能读文件"的摩擦。[可选通过 Ollama 使用本地 AI](https://tinyhumans.gitbook.io/openhuman/features/model-routing/local-ai) 处理端侧工作负载。 - **[智能 Token 压缩(TokenJuice)](https://tinyhumans.gitbook.io/openhuman/features/token-compression)**:每个工具调用、抓取结果、邮件正文和搜索载荷在触达任何 LLM 模型之前都会经过 token 压缩层处理。HTML 被转换为 Markdown,长 URL 被缩短,冗长的工具输出会通过可配置的规则层去重并摘要等等。中文、emoji 等多字节字符按字形(grapheme)完整保留,绝不丢弃。你获得相同的信息,但 token 消耗仅为原来的几分之一。最多可降低 80% 的成本和延迟。 @@ -114,24 +115,24 @@ OpenHuman 跳过了等待期。连接你的账户,让[自动拉取](https://ti 高层次对比(产品持续演进,请以各厂商最新情况为准)。OpenHuman 的设计目标是**减少供应商碎片化**、将**工作流知识保留在设备上**、为智能体提供对你数据的**持久记忆**,而不仅仅是对话。 -| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| ------------------- | ----------------- | ----------------- | ----------------- | ---------------------------------- | -| **开源** | 🚫 闭源 | ✅ MIT | ✅ MIT | ✅ GNU | -| **易上手** | ✅ 桌面 + CLI | ⚠️ 终端优先 | ⚠️ 终端优先 | ✅ 清爽 UI,几分钟上手 | -| **成本** | ⚠️ 订阅 + 附加项 | ⚠️ 自带模型 | ⚠️ 自带模型 | ✅ 单一订阅 + TokenJuice | -| **记忆** | ✅ 对话范围 | ⚠️ 依赖插件 | ✅ 自学习 | 🚀 记忆树 + Obsidian 仓库,可选 [agentmemory](https://github.com/rohitg00/agentmemory) 后端 | -| **集成** | ⚠️ 少量连接器 | ⚠️ 自行接入 | ⚠️ 自行接入 | 🚀 118+ 通过 OAuth | -| **自动拉取** | 🚫 无 | 🚫 无 | 🚫 无 | ✅ 20 分钟同步到记忆 | -| **API 碎片化** | 🚫 额外密钥 | 🚫 自带密钥 | 🚫 多供应商 | ✅ 一个账户 | -| **模型路由** | 🚫 单一模型 | ⚠️ 手动 | ⚠️ 手动 | ✅ 内置 | -| **原生工具** | ✅ 仅代码 | ✅ 仅代码 | ✅ 仅代码 | ✅ 代码 + 搜索 + 抓取 + 语音 | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| -------------- | ---------------- | ----------- | ------------ | ------------------------------------------------------------------------------------------- | +| **开源** | 🚫 闭源 | ✅ MIT | ✅ MIT | ✅ GNU | +| **易上手** | ✅ 桌面 + CLI | ⚠️ 终端优先 | ⚠️ 终端优先 | ✅ 清爽 UI,几分钟上手 | +| **成本** | ⚠️ 订阅 + 附加项 | ⚠️ 自带模型 | ⚠️ 自带模型 | ✅ 单一订阅 + TokenJuice | +| **记忆** | ✅ 对话范围 | ⚠️ 依赖插件 | ✅ 自学习 | 🚀 记忆树 + Obsidian 仓库,可选 [agentmemory](https://github.com/rohitg00/agentmemory) 后端 | +| **集成** | ⚠️ 少量连接器 | ⚠️ 自行接入 | ⚠️ 自行接入 | 🚀 118+ 通过 OAuth | +| **自动拉取** | 🚫 无 | 🚫 无 | 🚫 无 | ✅ 20 分钟同步到记忆 | +| **API 碎片化** | 🚫 额外密钥 | 🚫 自带密钥 | 🚫 多供应商 | ✅ 一个账户 | +| **模型路由** | 🚫 单一模型 | ⚠️ 手动 | ⚠️ 手动 | ✅ 内置 | +| **原生工具** | ✅ 仅代码 | ✅ 仅代码 | ✅ 仅代码 | ✅ 代码 + 搜索 + 抓取 + 语音 | # 在 GitHub 上为我们加星 _致力于 AGI 和人工意识?为仓库加星,帮助更多人找到这条路。_

- + From aedd3853f83eb5aea393fd7a576ef1e185647e13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=86=A0=E8=BE=B0?= Date: Sat, 27 Jun 2026 21:04:07 +0800 Subject: [PATCH 3/4] test(meet): cover active bot join gates --- app/src/services/backendMeetService.test.ts | 27 +++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/app/src/services/backendMeetService.test.ts b/app/src/services/backendMeetService.test.ts index 27242fe7f0..a009ce2c65 100644 --- a/app/src/services/backendMeetService.test.ts +++ b/app/src/services/backendMeetService.test.ts @@ -110,6 +110,33 @@ describe('joinMeetViaBackendBot', () => { ); }); + it('forwards active meeting gates to the core RPC payload', async () => { + mockCallCoreRpc.mockResolvedValueOnce({ + ok: true, + meet_url: 'https://meet.google.com/abc', + platform: 'gmeet', + }); + + await joinMeetViaBackendBot({ + meetUrl: 'https://meet.google.com/abc', + respondToParticipant: ' Alice Chen ', + wakePhrase: ' Hey Tiny ', + correlationId: ' meet-123 ', + listenOnly: false, + }); + + expect(mockCallCoreRpc).toHaveBeenCalledWith( + expect.objectContaining({ + params: expect.objectContaining({ + respond_to_participant: 'Alice Chen', + wake_phrase: 'Hey Tiny', + correlation_id: 'meet-123', + listen_only: false, + }), + }) + ); + }); + it('forwards mascotId as mascot_id', async () => { mockCallCoreRpc.mockResolvedValueOnce({ ok: true, From b379646511faf9db549ee355ed6812047b1ab7ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=86=A0=E8=BE=B0?= Date: Sat, 27 Jun 2026 21:07:49 +0800 Subject: [PATCH 4/4] docs: keep readme link fix scoped --- docs/README.de.md | 30 +++++++++++++++--------------- docs/README.ja-JP.md | 31 ++++++++++++++++--------------- docs/README.ko.md | 31 ++++++++++++++++--------------- docs/README.ur-pk.md | 22 +++++++++++----------- docs/README.zh-CN.md | 29 ++++++++++++++--------------- 5 files changed, 72 insertions(+), 71 deletions(-) diff --git a/docs/README.de.md b/docs/README.de.md index 9636619bee..9ab3b9644e 100644 --- a/docs/README.de.md +++ b/docs/README.de.md @@ -2,6 +2,7 @@ 🇺🇸 English | 🇨🇳 简体中文 | 🇯🇵 日本語 | 🇰🇷 한국어 | 🇩🇪 Deutsch | 🇵🇰 اردو

+

OpenHuman

@@ -23,6 +24,7 @@ OpenHuman ist deine persönliche KI-Superintelligenz: Lokaler Speicher, verwaltete Dienste wo nötig, schlicht und mächtig.

+

DiscordDiscussions • @@ -61,11 +63,9 @@ irm https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/instal ``` - > **Linux:** the AppImage can crash on launch under Wayland (and on Arch-based distros with `sharun: Interpreter not found!`) — see [#2463](https://github.com/tinyhumansai/openhuman/issues/2463) for the cause and env-var workarounds. -> Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); -> once published, Arch users can install it with `yay -S openhuman-bin`. - +Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); +once published, Arch users can install it with `yay -S openhuman-bin`. # Was ist OpenHuman? @@ -116,17 +116,17 @@ Du hostest [agentmemory](https://github.com/rohitg00/agentmemory) bereits selbst Übersichtsvergleich (Produkte entwickeln sich weiter — bitte beim jeweiligen Anbieter verifizieren). OpenHuman ist darauf ausgelegt, **Vendor-Wildwuchs zu reduzieren**, **Workflow-Wissen auf dem Gerät zu halten** und dem Agenten eine **persistente Erinnerung** an deine Daten zu geben — nicht nur an den Chat. -| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| ---------------------- | --------------------- | ------------------ | ------------------ | -------------------------------------------------------------------------------------------------------- | -| **Quelloffen** | 🚫 Proprietär | ✅ MIT | ✅ MIT | ✅ GNU | -| **Einfacher Einstieg** | ✅ Desktop + CLI | ⚠️ Terminal zuerst | ⚠️ Terminal zuerst | ✅ Aufgeräumte UI, in Minuten | -| **Kosten** | ⚠️ Abo + Zusatzkosten | ⚠️ BYO-Modelle | ⚠️ BYO-Modelle | ✅ Ein Abo + TokenJuice | -| **Memory** | ✅ chat-gebunden | ⚠️ plugin-abhängig | ✅ selbstlernend | 🚀 Memory Tree + Obsidian-Vault, optional [agentmemory](https://github.com/rohitg00/agentmemory)-Backend | -| **Integrationen** | ⚠️ wenige Konnektoren | ⚠️ BYO | ⚠️ BYO | 🚀 118+ über OAuth | -| **Auto-Fetch** | 🚫 keiner | 🚫 keiner | 🚫 keiner | ✅ 20-Min.-Sync ins Memory | -| **API-Wildwuchs** | 🚫 zusätzliche Keys | 🚫 BYOK | 🚫 Multi-Vendor | ✅ ein Account | -| **Model-Routing** | 🚫 nur ein Modell | ⚠️ manuell | ⚠️ manuell | ✅ eingebaut | -| **Native Tools** | ✅ nur Code | ✅ nur Code | ✅ nur Code | ✅ Code + Suche + Scraper + Sprache | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| ------------------- | ----------------- | ----------------- | ----------------- | ---------------------------------- | +| **Quelloffen** | 🚫 Proprietär | ✅ MIT | ✅ MIT | ✅ GNU | +| **Einfacher Einstieg** | ✅ Desktop + CLI | ⚠️ Terminal zuerst | ⚠️ Terminal zuerst | ✅ Aufgeräumte UI, in Minuten | +| **Kosten** | ⚠️ Abo + Zusatzkosten | ⚠️ BYO-Modelle | ⚠️ BYO-Modelle | ✅ Ein Abo + TokenJuice | +| **Memory** | ✅ chat-gebunden | ⚠️ plugin-abhängig | ✅ selbstlernend | 🚀 Memory Tree + Obsidian-Vault, optional [agentmemory](https://github.com/rohitg00/agentmemory)-Backend | +| **Integrationen** | ⚠️ wenige Konnektoren | ⚠️ BYO | ⚠️ BYO | 🚀 118+ über OAuth | +| **Auto-Fetch** | 🚫 keiner | 🚫 keiner | 🚫 keiner | ✅ 20-Min.-Sync ins Memory | +| **API-Wildwuchs** | 🚫 zusätzliche Keys | 🚫 BYOK | 🚫 Multi-Vendor | ✅ ein Account | +| **Model-Routing** | 🚫 nur ein Modell | ⚠️ manuell | ⚠️ manuell | ✅ eingebaut | +| **Native Tools** | ✅ nur Code | ✅ nur Code | ✅ nur Code | ✅ Code + Suche + Scraper + Sprache | # Gib uns einen Stern auf GitHub diff --git a/docs/README.ja-JP.md b/docs/README.ja-JP.md index 6ce689ba75..96a61d27eb 100644 --- a/docs/README.ja-JP.md +++ b/docs/README.ja-JP.md @@ -19,6 +19,7 @@ OpenHuman はあなたのパーソナル AI スーパーインテリジェンスです:ローカルメモリ、必要に応じてマネージドサービス、シンプルで強力。

+

DiscordDiscussions • @@ -31,6 +32,8 @@ 🇺🇸 English | 🇨🇳 简体中文 | 🇯🇵 日本語 | 🇰🇷 한국어 | 🇩🇪 Deutsch | 🇵🇰 اردو

+ +

Early Beta 最新リリース @@ -60,11 +63,9 @@ irm https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/instal ``` - > **Linux:** the AppImage can crash on launch under Wayland (and on Arch-based distros with `sharun: Interpreter not found!`) — see [#2463](https://github.com/tinyhumansai/openhuman/issues/2463) for the cause and env-var workarounds. -> Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); -> once published, Arch users can install it with `yay -S openhuman-bin`. - +Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); +once published, Arch users can install it with `yay -S openhuman-bin`. # OpenHuman とは? @@ -115,17 +116,17 @@ OpenHuman はその待ち時間をスキップします。アカウントを接 ハイレベルな比較です(製品は進化するため、各ベンダーで確認してください)。OpenHuman は **ベンダーの乱立を最小限に抑え**、**ワークフロー知識をデバイス上に保ち**、チャットだけでなくあなたのデータに対する **永続的なメモリ** をエージェントに与えるよう構築されています。 -| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| ---------------------- | ---------------------- | ----------------- | ----------------- | ------------------------------------------------------------------------------------------------------------------ | -| **オープンソース** | 🚫 プロプライエタリ | ✅ MIT | ✅ MIT | ✅ GNU | -| **開始が簡単** | ✅ デスクトップ + CLI | ⚠️ ターミナル中心 | ⚠️ ターミナル中心 | ✅ クリーンな UI、数分 | -| **コスト** | ⚠️ サブスク + アドオン | ⚠️ モデル持ち込み | ⚠️ モデル持ち込み | ✅ 1 つのサブスク + TokenJuice | -| **メモリ** | ✅ チャット範囲のみ | ⚠️ プラグイン依存 | ✅ 自己学習 | 🚀 Memory Tree + Obsidian ボルト、オプションの [agentmemory](https://github.com/rohitg00/agentmemory) バックエンド | -| **統合** | ⚠️ 少数のコネクター | ⚠️ 持ち込み | ⚠️ 持ち込み | 🚀 OAuth 経由で 118+ | -| **自動取得** | 🚫 なし | 🚫 なし | 🚫 なし | ✅ 20 分同期でメモリに取り込み | -| **API の乱立** | 🚫 追加キー | 🚫 BYOK | 🚫 マルチベンダー | ✅ 1 アカウント | -| **モデルルーティング** | 🚫 単一モデル | ⚠️ 手動 | ⚠️ 手動 | ✅ ビルトイン | -| **ネイティブツール** | ✅ コードのみ | ✅ コードのみ | ✅ コードのみ | ✅ コード + 検索 + スクレイパー + 音声 | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| -------------------- | ------------------- | ------------------- | ------------------- | -------------------------------------------------- | +| **オープンソース** | 🚫 プロプライエタリ | ✅ MIT | ✅ MIT | ✅ GNU | +| **開始が簡単** | ✅ デスクトップ + CLI | ⚠️ ターミナル中心 | ⚠️ ターミナル中心 | ✅ クリーンな UI、数分 | +| **コスト** | ⚠️ サブスク + アドオン | ⚠️ モデル持ち込み | ⚠️ モデル持ち込み | ✅ 1 つのサブスク + TokenJuice | +| **メモリ** | ✅ チャット範囲のみ | ⚠️ プラグイン依存 | ✅ 自己学習 | 🚀 Memory Tree + Obsidian ボルト、オプションの [agentmemory](https://github.com/rohitg00/agentmemory) バックエンド | +| **統合** | ⚠️ 少数のコネクター | ⚠️ 持ち込み | ⚠️ 持ち込み | 🚀 OAuth 経由で 118+ | +| **自動取得** | 🚫 なし | 🚫 なし | 🚫 なし | ✅ 20 分同期でメモリに取り込み | +| **API の乱立** | 🚫 追加キー | 🚫 BYOK | 🚫 マルチベンダー | ✅ 1 アカウント | +| **モデルルーティング** | 🚫 単一モデル | ⚠️ 手動 | ⚠️ 手動 | ✅ ビルトイン | +| **ネイティブツール** | ✅ コードのみ | ✅ コードのみ | ✅ コードのみ | ✅ コード + 検索 + スクレイパー + 音声 | # GitHub でスターをお願いします diff --git a/docs/README.ko.md b/docs/README.ko.md index ae69f3684e..68a040e6f6 100644 --- a/docs/README.ko.md +++ b/docs/README.ko.md @@ -19,6 +19,7 @@ OpenHuman은 당신의 개인용 AI 슈퍼 지능입니다: 로컬 메모리, 필요한 경우 관리형 서비스, 단순하고 강력합니다.

+

DiscordDiscussions • @@ -31,6 +32,8 @@ 🇺🇸 English | 🇨🇳 简体中文 | 🇯🇵 日本語 | 🇰🇷 한국어 | 🇩🇪 Deutsch | 🇵🇰 اردو

+ +

얼리 베타 최신 릴리스 @@ -61,11 +64,9 @@ irm https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/instal ``` - > **Linux:** the AppImage can crash on launch under Wayland (and on Arch-based distros with `sharun: Interpreter not found!`) — see [#2463](https://github.com/tinyhumansai/openhuman/issues/2463) for the cause and env-var workarounds. -> Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); -> once published, Arch users can install it with `yay -S openhuman-bin`. - +Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); +once published, Arch users can install it with `yay -S openhuman-bin`. # OpenHuman이란 무엇인가요? @@ -114,17 +115,17 @@ OpenHuman은 기다림을 생략합니다. 계정을 연결하고, [자동 가 상위 수준 비교(제품은 진화하므로 각 벤더에 확인하세요). OpenHuman은 **벤더 분산화(sprawl)를 최소화**하고, **워크플로우 지식을 기기에 유지**하며, 채팅뿐만 아니라 당신의 데이터에 대한 **지속적인 기억**을 에이전트에게 제공하도록 구축되었습니다. -| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| ----------------- | ----------------- | ----------------- | ----------------- | ---------------------------------------------------------------------------------------------------- | -| **오픈 소스** | 🚫 독점 소스 | ✅ MIT | ✅ MIT | ✅ GNU | -| **시작하기 쉬움** | ✅ 데스크톱 + CLI | ⚠️ 터미널 우선 | ⚠️ 터미널 우선 | ✅ 깔끔한 UI, 단 몇 분 | -| **비용** | ⚠️ 구독 + 애드온 | ⚠️ 모델 직접 제공 | ⚠️ 모델 직접 제공 | ✅ 단일 구독 + TokenJuice | -| **메모리** | ✅ 채팅 범위 한정 | ⚠️ 플러그인 의존 | ✅ 자기 학습 | 🚀 메모리 트리 + Obsidian 볼트, 선택적 [agentmemory](https://github.com/rohitg00/agentmemory) 백엔드 | -| **통합** | ⚠️ 적은 커넥터 | ⚠️ 직접 구축 | ⚠️ 직접 구축 | 🚀 OAuth를 통한 118개 이상 | -| **자동 가져오기** | 🚫 없음 | 🚫 없음 | 🚫 없음 | ✅ 20분마다 메모리로 동기화 | -| **API 분산화** | 🚫 추가 키 필요 | 🚫 BYOK | 🚫 멀티 벤더 | ✅ 단일 계정 | -| **모델 라우팅** | 🚫 단일 모델 | ⚠️ 수동 | ⚠️ 수동 | ✅ 내장됨 | -| **네이티브 도구** | ✅ 코드 전용 | ✅ 코드 전용 | ✅ 코드 전용 | ✅ 코드 + 검색 + 스크레이퍼 + 음성 | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| ------------------- | ----------------- | ----------------- | ----------------- | ---------------------------------- | +| **오픈 소스** | 🚫 독점 소스 | ✅ MIT | ✅ MIT | ✅ GNU | +| **시작하기 쉬움** | ✅ 데스크톱 + CLI | ⚠️ 터미널 우선 | ⚠️ 터미널 우선 | ✅ 깔끔한 UI, 단 몇 분 | +| **비용** | ⚠️ 구독 + 애드온 | ⚠️ 모델 직접 제공 | ⚠️ 모델 직접 제공 | ✅ 단일 구독 + TokenJuice | +| **메모리** | ✅ 채팅 범위 한정 | ⚠️ 플러그인 의존 | ✅ 자기 학습 | 🚀 메모리 트리 + Obsidian 볼트, 선택적 [agentmemory](https://github.com/rohitg00/agentmemory) 백엔드 | +| **통합** | ⚠️ 적은 커넥터 | ⚠️ 직접 구축 | ⚠️ 직접 구축 | 🚀 OAuth를 통한 118개 이상 | +| **자동 가져오기** | 🚫 없음 | 🚫 없음 | 🚫 없음 | ✅ 20분마다 메모리로 동기화 | +| **API 분산화** | 🚫 추가 키 필요 | 🚫 BYOK | 🚫 멀티 벤더 | ✅ 단일 계정 | +| **모델 라우팅** | 🚫 단일 모델 | ⚠️ 수동 | ⚠️ 수동 | ✅ 내장됨 | +| **네이티브 도구** | ✅ 코드 전용 | ✅ 코드 전용 | ✅ 코드 전용 | ✅ 코드 + 검색 + 스크레이퍼 + 음성 | # GitHub에서 스타를 눌러주세요 diff --git a/docs/README.ur-pk.md b/docs/README.ur-pk.md index 4bdd4d1487..b4214a9230 100644 --- a/docs/README.ur-pk.md +++ b/docs/README.ur-pk.md @@ -200,17 +200,17 @@ OpenHuman انتظار چھوڑ دیتا ہے۔ اپنے اکاؤنٹس جوڑی

-| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| ------------------ | ------------------------ | ------------------- | -------------- | ------------------------------------------------------------------------------------------------------ | -| **اوپن سورس** | 🚫 ملکیتی | ✅ MIT | ✅ MIT | ✅ GNU | -| **شروع کرنا آسان** | ✅ ڈیسک ٹاپ + کمانڈ لائن | ⚠️ پہلے ٹرمینل | ⚠️ پہلے ٹرمینل | ✅ صاف یوزر انٹرفیس، منٹوں میں | -| **لاگت** | ⚠️ سبسکرپشن + ایڈ آنز | ⚠️ اپنے ماڈل | ⚠️ اپنے ماڈل | ✅ ایک سبسکرپشن + TokenJuice | -| **یادداشت** | ✅ چیٹ تک محدود | ⚠️ پلگ ان پر انحصار | ✅ خود سیکھنا | 🚀 میموری ٹری + Obsidian والٹ، اختیاری [agentmemory](https://github.com/rohitg00/agentmemory) بیک اینڈ | -| **انضمام** | ⚠️ چند کنیکٹر | ⚠️ خود لائیں | ⚠️ خود لائیں | 🚀 118+ OAuth کے ذریعے | -| **خودکار لانا** | 🚫 کوئی نہیں | 🚫 کوئی نہیں | 🚫 کوئی نہیں | ✅ 20 منٹ سنک میموری میں | -| **API پھیلاؤ** | 🚫 اضافی چابیاں | 🚫 اپنی چابیاں | 🚫 کئی وینڈر | ✅ ایک اکاؤنٹ | -| **ماڈل روٹنگ** | 🚫 ایک ماڈل | ⚠️ دستی | ⚠️ دستی | ✅ بلٹ ان | -| **مقامی ٹولز** | ✅ صرف کوڈ | ✅ صرف کوڈ | ✅ صرف کوڈ | ✅ کوڈ + سرچ + سکریپر + آواز | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| ------------------- | ----------------- | ----------------- | ----------------- | ---------------------------------- | +| **اوپن سورس** | 🚫 ملکیتی | ✅ MIT | ✅ MIT | ✅ GNU | +| **شروع کرنا آسان** | ✅ ڈیسک ٹاپ + کمانڈ لائن | ⚠️ پہلے ٹرمینل | ⚠️ پہلے ٹرمینل | ✅ صاف یوزر انٹرفیس، منٹوں میں | +| **لاگت** | ⚠️ سبسکرپشن + ایڈ آنز | ⚠️ اپنے ماڈل | ⚠️ اپنے ماڈل | ✅ ایک سبسکرپشن + TokenJuice | +| **یادداشت** | ✅ چیٹ تک محدود | ⚠️ پلگ ان پر انحصار | ✅ خود سیکھنا | 🚀 میموری ٹری + Obsidian والٹ، اختیاری [agentmemory](https://github.com/rohitg00/agentmemory) بیک اینڈ | +| **انضمام** | ⚠️ چند کنیکٹر | ⚠️ خود لائیں | ⚠️ خود لائیں | 🚀 118+ OAuth کے ذریعے | +| **خودکار لانا** | 🚫 کوئی نہیں | 🚫 کوئی نہیں | 🚫 کوئی نہیں | ✅ 20 منٹ سنک میموری میں | +| **API پھیلاؤ** | 🚫 اضافی چابیاں | 🚫 اپنی چابیاں | 🚫 کئی وینڈر | ✅ ایک اکاؤنٹ | +| **ماڈل روٹنگ** | 🚫 ایک ماڈل | ⚠️ دستی | ⚠️ دستی | ✅ بلٹ ان | +| **مقامی ٹولز** | ✅ صرف کوڈ | ✅ صرف کوڈ | ✅ صرف کوڈ | ✅ کوڈ + سرچ + سکریپر + آواز |
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md index 6ede886da2..cf2e202435 100644 --- a/docs/README.zh-CN.md +++ b/docs/README.zh-CN.md @@ -23,6 +23,7 @@ OpenHuman 是你的个人 AI 超级智能:本地记忆,按需托管服务,简洁而强大。

+

DiscordDiscussions • @@ -60,11 +61,9 @@ irm https://raw.githubusercontent.com/tinyhumansai/openhuman/main/scripts/instal ``` - > **Linux:** the AppImage can crash on launch under Wayland (and on Arch-based distros with `sharun: Interpreter not found!`) — see [#2463](https://github.com/tinyhumansai/openhuman/issues/2463) for the cause and env-var workarounds. -> Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); -> once published, Arch users can install it with `yay -S openhuman-bin`. - +Arch Linux package maintainers can use the [`openhuman-bin` AUR recipe](../packages/arch/openhuman-bin/); +once published, Arch users can install it with `yay -S openhuman-bin`. # 什么是 OpenHuman? @@ -115,17 +114,17 @@ OpenHuman 跳过了等待期。连接你的账户,让[自动拉取](https://ti 高层次对比(产品持续演进,请以各厂商最新情况为准)。OpenHuman 的设计目标是**减少供应商碎片化**、将**工作流知识保留在设备上**、为智能体提供对你数据的**持久记忆**,而不仅仅是对话。 -| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | -| -------------- | ---------------- | ----------- | ------------ | ------------------------------------------------------------------------------------------- | -| **开源** | 🚫 闭源 | ✅ MIT | ✅ MIT | ✅ GNU | -| **易上手** | ✅ 桌面 + CLI | ⚠️ 终端优先 | ⚠️ 终端优先 | ✅ 清爽 UI,几分钟上手 | -| **成本** | ⚠️ 订阅 + 附加项 | ⚠️ 自带模型 | ⚠️ 自带模型 | ✅ 单一订阅 + TokenJuice | -| **记忆** | ✅ 对话范围 | ⚠️ 依赖插件 | ✅ 自学习 | 🚀 记忆树 + Obsidian 仓库,可选 [agentmemory](https://github.com/rohitg00/agentmemory) 后端 | -| **集成** | ⚠️ 少量连接器 | ⚠️ 自行接入 | ⚠️ 自行接入 | 🚀 118+ 通过 OAuth | -| **自动拉取** | 🚫 无 | 🚫 无 | 🚫 无 | ✅ 20 分钟同步到记忆 | -| **API 碎片化** | 🚫 额外密钥 | 🚫 自带密钥 | 🚫 多供应商 | ✅ 一个账户 | -| **模型路由** | 🚫 单一模型 | ⚠️ 手动 | ⚠️ 手动 | ✅ 内置 | -| **原生工具** | ✅ 仅代码 | ✅ 仅代码 | ✅ 仅代码 | ✅ 代码 + 搜索 + 抓取 + 语音 | +| | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | +| ------------------- | ----------------- | ----------------- | ----------------- | ---------------------------------- | +| **开源** | 🚫 闭源 | ✅ MIT | ✅ MIT | ✅ GNU | +| **易上手** | ✅ 桌面 + CLI | ⚠️ 终端优先 | ⚠️ 终端优先 | ✅ 清爽 UI,几分钟上手 | +| **成本** | ⚠️ 订阅 + 附加项 | ⚠️ 自带模型 | ⚠️ 自带模型 | ✅ 单一订阅 + TokenJuice | +| **记忆** | ✅ 对话范围 | ⚠️ 依赖插件 | ✅ 自学习 | 🚀 记忆树 + Obsidian 仓库,可选 [agentmemory](https://github.com/rohitg00/agentmemory) 后端 | +| **集成** | ⚠️ 少量连接器 | ⚠️ 自行接入 | ⚠️ 自行接入 | 🚀 118+ 通过 OAuth | +| **自动拉取** | 🚫 无 | 🚫 无 | 🚫 无 | ✅ 20 分钟同步到记忆 | +| **API 碎片化** | 🚫 额外密钥 | 🚫 自带密钥 | 🚫 多供应商 | ✅ 一个账户 | +| **模型路由** | 🚫 单一模型 | ⚠️ 手动 | ⚠️ 手动 | ✅ 内置 | +| **原生工具** | ✅ 仅代码 | ✅ 仅代码 | ✅ 仅代码 | ✅ 代码 + 搜索 + 抓取 + 语音 | # 在 GitHub 上为我们加星