docs: refresh README and GitHub Pages for v0.2.1
Sync project documentation with the current v0.2.1 implementation (Tap-to-toggle recording, 5-step onboarding, Flow session model, SpeechAnalyzer-only local engine, deepseek-v4-flash default). README.md / README.zh.md - Replace 'press-and-hold / 按住说话' with the v0.2.0+ tap-to-toggle interaction; add the 60-second per-take cap to feature bullets. - Update 3-step onboarding to the real 5-step flow. - Correct architecture diagram: AudioCaptureService in the extension is legacy/unused, PolishingService lives in OSGKeyboardShared, and the FlowSession* / LiveDictation* services are now in the tree. - Replace the legacy single-pipeline data flow with the actual Flow session data flow (keyboard -> App Group -> host app -> chunked ASR -> LLM polish -> App Group -> insertText). - Move the stale 'main -> 0.2 branch rename' banner into a project status section under the new 'v0.2.1' badge. - Expand 'Known limitations' with 60s/3min caps, 60MB sandbox note, URL scheme caveat, and the v0.2.0->v0.2.1 on-device LLM rollback. - Add a 'Development' section pointing to tests, CI, logging policy. - Add version badge, license link, privacy policy link. docs/index.html (GitHub Pages landing) - Mirror the same copy fixes in both EN and ZH i18n tables (verified: 50 keys each, no missing translations). - Grow feature grid from 6 to 8 cards (add 'Flow session' and 'Local + cloud polish'), grow steps from 3 to 5. - Bump footer to 'v0.2.1 · source available, non-commercial', add License link. docs/privacy.html + docs/privacy/index.html - Update 'Last updated' to July 3, 2026, tag v0.2.1. - Add explicit iOS 26+ requirement, Flow session explanation, children's privacy section, policy-changes section, license reference, and rocky.hk@gmail.com contact. - Make the 'no raw audio upload to any server' claim explicit. Verification - grep confirms no leftover 'press and hold' / '按住' / 'press to'. - HTML structure validated (well-formed on all three pages). - EN/ZH i18n keys are symmetric (50 each).
This commit is contained in:
+101
-112
@@ -1,67 +1,14 @@
|
||||
# OSGKeyboard
|
||||
|
||||
> 按住说话,松开即得 AI 润色文字,插入任意 App 的光标处。
|
||||
> 按一下开始,再按一下结束 —— AI 润色文字直接出现在任意 App 的光标处。
|
||||
> 一款源码可见的 iOS 自定义键盘语音输入工具,灵感来自 [Typeless](https://typeless.com) 和 [OpenLess](https://github.com/Open-Less/openless)。
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
[English README](./README.md)
|
||||
|
||||
---
|
||||
|
||||
> ⚠️ **2026-06-24**: Default branch renamed from `main` to `0.2`. Old `main` is now `0.1`; `refactor/drop-qwen3-coreml` is now `0.2`. See CHANGELOG for details.
|
||||
|
||||
## Build Setup
|
||||
|
||||
This project uses [XcodeGen](https://github.com/yonaskolb/XcodeGen) — `project.yml`
|
||||
is the source of truth, and `OSGKeyboard.xcodeproj` is **regenerated, not committed**
|
||||
(it's in `.gitignore`). New clones must generate the Xcode project before opening
|
||||
in Xcode, otherwise Xcode will show an empty project with no source files.
|
||||
|
||||
### Prerequisites
|
||||
|
||||
- macOS with **Xcode 26** (matches `project.yml` deployment target iOS 26)
|
||||
- [Homebrew](https://brew.sh)
|
||||
|
||||
### One-time setup
|
||||
|
||||
```bash
|
||||
brew install xcodegen
|
||||
```
|
||||
|
||||
### Generate `OSGKeyboard.xcodeproj`
|
||||
|
||||
From the repository root:
|
||||
|
||||
```bash
|
||||
./Scripts/generate-xcodeproj.sh
|
||||
```
|
||||
|
||||
This script:
|
||||
|
||||
1. Runs `xcodegen generate` to produce `OSGKeyboard.xcodeproj` from `project.yml`.
|
||||
2. Calls `Scripts/patch-icon-composer.sh` to patch the generated project for
|
||||
Xcode 26 Icon Composer bundles — `OSGKeyboard/AppIcon.icon` is treated as
|
||||
a single `folder.iconcomposer.icon` reference (see `project.yml` note on
|
||||
XcodeGen `fileTypes.icon`).
|
||||
|
||||
Then open the project:
|
||||
|
||||
```bash
|
||||
open OSGKeyboard.xcodeproj
|
||||
```
|
||||
|
||||
> **Troubleshooting**: If Xcode shows an empty project, re-run
|
||||
> `./Scripts/generate-xcodeproj.sh`. If the build fails on icon assets,
|
||||
> make sure `OSGKeyboard/AppIcon.icon/` exists with `Assets/` and `icon.json`
|
||||
> inside (do not expand the folder manually).
|
||||
|
||||
### Re-running
|
||||
|
||||
Run `./Scripts/generate-xcodeproj.sh` any time `project.yml` changes
|
||||
(e.g. after `git pull`).
|
||||
[English README](./README.md) · [隐私政策](https://hkgood.github.io/OSGKeyboard/privacy/)
|
||||
|
||||
---
|
||||
|
||||
@@ -69,24 +16,27 @@ Run `./Scripts/generate-xcodeproj.sh` any time `project.yml` changes
|
||||
|
||||
OSGKeyboard 是商业语音输入工具的免费、源码可见替代方案。它以 **iOS 自定义键盘扩展** 的形式运行,所以你可以在 **任何 App** 里使用 —— 微信、备忘录、邮件、ChatGPT、Claude、Cursor,无所不能。
|
||||
|
||||
1. 长按麦克风键
|
||||
2. 自由说话
|
||||
3. 松开 —— AI 帮你整理成干净的文字,自动插入光标处
|
||||
1. 按下麦克风键开始录音
|
||||
2. 自由说话(单次上限 60 秒)
|
||||
3. 再按一下结束 —— AI 自动整理成干净的文字并插入光标
|
||||
|
||||
**音频始终在设备本地转写**(iOS 26+ 使用 `SpeechAnalyzer` + `DictationTranscriber`),**只有润色后的文本** 会发到你选择的云端 LLM。**音频永不离开你的手机。**
|
||||
**音频始终在设备本地转写**(iOS 26+ 的 `SpeechAnalyzer` + `DictationTranscriber`),**只有润色后的文本** 会发到你选择的云端 LLM。**音频永不离开你的手机。**
|
||||
|
||||
项目内部采用 **Flow 会话模型**:主 App 维护一个长生命周期的音频会话,键盘扩展只通过 App Group 写入"开始 / 停止"等轻量信号,润色后的文本再由主 App 回传给键盘插入。**多次录音之间无需反复跳回主 App**。
|
||||
|
||||
---
|
||||
|
||||
## 特性
|
||||
|
||||
- 🎙 **按住说话**,Typeless 风格的圆形麦克风按钮
|
||||
- 🎙 **点按录音** —— Typeless 风格的圆形麦克风按钮,单次上限 60 秒并实时倒计时
|
||||
- 🧠 **端侧 ASR**(iOS 26+ `SpeechAnalyzer` + `DictationTranscriber`)
|
||||
- ✍️ **AI 润色** —— 自动加结构、补标点、修正语法、可生成列表
|
||||
- 🧩 **本地 + 云端润色开关** —— 本地模式默认仅在设备上识别;若 iOS 语音识别效果不理想(远场、噪声、方言),可开启「识别后云端润色」,默认走 DeepSeek
|
||||
- 🔌 **自带 API 接入** —— 兼容任何 OpenAI 兼容协议端点(OpenAI / DeepSeek / Qwen DashScope / 自建服务器 ……)
|
||||
- 🧩 **本地 + 云端润色开关** —— 本地模式默认仅在设备上识别;若 iOS 语音识别效果不理想(远场、噪声、方言),可开启「识别后云端润色」,默认走 DeepSeek
|
||||
- 🔌 **自带 API 接入** —— 兼容任何 OpenAI 兼容协议端点(OpenAI / DeepSeek / Qwen DashScope / Moonshot / 智谱 / 自建服务器 ……)
|
||||
- 🔒 **隐私优先** —— 音频不离开设备;只有润色文本会发给你选择的 LLM
|
||||
- 🎨 **原生 SwiftUI** —— 暗色主题、毛玻璃、约 2000 行 Swift
|
||||
- 🎨 **原生 SwiftUI** —— 暗色主题、毛玻璃、纯 Swift 6 实现,约 3,600 行代码
|
||||
- 🪶 **零依赖** —— 无 SwiftPM 包、无 CocoaPods、无 Carthage
|
||||
- 🔁 **Flow 会话** —— 多次录音无需跳回主 App,会话自动维持心跳与续期
|
||||
|
||||
---
|
||||
|
||||
@@ -94,30 +44,37 @@ OSGKeyboard 是商业语音输入工具的免费、源码可见替代方案。
|
||||
|
||||
### 环境要求
|
||||
|
||||
- macOS + **Xcode 16+**(推荐 Xcode 26)
|
||||
- macOS + **Xcode 26**(与 `project.yml` 中 iOS 26 部署目标对齐)
|
||||
- iPhone 运行 **iOS 26.0+**
|
||||
- [XcodeGen](https://github.com/yonaskolb/XcodeGen):`brew install xcodegen`
|
||||
- 一个 OpenAI 兼容 API Key([OpenAI](https://platform.openai.com/api-keys) / [DeepSeek](https://platform.deepseek.com/api_keys) / [Qwen DashScope](https://dashscope.console.aliyun.com/apiKey) 任一)
|
||||
- 一个 OpenAI 兼容 API Key([OpenAI](https://platform.openai.com/api-keys) / [DeepSeek](https://platform.deepseek.com/api_keys) / [Qwen DashScope](https://dashscope.console.aliyun.com/apiKey) 任一)。如果一直使用「纯本地 ASR」引擎则无需 Key。
|
||||
|
||||
### 编译与运行
|
||||
|
||||
```bash
|
||||
git clone https://github.com/hkgood/OSGKeyboard.git
|
||||
cd OSGKeyboard
|
||||
xcodegen generate # 生成 OSGKeyboard.xcodeproj
|
||||
open OSGKeyboard.xcodeproj # 或命令行编译:
|
||||
./Scripts/generate-xcodeproj.sh # 通过 XcodeGen 生成 OSGKeyboard.xcodeproj
|
||||
open OSGKeyboard.xcodeproj # 或命令行编译:
|
||||
xcodebuild -project OSGKeyboard.xcodeproj -scheme OSGKeyboard \
|
||||
-destination 'generic/platform=iOS Simulator' build
|
||||
```
|
||||
|
||||
> `OSGKeyboard.xcodeproj` **不进入版本库**,由 `Scripts/generate-xcodeproj.sh` 从 `project.yml` 生成。每次 `git pull` 后若 `project.yml` 有变更,请重新执行该脚本。
|
||||
|
||||
### 在 iOS 中启用键盘
|
||||
|
||||
1. 在真机/模拟器上运行 App。
|
||||
2. 按 3 步引导:**启用键盘** → **允许完全访问**(麦克风 + LLM 调用必须) → **粘贴 API Key**。
|
||||
3. 在任意输入框,点 🌐 切换到 **OSGKeyboard**。
|
||||
4. 长按麦克风键 → 说话 → 松开。✨
|
||||
主 App 会引导你走完 **5 步**:
|
||||
|
||||
> **"允许完全访问"是必须的。** 没有它,iOS 会阻止键盘使用麦克风与网络。我们**绝不记录、存储或上传你的击键** —— 见 [`PrivacyInfo.xcprivacy`](./OSGKeyboard/PrivacyInfo.xcprivacy)。
|
||||
1. **欢迎** —— 介绍 OSGKeyboard
|
||||
2. **麦克风** —— 申请麦克风权限
|
||||
3. **语音识别** —— 申请端侧语音识别权限
|
||||
4. **启用键盘 + 完全访问** —— 跳转 iOS 设置添加 OSGKeyboard 并允许完全访问
|
||||
5. **引擎 + API** —— 选择本地或云端引擎,粘贴 API Key(仅云端 / 识别后云端润色需要)
|
||||
|
||||
完成后,在任意输入框点 🌐 切换到 **OSGKeyboard**,再点圆形麦克风键开始说话,再次点击结束。
|
||||
|
||||
> **"允许完全访问"是必须的。** 没有它,iOS 会阻止键盘使用麦克风与网络。我们**绝不记录、存储或上传你的击键** —— 见 [`PrivacyInfo.xcprivacy`](./OSGKeyboard/PrivacyInfo.xcprivacy) 与 [隐私政策](https://hkgood.github.io/OSGKeyboard/privacy/)。
|
||||
|
||||
---
|
||||
|
||||
@@ -125,48 +82,60 @@ xcodebuild -project OSGKeyboard.xcodeproj -scheme OSGKeyboard \
|
||||
|
||||
```
|
||||
OSGKeyboard/
|
||||
├── OSGKeyboard/ # 主 iOS App(设置、Onboarding)
|
||||
│ ├── Views/ # SwiftUI 屏幕
|
||||
│ ├── OSGKeyboardApp.swift # @main 入口
|
||||
├── OSGKeyboard/ # 主 iOS App(Flow 会话宿主)
|
||||
│ ├── Services/ # FlowSessionManager、AppPermissions、SpeechHistoryStore、…
|
||||
│ ├── Views/ # SwiftUI:OnboardingView、HomeView、SettingsView、HistoryView、…
|
||||
│ ├── OSGKeyboardApp.swift # @main 入口,持有 FlowSessionManager
|
||||
│ ├── PrivacyInfo.xcprivacy # 隐私清单
|
||||
│ └── OSGKeyboard.entitlements # App Group 声明
|
||||
│ └── OSGKeyboard.entitlements # App Group + Keychain Group
|
||||
├── OSGKeyboardExt/ # 自定义键盘扩展
|
||||
│ ├── KeyboardViewController.swift # 主体类
|
||||
│ ├── Services/
|
||||
│ │ ├── AudioCaptureService.swift # AVAudioEngine → 16kHz PCM
|
||||
│ │ ├── ASRService.swift # iOS 26 SpeechAnalyzer ASR
|
||||
│ │ └── PolishingService.swift # LLM 调用(带超时)
|
||||
│ └── Views/ # 录音按钮、波形、键盘主视图
|
||||
├── OSGKeyboardShared/ # 主 App + 键盘共享 framework
|
||||
│ ├── Models/ # ProviderConfig、LLMRequest、LLMProvider
|
||||
│ ├── Services/ # LLMClient(OpenAI 兼容)
|
||||
│ └── Constants/ # App Group ID
|
||||
├── OSGKeyboardTests/ # XCTest 单元测试
|
||||
├── project.yml # XcodeGen 工程定义
|
||||
│ ├── KeyboardViewController.swift # 主体类(驱动 SwiftUI)
|
||||
│ ├── Services/ # AppGroupPersistor、HostAppLauncher、AudioCaptureService(旧版,未使用)
|
||||
│ ├── Views/ # KeyboardRootView、RecordButton、WaveformView
|
||||
│ └── PrivacyInfo.xcprivacy
|
||||
├── OSGKeyboardShared/ # 主 App + 键盘共享 framework(APPLICATION_EXTENSION_API_ONLY=YES)
|
||||
│ ├── Services/ # FlowSessionBridge、FlowSessionDarwin、LLMClient、PolishingService、ASRService、Keychain、AppGroupStore、…
|
||||
│ ├── Models/ # LLMProvider、ProviderConfig、TranscriptionDelivery、AudioBufferSnapshot、…
|
||||
│ ├── DesignSystem/ # Theme、ThemedRoot
|
||||
│ └── Constants/ # AppGroup ID
|
||||
├── OSGKeyboardTests/ # XCTest 单元测试(LLM、Keychain、ASR、Flow bridge、…)
|
||||
├── OSGKeyboardExtTests/ # 键盘扩展侧单元测试
|
||||
├── Scripts/ # generate-xcodeproj.sh、patch-icon-composer.sh
|
||||
├── docs/ # GitHub Pages(隐私政策 + 落地页)
|
||||
├── project.yml # XcodeGen 工程定义(唯一源)
|
||||
└── .github/workflows/ci.yml # Lint + 编译 CI
|
||||
```
|
||||
|
||||
### 数据流
|
||||
### 数据流 —— Flow 会话模型
|
||||
|
||||
```
|
||||
[长按麦克风] → AudioCaptureService → AudioBufferSnapshot (16kHz mono)
|
||||
↓
|
||||
ASRService.transcribe()
|
||||
↓
|
||||
ASREvent.final(原始转写文本)
|
||||
↓
|
||||
PolishingService.polish()
|
||||
↓
|
||||
LLMClient(OpenAI 兼容协议)
|
||||
↓
|
||||
textDocumentProxy.insertText(润色后文本)
|
||||
[键盘点按麦克风]
|
||||
└─► KeyboardViewController.pressBegan
|
||||
└─► FlowSessionBridge.setRecordingState(.recording) [App Group UserDefaults]
|
||||
└─► Darwin 通知:"recordingState changed"
|
||||
└─► 主 App 的 FlowSessionManager 收到信号
|
||||
└─► FlowContinuousCapture 持续把 16kHz PCM 喂给 ChunkedUtterancePipeline
|
||||
└─► ASRService.transcribe(iOS 26 SpeechAnalyzer)
|
||||
└─► ASREvent.partial / .final
|
||||
└─► UtteranceTranscriptStitcher 拼接
|
||||
└─► PolishingService(LLMClient) [可选,由引擎模式决定]
|
||||
└─► FlowSessionBridge.storeTranscriptionResult
|
||||
[键盘轮询 + Darwin 通知]
|
||||
└─► KeyboardViewController 拿到结果
|
||||
└─► textDocumentProxy.insertText(润色后文本)
|
||||
```
|
||||
|
||||
**引擎模式:**
|
||||
|
||||
- `cloud`(默认):本地 `SpeechAnalyzer` 识别,文本发到云端 LLM 润色。
|
||||
- `local`:本地 `SpeechAnalyzer` 识别,原始文本直接插入,不联网。
|
||||
- `local` + 「识别后云端润色」开关(设置 → 本地模型):与 `cloud` 类似,但使用本地引擎流程,识别完成后送 LLM 润色后再插入。需在 Keychain 中提前填好 DeepSeek(或任意 OpenAI 兼容提供方)API Key。
|
||||
- `cloud`(默认)—— 端侧 `SpeechAnalyzer` 识别,文本发到云端 LLM 润色。
|
||||
- `local` —— 仅端侧 `SpeechAnalyzer` 识别,原始文本直接插入,不联网。
|
||||
- `local` + 「识别后云端润色」开关(设置 → 引擎)—— 同样走端侧 ASR,但识别完成后送 LLM 润色再插入。适用于 iOS 识别效果不理想的场景。
|
||||
|
||||
**跨进程管道(主 App ↔ 键盘扩展):**
|
||||
|
||||
- **App Group `group.com.osgkeyboard.shared`** —— `UserDefaults` 存放 Flow 会话状态、录音状态、音量、转写投递、绝大部分偏好。
|
||||
- **共享 Keychain 组 `com.osgkeyboard.shared`** —— LLM API Key 由主 App「设置」写入,键盘扩展在每次 LLM 调用前读取。
|
||||
- **Darwin 通知(`CFNotificationCenter`)** —— 轻量级"有变化"信号;具体负载仍走 App Group。
|
||||
|
||||
---
|
||||
|
||||
@@ -186,13 +155,37 @@ LLMProvider(
|
||||
|
||||
仅此而已,**无需改动其他代码**。
|
||||
|
||||
如需设为新用户的默认值,还需同步调整 `ProviderConfig` 中的 `defaultProviderId` 常量。
|
||||
|
||||
---
|
||||
|
||||
## 限制
|
||||
## 已知限制
|
||||
|
||||
- iOS 沙盒:键盘扩展 ~60 MB 内存上限,必须开完全访问
|
||||
- 密码框与部分 `WKWebView` 输入框不可用(iOS 限制)
|
||||
- 仅支持 iOS 26+;更早的 iOS 版本不在支持范围内。
|
||||
- **仅支持 iOS 26+。** 我们已移除 26 以下 `SFSpeechRecognizer` / `AVAudioSession` 的兼容分支,让 ASR 路径全部走 iOS 26 `SpeechAnalyzer`。
|
||||
- **键盘扩展约 60 MB 内存上限**(iOS 沙盒)。Flow 会话由主 App 承载,音频缓冲与 ASR 模型都在主 App 侧,不占用扩展内存。
|
||||
- **必须「允许完全访问」**。否则键盘无法使用麦克风,也无法发起云端润色请求。
|
||||
- **密码框与部分 `WKWebView` 输入框不可用**(iOS 系统限制,无法绕过)。
|
||||
- **单次录音上限 60 秒**。到点自动停止并提交识别,下次可立即开始新的录音。
|
||||
- **单次 utterance ASR 上限 3 分钟**。超出后会拆成多个 chunk 拼接识别。
|
||||
- **不做端侧 LLM 润色**。本地引擎仅做 ASR;"AI 润色"始终走云端、可配置。v0.2.0 曾尝试引入端侧模型,v0.2.1 回滚以保持零 SPM 依赖。
|
||||
- **URL Scheme `osgkeyboard://`** 任何 App 都可调用。OSGKeyboard 只把它用于"唤醒主 App / 续期 Flow 会话",**不** 传递 API Key 等敏感信息。
|
||||
|
||||
---
|
||||
|
||||
## 开发指南
|
||||
|
||||
- **构建** —— 见本文开头的 [编译与运行](#编译与运行) 节。`project.yml` 变更后请重新执行 `./Scripts/generate-xcodeproj.sh`。
|
||||
- **测试** —— `xcodebuild test -project OSGKeyboard.xcodeproj -scheme OSGKeyboard -destination 'platform=iOS Simulator,name=iPhone 17'` 会同时跑 `OSGKeyboardTests` 与 `OSGKeyboardExtTests` 两个 target。
|
||||
- **CI** —— `.github/workflows/ci.yml` 在每次 push 到 `0.1` / `0.2` 分支及 PR 时跑 SwiftLint、Debug 干净构建和测试套件。
|
||||
- **日志** —— `print` 仅在 Debug 启用;Release 仅保留少量跨进程状态相关的 `NSLog`。
|
||||
|
||||
---
|
||||
|
||||
## 项目状态
|
||||
|
||||
- **当前版本:v0.2.1**(2026-06-24)
|
||||
- **默认分支:`0.2`**(2026-06-24 从 `main` 改名;旧 `main` 保留为 `0.1`)。
|
||||
- 完整发布记录见 [`CHANGELOG.md`](./CHANGELOG.md);Flow 会话模型的架构决策日志见 [`TYPEWHISPER_FLOW_MIGRATION_TRACKER.md`](./TYPEWHISPER_FLOW_MIGRATION_TRACKER.md)。
|
||||
|
||||
---
|
||||
|
||||
@@ -207,7 +200,3 @@ LLMProvider(
|
||||
- 灵感来源:[Typeless](https://typeless.com) 与桌面端开源版 [OpenLess](https://github.com/Open-Less/openless)
|
||||
- 工程脚手架:[XcodeGen](https://github.com/yonaskolb/XcodeGen)
|
||||
- 端侧 ASR:Apple [SpeechAnalyzer](https://developer.apple.com/documentation/speech/speechanalyzer) / [SFSpeechRecognizer](https://developer.apple.com/documentation/speech/sfspeechrecognizer)
|
||||
|
||||
---
|
||||
|
||||
**说明**:本项目发布仓库为 [`hkgood/OSGKeyboard`](https://github.com/hkgood/OSGKeyboard)。
|
||||
|
||||
Reference in New Issue
Block a user