holdspeak 0.2.1__tar.gz

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 (265) hide show
  1. holdspeak-0.2.1/.gitignore +76 -0
  2. holdspeak-0.2.1/LICENSE +201 -0
  3. holdspeak-0.2.1/PKG-INFO +276 -0
  4. holdspeak-0.2.1/README.md +206 -0
  5. holdspeak-0.2.1/hatch_build.py +48 -0
  6. holdspeak-0.2.1/holdspeak/__init__.py +40 -0
  7. holdspeak-0.2.1/holdspeak/activity_candidates.py +120 -0
  8. holdspeak-0.2.1/holdspeak/activity_connector_preview.py +242 -0
  9. holdspeak-0.2.1/holdspeak/activity_connectors.py +140 -0
  10. holdspeak-0.2.1/holdspeak/activity_context.py +154 -0
  11. holdspeak-0.2.1/holdspeak/activity_entities.py +139 -0
  12. holdspeak-0.2.1/holdspeak/activity_extension.py +253 -0
  13. holdspeak-0.2.1/holdspeak/activity_github.py +293 -0
  14. holdspeak-0.2.1/holdspeak/activity_history.py +394 -0
  15. holdspeak-0.2.1/holdspeak/activity_jira.py +265 -0
  16. holdspeak-0.2.1/holdspeak/activity_mapping.py +114 -0
  17. holdspeak-0.2.1/holdspeak/agent_context/__init__.py +152 -0
  18. holdspeak-0.2.1/holdspeak/agent_context/_common.py +26 -0
  19. holdspeak-0.2.1/holdspeak/agent_context/hooks.py +132 -0
  20. holdspeak-0.2.1/holdspeak/agent_context/hs_context.py +341 -0
  21. holdspeak-0.2.1/holdspeak/agent_context/models.py +184 -0
  22. holdspeak-0.2.1/holdspeak/agent_context/sessions.py +791 -0
  23. holdspeak-0.2.1/holdspeak/agent_device.py +174 -0
  24. holdspeak-0.2.1/holdspeak/agent_summarizer.py +345 -0
  25. holdspeak-0.2.1/holdspeak/artifacts.py +64 -0
  26. holdspeak-0.2.1/holdspeak/audio.py +232 -0
  27. holdspeak-0.2.1/holdspeak/audio_devices.py +383 -0
  28. holdspeak-0.2.1/holdspeak/commands/__init__.py +1 -0
  29. holdspeak-0.2.1/holdspeak/commands/actions.py +61 -0
  30. holdspeak-0.2.1/holdspeak/commands/agent_hook.py +172 -0
  31. holdspeak-0.2.1/holdspeak/commands/backup.py +77 -0
  32. holdspeak-0.2.1/holdspeak/commands/device.py +47 -0
  33. holdspeak-0.2.1/holdspeak/commands/dictation.py +297 -0
  34. holdspeak-0.2.1/holdspeak/commands/doctor.py +1104 -0
  35. holdspeak-0.2.1/holdspeak/commands/history.py +157 -0
  36. holdspeak-0.2.1/holdspeak/commands/intel.py +403 -0
  37. holdspeak-0.2.1/holdspeak/config.py +556 -0
  38. holdspeak-0.2.1/holdspeak/connector_fixtures.py +347 -0
  39. holdspeak-0.2.1/holdspeak/connector_pack_loader.py +423 -0
  40. holdspeak-0.2.1/holdspeak/connector_packs/__init__.py +42 -0
  41. holdspeak-0.2.1/holdspeak/connector_packs/calendar_activity.py +111 -0
  42. holdspeak-0.2.1/holdspeak/connector_packs/firefox_ext.py +66 -0
  43. holdspeak-0.2.1/holdspeak/connector_packs/github_cli.py +148 -0
  44. holdspeak-0.2.1/holdspeak/connector_packs/jira_cli.py +123 -0
  45. holdspeak-0.2.1/holdspeak/connector_packs/meeting_context.py +299 -0
  46. holdspeak-0.2.1/holdspeak/connector_runtime.py +429 -0
  47. holdspeak-0.2.1/holdspeak/connector_sdk.py +762 -0
  48. holdspeak-0.2.1/holdspeak/db/__init__.py +25 -0
  49. holdspeak-0.2.1/holdspeak/db/activity.py +1553 -0
  50. holdspeak-0.2.1/holdspeak/db/actuators.py +294 -0
  51. holdspeak-0.2.1/holdspeak/db/base.py +49 -0
  52. holdspeak-0.2.1/holdspeak/db/core.py +903 -0
  53. holdspeak-0.2.1/holdspeak/db/corrections.py +110 -0
  54. holdspeak-0.2.1/holdspeak/db/intel.py +394 -0
  55. holdspeak-0.2.1/holdspeak/db/journal.py +215 -0
  56. holdspeak-0.2.1/holdspeak/db/meetings.py +890 -0
  57. holdspeak-0.2.1/holdspeak/db/milestones.py +79 -0
  58. holdspeak-0.2.1/holdspeak/db/models.py +444 -0
  59. holdspeak-0.2.1/holdspeak/db/plugins.py +814 -0
  60. holdspeak-0.2.1/holdspeak/db/projects.py +463 -0
  61. holdspeak-0.2.1/holdspeak/desktop_presence.py +367 -0
  62. holdspeak-0.2.1/holdspeak/desktop_presence_cocoa.py +287 -0
  63. holdspeak-0.2.1/holdspeak/desktop_presence_freedesktop.py +267 -0
  64. holdspeak-0.2.1/holdspeak/desktop_presence_gtk.py +243 -0
  65. holdspeak-0.2.1/holdspeak/device_audio.py +602 -0
  66. holdspeak-0.2.1/holdspeak/device_audio_ws.py +572 -0
  67. holdspeak-0.2.1/holdspeak/device_meeting_stats.py +154 -0
  68. holdspeak-0.2.1/holdspeak/device_recording_tick.py +153 -0
  69. holdspeak-0.2.1/holdspeak/device_status.py +411 -0
  70. holdspeak-0.2.1/holdspeak/dictation_learning.py +272 -0
  71. holdspeak-0.2.1/holdspeak/dictation_telemetry.py +230 -0
  72. holdspeak-0.2.1/holdspeak/hotkey.py +164 -0
  73. holdspeak-0.2.1/holdspeak/intel/__init__.py +111 -0
  74. holdspeak-0.2.1/holdspeak/intel/engine.py +547 -0
  75. holdspeak-0.2.1/holdspeak/intel/models.py +88 -0
  76. holdspeak-0.2.1/holdspeak/intel/parsing.py +209 -0
  77. holdspeak-0.2.1/holdspeak/intel/providers.py +267 -0
  78. holdspeak-0.2.1/holdspeak/intel_queue.py +482 -0
  79. holdspeak-0.2.1/holdspeak/intent_timeline.py +112 -0
  80. holdspeak-0.2.1/holdspeak/logging_config.py +47 -0
  81. holdspeak-0.2.1/holdspeak/main.py +562 -0
  82. holdspeak-0.2.1/holdspeak/meeting.py +703 -0
  83. holdspeak-0.2.1/holdspeak/meeting_aftercare.py +355 -0
  84. holdspeak-0.2.1/holdspeak/meeting_exports.py +245 -0
  85. holdspeak-0.2.1/holdspeak/meeting_session.py +1659 -0
  86. holdspeak-0.2.1/holdspeak/plugin_pack_loader.py +420 -0
  87. holdspeak-0.2.1/holdspeak/plugin_packs/__init__.py +26 -0
  88. holdspeak-0.2.1/holdspeak/plugin_sdk.py +330 -0
  89. holdspeak-0.2.1/holdspeak/plugins/__init__.py +100 -0
  90. holdspeak-0.2.1/holdspeak/plugins/actuator_executor.py +170 -0
  91. holdspeak-0.2.1/holdspeak/plugins/actuators.py +140 -0
  92. holdspeak-0.2.1/holdspeak/plugins/builtin/__init__.py +195 -0
  93. holdspeak-0.2.1/holdspeak/plugins/builtin/action_owner_enforcer.py +237 -0
  94. holdspeak-0.2.1/holdspeak/plugins/builtin/adr_drafter.py +231 -0
  95. holdspeak-0.2.1/holdspeak/plugins/builtin/customer_signal_extractor.py +211 -0
  96. holdspeak-0.2.1/holdspeak/plugins/builtin/decision_announcement_drafter.py +174 -0
  97. holdspeak-0.2.1/holdspeak/plugins/builtin/decision_capture.py +200 -0
  98. holdspeak-0.2.1/holdspeak/plugins/builtin/dependency_mapper.py +173 -0
  99. holdspeak-0.2.1/holdspeak/plugins/builtin/followup_ticket_actuator.py +165 -0
  100. holdspeak-0.2.1/holdspeak/plugins/builtin/github_issue_actuator.py +245 -0
  101. holdspeak-0.2.1/holdspeak/plugins/builtin/incident_timeline.py +174 -0
  102. holdspeak-0.2.1/holdspeak/plugins/builtin/mermaid_architecture.py +288 -0
  103. holdspeak-0.2.1/holdspeak/plugins/builtin/milestone_planner.py +218 -0
  104. holdspeak-0.2.1/holdspeak/plugins/builtin/requirements_extractor.py +226 -0
  105. holdspeak-0.2.1/holdspeak/plugins/builtin/risk_heatmap.py +237 -0
  106. holdspeak-0.2.1/holdspeak/plugins/builtin/runbook_delta.py +198 -0
  107. holdspeak-0.2.1/holdspeak/plugins/builtin/scope_guard.py +207 -0
  108. holdspeak-0.2.1/holdspeak/plugins/builtin/stakeholder_update_drafter.py +175 -0
  109. holdspeak-0.2.1/holdspeak/plugins/builtin/webhook_post_actuator.py +205 -0
  110. holdspeak-0.2.1/holdspeak/plugins/contracts.py +153 -0
  111. holdspeak-0.2.1/holdspeak/plugins/dictation/__init__.py +6 -0
  112. holdspeak-0.2.1/holdspeak/plugins/dictation/assembly.py +142 -0
  113. holdspeak-0.2.1/holdspeak/plugins/dictation/blocks.py +353 -0
  114. holdspeak-0.2.1/holdspeak/plugins/dictation/builtin/__init__.py +7 -0
  115. holdspeak-0.2.1/holdspeak/plugins/dictation/builtin/intent_router.py +241 -0
  116. holdspeak-0.2.1/holdspeak/plugins/dictation/builtin/kb_enricher.py +187 -0
  117. holdspeak-0.2.1/holdspeak/plugins/dictation/builtin/project_rewriter.py +441 -0
  118. holdspeak-0.2.1/holdspeak/plugins/dictation/contracts.py +64 -0
  119. holdspeak-0.2.1/holdspeak/plugins/dictation/corrections.py +242 -0
  120. holdspeak-0.2.1/holdspeak/plugins/dictation/grammars.py +217 -0
  121. holdspeak-0.2.1/holdspeak/plugins/dictation/guidance.py +235 -0
  122. holdspeak-0.2.1/holdspeak/plugins/dictation/journal.py +137 -0
  123. holdspeak-0.2.1/holdspeak/plugins/dictation/pipeline.py +145 -0
  124. holdspeak-0.2.1/holdspeak/plugins/dictation/project_kb.py +122 -0
  125. holdspeak-0.2.1/holdspeak/plugins/dictation/project_root.py +166 -0
  126. holdspeak-0.2.1/holdspeak/plugins/dictation/runtime.py +228 -0
  127. holdspeak-0.2.1/holdspeak/plugins/dictation/runtime_counters.py +303 -0
  128. holdspeak-0.2.1/holdspeak/plugins/dictation/runtime_llama_cpp.py +184 -0
  129. holdspeak-0.2.1/holdspeak/plugins/dictation/runtime_mlx.py +191 -0
  130. holdspeak-0.2.1/holdspeak/plugins/dictation/runtime_openai_compatible.py +277 -0
  131. holdspeak-0.2.1/holdspeak/plugins/dictation/telemetry_store.py +102 -0
  132. holdspeak-0.2.1/holdspeak/plugins/dispatch.py +237 -0
  133. holdspeak-0.2.1/holdspeak/plugins/gated_connector.py +299 -0
  134. holdspeak-0.2.1/holdspeak/plugins/host.py +610 -0
  135. holdspeak-0.2.1/holdspeak/plugins/persistence.py +165 -0
  136. holdspeak-0.2.1/holdspeak/plugins/pipeline.py +225 -0
  137. holdspeak-0.2.1/holdspeak/plugins/project_detector.py +111 -0
  138. holdspeak-0.2.1/holdspeak/plugins/queue.py +179 -0
  139. holdspeak-0.2.1/holdspeak/plugins/router.py +206 -0
  140. holdspeak-0.2.1/holdspeak/plugins/scoring.py +99 -0
  141. holdspeak-0.2.1/holdspeak/plugins/segment_probe.py +165 -0
  142. holdspeak-0.2.1/holdspeak/plugins/signals.py +64 -0
  143. holdspeak-0.2.1/holdspeak/plugins/synthesis.py +749 -0
  144. holdspeak-0.2.1/holdspeak/project_doc_suggestions.py +315 -0
  145. holdspeak-0.2.1/holdspeak/runtime_activity.py +156 -0
  146. holdspeak-0.2.1/holdspeak/setup_runtime.py +111 -0
  147. holdspeak-0.2.1/holdspeak/setup_status.py +198 -0
  148. holdspeak-0.2.1/holdspeak/speaker_intel.py +403 -0
  149. holdspeak-0.2.1/holdspeak/target_profile.py +402 -0
  150. holdspeak-0.2.1/holdspeak/text_processor.py +134 -0
  151. holdspeak-0.2.1/holdspeak/tmux_transport.py +62 -0
  152. holdspeak-0.2.1/holdspeak/transcribe.py +371 -0
  153. holdspeak-0.2.1/holdspeak/typer.py +140 -0
  154. holdspeak-0.2.1/holdspeak/voice_typing.py +190 -0
  155. holdspeak-0.2.1/holdspeak/web/__init__.py +7 -0
  156. holdspeak-0.2.1/holdspeak/web/context.py +84 -0
  157. holdspeak-0.2.1/holdspeak/web/routes/__init__.py +31 -0
  158. holdspeak-0.2.1/holdspeak/web/routes/activity/__init__.py +45 -0
  159. holdspeak-0.2.1/holdspeak/web/routes/activity/candidates.py +228 -0
  160. holdspeak-0.2.1/holdspeak/web/routes/activity/enrichment.py +614 -0
  161. holdspeak-0.2.1/holdspeak/web/routes/activity/ledger.py +189 -0
  162. holdspeak-0.2.1/holdspeak/web/routes/activity/plugin_jobs.py +205 -0
  163. holdspeak-0.2.1/holdspeak/web/routes/activity/rules.py +176 -0
  164. holdspeak-0.2.1/holdspeak/web/routes/core.py +37 -0
  165. holdspeak-0.2.1/holdspeak/web/routes/dictation/__init__.py +61 -0
  166. holdspeak-0.2.1/holdspeak/web/routes/dictation/_helpers.py +710 -0
  167. holdspeak-0.2.1/holdspeak/web/routes/dictation/agent.py +201 -0
  168. holdspeak-0.2.1/holdspeak/web/routes/dictation/blocks.py +342 -0
  169. holdspeak-0.2.1/holdspeak/web/routes/dictation/intents.py +99 -0
  170. holdspeak-0.2.1/holdspeak/web/routes/dictation/kb.py +167 -0
  171. holdspeak-0.2.1/holdspeak/web/routes/dictation/pipeline.py +637 -0
  172. holdspeak-0.2.1/holdspeak/web/routes/dictation/project_docs.py +145 -0
  173. holdspeak-0.2.1/holdspeak/web/routes/meetings.py +1229 -0
  174. holdspeak-0.2.1/holdspeak/web/routes/pages.py +262 -0
  175. holdspeak-0.2.1/holdspeak/web/routes/projects.py +396 -0
  176. holdspeak-0.2.1/holdspeak/web/routes/setup.py +56 -0
  177. holdspeak-0.2.1/holdspeak/web/routes/system.py +960 -0
  178. holdspeak-0.2.1/holdspeak/web/runtime_support.py +79 -0
  179. holdspeak-0.2.1/holdspeak/web_auth.py +120 -0
  180. holdspeak-0.2.1/holdspeak/web_requests.py +163 -0
  181. holdspeak-0.2.1/holdspeak/web_runtime.py +2341 -0
  182. holdspeak-0.2.1/holdspeak/web_server.py +556 -0
  183. holdspeak-0.2.1/pyproject.toml +177 -0
  184. holdspeak-0.2.1/scripts/aipi_bridge.sh +38 -0
  185. holdspeak-0.2.1/scripts/aipi_firmware.sh +36 -0
  186. holdspeak-0.2.1/scripts/aipi_setup.sh +48 -0
  187. holdspeak-0.2.1/scripts/aipi_test.sh +40 -0
  188. holdspeak-0.2.1/scripts/dictation_enrichment_demo.py +351 -0
  189. holdspeak-0.2.1/scripts/dogfood_cockpit.py +131 -0
  190. holdspeak-0.2.1/scripts/dogfood_first_run.py +114 -0
  191. holdspeak-0.2.1/scripts/dogfood_journal.py +168 -0
  192. holdspeak-0.2.1/scripts/dogfood_learning_loop.py +162 -0
  193. holdspeak-0.2.1/scripts/dogfood_meeting_aftercare.py +210 -0
  194. holdspeak-0.2.1/scripts/dogfood_project_knowledge.py +184 -0
  195. holdspeak-0.2.1/scripts/dogfood_wizard.py +113 -0
  196. holdspeak-0.2.1/scripts/install.sh +170 -0
  197. holdspeak-0.2.1/scripts/journal_e2e_demo.py +265 -0
  198. holdspeak-0.2.1/scripts/linux_smoke.sh +119 -0
  199. holdspeak-0.2.1/scripts/presence_linux_overlay_smoke.py +106 -0
  200. holdspeak-0.2.1/scripts/presence_macos_smoke.py +108 -0
  201. holdspeak-0.2.1/scripts/release_gate.py +71 -0
  202. holdspeak-0.2.1/scripts/screenshot_aftercare_before_after.py +173 -0
  203. holdspeak-0.2.1/scripts/screenshot_aftercare_close_loop.py +142 -0
  204. holdspeak-0.2.1/scripts/screenshot_aftercare_digest.py +160 -0
  205. holdspeak-0.2.1/scripts/screenshot_aftercare_followup.py +155 -0
  206. holdspeak-0.2.1/scripts/screenshot_aftercare_provenance.py +153 -0
  207. holdspeak-0.2.1/scripts/screenshot_cockpit.py +86 -0
  208. holdspeak-0.2.1/scripts/screenshot_docs.py +294 -0
  209. holdspeak-0.2.1/scripts/screenshot_journal.py +116 -0
  210. holdspeak-0.2.1/scripts/screenshot_learning_digest.py +127 -0
  211. holdspeak-0.2.1/scripts/screenshot_moment_of_truth.py +111 -0
  212. holdspeak-0.2.1/scripts/screenshot_project_knowledge.py +89 -0
  213. holdspeak-0.2.1/scripts/screenshot_replay.py +114 -0
  214. holdspeak-0.2.1/scripts/screenshots.py +446 -0
  215. holdspeak-0.2.1/scripts/tui_demo.tape +91 -0
  216. holdspeak-0.2.1/web/README.md +74 -0
  217. holdspeak-0.2.1/web/astro.config.mjs +21 -0
  218. holdspeak-0.2.1/web/package-lock.json +6579 -0
  219. holdspeak-0.2.1/web/package.json +26 -0
  220. holdspeak-0.2.1/web/public/apple-touch-icon.png +0 -0
  221. holdspeak-0.2.1/web/public/favicon.svg +7 -0
  222. holdspeak-0.2.1/web/public/holdspeak-mark.png +0 -0
  223. holdspeak-0.2.1/web/scripts/capture-gallery.py +195 -0
  224. holdspeak-0.2.1/web/scripts/shoot.mjs +108 -0
  225. holdspeak-0.2.1/web/src/components/AppMark.astro +43 -0
  226. holdspeak-0.2.1/web/src/components/Button.astro +184 -0
  227. holdspeak-0.2.1/web/src/components/CommandPreview.astro +210 -0
  228. holdspeak-0.2.1/web/src/components/ConfirmDialog.astro +378 -0
  229. holdspeak-0.2.1/web/src/components/EmptyState.astro +71 -0
  230. holdspeak-0.2.1/web/src/components/HoldMark.astro +102 -0
  231. holdspeak-0.2.1/web/src/components/InlineMessage.astro +114 -0
  232. holdspeak-0.2.1/web/src/components/ListRow.astro +140 -0
  233. holdspeak-0.2.1/web/src/components/LocalPill.astro +39 -0
  234. holdspeak-0.2.1/web/src/components/Panel.astro +99 -0
  235. holdspeak-0.2.1/web/src/components/Pill.astro +131 -0
  236. holdspeak-0.2.1/web/src/components/Toolbar.astro +34 -0
  237. holdspeak-0.2.1/web/src/components/TopNav.astro +329 -0
  238. holdspeak-0.2.1/web/src/components/TrustChip.astro +56 -0
  239. holdspeak-0.2.1/web/src/env.d.ts +1 -0
  240. holdspeak-0.2.1/web/src/layouts/AppLayout.astro +247 -0
  241. holdspeak-0.2.1/web/src/pages/activity.astro +588 -0
  242. holdspeak-0.2.1/web/src/pages/companion.astro +428 -0
  243. holdspeak-0.2.1/web/src/pages/design/check.astro +147 -0
  244. holdspeak-0.2.1/web/src/pages/design/components.astro +483 -0
  245. holdspeak-0.2.1/web/src/pages/dictation.astro +2763 -0
  246. holdspeak-0.2.1/web/src/pages/docs/dictation-runtime.astro +181 -0
  247. holdspeak-0.2.1/web/src/pages/history.astro +2772 -0
  248. holdspeak-0.2.1/web/src/pages/index.astro +1368 -0
  249. holdspeak-0.2.1/web/src/pages/presence.astro +138 -0
  250. holdspeak-0.2.1/web/src/pages/settings.astro +234 -0
  251. holdspeak-0.2.1/web/src/pages/setup.astro +482 -0
  252. holdspeak-0.2.1/web/src/pages/welcome.astro +456 -0
  253. holdspeak-0.2.1/web/src/scripts/activity-app.js +791 -0
  254. holdspeak-0.2.1/web/src/scripts/briefing-markdown.js +71 -0
  255. holdspeak-0.2.1/web/src/scripts/companion-app.js +192 -0
  256. holdspeak-0.2.1/web/src/scripts/dashboard-app.js +1527 -0
  257. holdspeak-0.2.1/web/src/scripts/dictation-app.js +2702 -0
  258. holdspeak-0.2.1/web/src/scripts/history-app.js +1440 -0
  259. holdspeak-0.2.1/web/src/scripts/presence-app.js +93 -0
  260. holdspeak-0.2.1/web/src/scripts/settings-app.js +242 -0
  261. holdspeak-0.2.1/web/src/scripts/setup-app.js +215 -0
  262. holdspeak-0.2.1/web/src/scripts/trust-view.js +96 -0
  263. holdspeak-0.2.1/web/src/scripts/welcome-app.js +284 -0
  264. holdspeak-0.2.1/web/src/styles/global.css +106 -0
  265. holdspeak-0.2.1/web/src/styles/tokens.css +234 -0
@@ -0,0 +1,76 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual environments
24
+ .venv/
25
+ venv/
26
+ ENV/
27
+
28
+ # IDE
29
+ .idea/
30
+ .vscode/
31
+ *.swp
32
+ *.swo
33
+
34
+ # OS
35
+ .DS_Store
36
+
37
+ # Whisper models (downloaded on first run)
38
+ models/
39
+ *.bin
40
+
41
+ # Test fixtures (large audio files)
42
+ tests/fixtures/*.wav
43
+ tests/fixtures/*.mp3
44
+ # Exception: the small (~93 KB) committed core-path smoke fixture (HS-32-04).
45
+ # Both CI environments read this fixed WAV — see test_core_path_smoke.py.
46
+ !tests/fixtures/core_path_smoke_16k.wav
47
+
48
+ # pmo-roadmap pre-commit contract scratch
49
+ .tmp/
50
+
51
+ # Web frontend build artifacts (HS-10-01)
52
+ web/node_modules/
53
+ web/dist/
54
+ web/.astro/
55
+ holdspeak/static/_built/
56
+
57
+ # AIPI-Lite local firmware/bridge runtime state
58
+ aipi-lite/bridge.env
59
+ aipi-lite/secrets.yaml
60
+ aipi-lite/.esphome/
61
+ aipi-lite/.venv/
62
+ aipi-lite/__pycache__/
63
+ aipi-lite/**/__pycache__/
64
+ aipi-lite/.pytest_cache/
65
+ aipi-lite/.ruff_cache/
66
+ aipi-lite/.coverage
67
+ aipi-lite/htmlcov/
68
+ aipi-lite/*.log
69
+ aipi-lite/debug_mic.wav
70
+
71
+ # Local Claude Code state + vendored design tooling (ui-ux-pro-max skill).
72
+ # Kept local on purpose — not part of the product repo.
73
+ .claude/
74
+
75
+ # Route screenshot harness output (web/scripts/shoot.mjs → `npm run shots`).
76
+ web/.shots/
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 HoldSpeak contributors
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,276 @@
1
+ Metadata-Version: 2.4
2
+ Name: holdspeak
3
+ Version: 0.2.1
4
+ Summary: Voice typing for macOS and Linux - hold a hotkey, speak, release. Local & private.
5
+ Project-URL: Homepage, https://github.com/karolswdev/HoldSpeak
6
+ Project-URL: Repository, https://github.com/karolswdev/HoldSpeak
7
+ Project-URL: Issues, https://github.com/karolswdev/HoldSpeak/issues
8
+ Project-URL: Documentation, https://github.com/karolswdev/HoldSpeak/tree/main/docs
9
+ Author-email: karolswdev <karolsane@gmail.com>
10
+ License-Expression: Apache-2.0
11
+ License-File: LICENSE
12
+ Keywords: dictation,linux,llm,local-first,macos,meeting,privacy,speech-to-text,transcription,voice-typing,whisper
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: End Users/Desktop
17
+ Classifier: Operating System :: MacOS
18
+ Classifier: Operating System :: POSIX :: Linux
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
25
+ Classifier: Topic :: Utilities
26
+ Requires-Python: >=3.10
27
+ Requires-Dist: fastapi>=0.100.0
28
+ Requires-Dist: mlx-whisper>=0.4.0; sys_platform == 'darwin' and platform_machine == 'arm64'
29
+ Requires-Dist: numpy>=1.24.0
30
+ Requires-Dist: pynput>=1.7.6
31
+ Requires-Dist: pyperclip>=1.8.2
32
+ Requires-Dist: pyyaml>=6.0
33
+ Requires-Dist: sounddevice>=0.4.6
34
+ Requires-Dist: uvicorn[standard]>=0.20.0
35
+ Provides-Extra: dev
36
+ Requires-Dist: httpx>=0.26; extra == 'dev'
37
+ Requires-Dist: playwright>=1.40.0; extra == 'dev'
38
+ Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
39
+ Requires-Dist: pytest-cov>=4.0; extra == 'dev'
40
+ Requires-Dist: pytest-mock>=3.12; extra == 'dev'
41
+ Requires-Dist: pytest-timeout>=2.2; extra == 'dev'
42
+ Requires-Dist: pytest>=8.0; extra == 'dev'
43
+ Requires-Dist: ruff>=0.1.0; extra == 'dev'
44
+ Requires-Dist: scipy>=1.10.0; extra == 'dev'
45
+ Provides-Extra: dictation-llama
46
+ Requires-Dist: llama-cpp-python>=0.2.90; extra == 'dictation-llama'
47
+ Provides-Extra: dictation-mlx
48
+ Requires-Dist: mlx-lm>=0.19; (sys_platform == 'darwin' and platform_machine == 'arm64') and extra == 'dictation-mlx'
49
+ Requires-Dist: outlines>=0.1.0; (sys_platform == 'darwin' and platform_machine == 'arm64') and extra == 'dictation-mlx'
50
+ Provides-Extra: dictation-openai
51
+ Requires-Dist: openai>=1.0.0; extra == 'dictation-openai'
52
+ Provides-Extra: linux
53
+ Requires-Dist: faster-whisper>=1.0.0; extra == 'linux'
54
+ Provides-Extra: meeting
55
+ Requires-Dist: llama-cpp-python>=0.2.0; extra == 'meeting'
56
+ Requires-Dist: openai>=1.0.0; extra == 'meeting'
57
+ Requires-Dist: resemblyzer>=0.1.3; extra == 'meeting'
58
+ Provides-Extra: presence
59
+ Requires-Dist: pygobject>=3.44; (sys_platform == 'linux') and extra == 'presence'
60
+ Requires-Dist: pyobjc-framework-cocoa>=10.0; (sys_platform == 'darwin') and extra == 'presence'
61
+ Requires-Dist: pyobjc-framework-webkit>=10.0; (sys_platform == 'darwin') and extra == 'presence'
62
+ Provides-Extra: test
63
+ Requires-Dist: httpx>=0.26; extra == 'test'
64
+ Requires-Dist: pytest-asyncio>=0.23; extra == 'test'
65
+ Requires-Dist: pytest-cov>=4.0; extra == 'test'
66
+ Requires-Dist: pytest-mock>=3.12; extra == 'test'
67
+ Requires-Dist: pytest-timeout>=2.2; extra == 'test'
68
+ Requires-Dist: pytest>=8.0; extra == 'test'
69
+ Description-Content-Type: text/markdown
70
+
71
+ # HoldSpeak
72
+
73
+ <p align="center">
74
+ <img src="docs/assets/pixellab/holdspeak-mark.png" alt="HoldSpeak logo, a held key with rising soundwaves" width="120">
75
+ </p>
76
+
77
+ <p align="center"><strong>Hold a key. Speak. It types in any app. 100% local. And it learns how you work.</strong></p>
78
+
79
+ [![License: Apache-2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
80
+ [![Tests](https://github.com/karolswdev/HoldSpeak/actions/workflows/test.yml/badge.svg)](https://github.com/karolswdev/HoldSpeak/actions/workflows/test.yml)
81
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/downloads/)
82
+ [![Platform: macOS | Linux](https://img.shields.io/badge/platform-macOS%20%7C%20Linux-lightgrey.svg)](#platform-support)
83
+
84
+ HoldSpeak is local-first voice input for macOS and Linux. Hold your hotkey, speak,
85
+ release, and the text appears in whatever app you're in. No cloud, no account, no
86
+ telemetry. Nothing leaves your machine except the model endpoint you choose to
87
+ point at. Use it on its own as a voice-typing tool, or grow into meeting
88
+ intelligence, project-aware dictation, and the AIPI-Lite companion device.
89
+
90
+ > **Status: early / pre-release.** The features are mature, but it isn't on PyPI
91
+ > yet, so you install from source (below). APIs, config, and defaults can still
92
+ > change. Feedback and contributions welcome.
93
+
94
+ ## Why it's different
95
+
96
+ - **100% local by default.** Whisper transcription and your own LLM. Nothing is
97
+ sent anywhere unless you deliberately point it at a cloud endpoint. See
98
+ [Security & privacy](docs/SECURITY.md).
99
+ - **It gets better at your voice, and shows you the proof.** Every dictation is
100
+ saved: what you said, what it typed, where it routed, how long it took. Fix a
101
+ wrong one with a single tap and it learns; a "What HoldSpeak learned" digest
102
+ shows the honest "learned from N similar" count; replay an utterance through the
103
+ updated pipeline and watch the routing change. Local, off by default for
104
+ routing, no hidden retraining.
105
+ See [the learning loop](docs/INTELLIGENT_TYPING_GUIDE.md#12-dictation-journal-corrections--replay).
106
+ - **Your voice gets the afterlife your meetings already have.** A dictation doesn't
107
+ vanish the second it's typed. It's saved, searchable, and reviewable, the same
108
+ way a recorded meeting is.
109
+ - **14 real LLM-backed meeting plugins.** Architecture diagrams, ADRs, risk
110
+ registers, incident timelines, decisions, and stakeholder updates, all pulled out
111
+ of the transcript. See [meeting intelligence](docs/MEETING_MODE_GUIDE.md).
112
+ - **Bring your own model.** GGUF in-process, MLX on Apple Silicon, or any
113
+ OpenAI-compatible endpoint. See [Models](docs/MODELS.md).
114
+ - **Ambient desktop presence, if you want it.** A native, focus-safe HUD shows
115
+ whether it's listening, transcribing, or typing while you dictate into another
116
+ app. Off by default. See
117
+ [Desktop Presence](docs/INTELLIGENT_TYPING_GUIDE.md#11-desktop-presence-ambient-on-desktop-status).
118
+ - **AIPI-Lite companion, if you have one.** A small device for meeting-capture
119
+ controls, and for speaking a reply to your coding agent from another room. See
120
+ [the workflow](docs/AIPI_LITE_DEV_WORKFLOW.md).
121
+
122
+ ## What it does, at a glance
123
+
124
+ | Voice typing | Meeting intelligence | Project-aware typing |
125
+ | --- | --- | --- |
126
+ | ![Pixel art microphone with hold-to-talk waves](docs/assets/pixellab/hold-to-talk-microphone.png) | ![Pixel art meeting notebook with action items](docs/assets/pixellab/meeting-intelligence-notebook.png) | ![Pixel art code editor connected to local context](docs/assets/pixellab/project-aware-typing.png) |
127
+ | Hold the hotkey, speak, release. The text goes into the active app. Punctuation commands (`"period"`, `"comma"`) and `"clipboard"` substitution work out of the box. | Capture mic and system audio together, get a live transcript with speaker labels, and let the AI pull out topics, actions, and artifacts you can review at `/history`. | Rough speech runs through intent classification, project-KB enrichment, and an LLM rewrite before it lands, tuned for Codex, Claude, the terminal, the browser, or your editor. |
128
+
129
+ ## See it learn
130
+
131
+ <p align="center">
132
+ <img src="docs/assets/pixellab/operator-working-loop.gif" alt="Animated pixel art operator working at a terminal while companion and task cards update" width="280">
133
+ </p>
134
+
135
+ Speech turns into transcript context, reviewable actions, summaries, and replies
136
+ for your coding agent, while the local runtime stays in charge. Because every
137
+ dictation is recorded, you can look back at what it heard, fix a mistake in one tap
138
+ (which teaches it), and replay the utterance through the updated pipeline. Instead
139
+ of trusting that it improved, you watch it happen.
140
+ [See the full walkthrough](docs/DICTATION_COPILOT.md).
141
+
142
+ <p align="center">
143
+ <img src="docs/assets/screenshots/journal.png" alt="The HoldSpeak dictation Journal: a said-to-typed timeline of recent dictations, each card showing the spoken transcript, the typed result, its routing target, and a per-utterance latency strip; one row marked corrected." width="760">
144
+ </p>
145
+ <p align="center"><em>The dictation journal. Every utterance, with what you said, what it typed, where it routed, and how long it took.</em></p>
146
+
147
+ And it shows you what it learned. The Memory tab opens with a "What HoldSpeak
148
+ learned" digest: how many corrections you made, how many dictations you corrected,
149
+ and for each correction a real "learned from N similar" count, computed by the
150
+ same matcher that nudges routing. No inflated numbers, quiet when nothing matched.
151
+
152
+ <p align="center">
153
+ <img src="docs/assets/screenshots/learning-digest-week.png" alt="The 'What HoldSpeak learned' digest: a this-week / all-time toggle, headline counts for corrections made, dictations corrected, and utterances nudged, a breakdown by block and target, and per-correction 'learned from N similar' rows." width="760">
154
+ </p>
155
+ <p align="center"><em>What HoldSpeak learned. Honest, windowed counts from the same matcher that nudges your routing.</em></p>
156
+
157
+ ## Quickstart
158
+
159
+ The install script clones the repo, `doctor` checks your setup, and `holdspeak`
160
+ launches the web runtime:
161
+
162
+ ```bash
163
+ curl -fsSL https://raw.githubusercontent.com/karolswdev/HoldSpeak/main/scripts/install.sh | bash
164
+ holdspeak doctor # check mic permissions and backends
165
+ holdspeak # launch the web runtime
166
+ ```
167
+
168
+ Or from a clone, with [`uv`](https://docs.astral.sh/uv/):
169
+
170
+ ```bash
171
+ git clone https://github.com/karolswdev/HoldSpeak.git && cd HoldSpeak
172
+ uv pip install -e .
173
+ holdspeak doctor && holdspeak
174
+ ```
175
+
176
+ Install only the extras you need:
177
+
178
+ ```bash
179
+ uv pip install -e '.[meeting]' # meeting mode and AI intelligence
180
+ uv pip install -e '.[dictation-mlx]' # intelligent dictation on Apple Silicon (MLX)
181
+ uv pip install -e '.[dictation-llama]' # intelligent dictation, cross-platform (GGUF)
182
+ uv pip install -e '.[dictation-openai]'# intelligent dictation via an OpenAI-compatible endpoint
183
+ ```
184
+
185
+ The dictation and meeting LLM is yours to choose. See
186
+ [`docs/MODELS.md`](docs/MODELS.md) for the contract and current suggestions.
187
+
188
+ ### Upgrading and your data
189
+
190
+ Your whole HoldSpeak database is a single SQLite file. Before a version jump you
191
+ can snapshot it with `holdspeak backup`, and put one back with `holdspeak
192
+ restore`. Upgrades are safe by default: HoldSpeak backs up an older database
193
+ before it touches it, and refuses to open a database written by a newer build
194
+ rather than risk your data. `holdspeak doctor` reports the schema and config
195
+ state it found. The full policy is in
196
+ [`docs/RELEASING.md`](docs/RELEASING.md).
197
+
198
+ ## Platform support
199
+
200
+ | Capability | macOS 14+ (Apple Silicon) | Linux X11 | Linux Wayland |
201
+ |---|---|---|---|
202
+ | Voice typing | ✅ | ✅ | ✅ |
203
+ | Global hotkey | ✅ | ✅ | ⚠️ Best effort |
204
+ | Cross-app typing | ✅ | ✅ | ⚠️ Best effort |
205
+ | Meeting mode | ✅ | ✅ | ✅ |
206
+ | System audio capture | ✅ BlackHole | ✅ Pulse/PipeWire | ✅ Pulse/PipeWire |
207
+
208
+ Wayland often blocks global hooks and synthetic typing, so HoldSpeak falls back to clipboard paste for injection.
209
+
210
+ ## Meeting intelligence
211
+
212
+ Record or save a meeting and HoldSpeak turns the transcript into structured,
213
+ reviewable artifacts. It scores the transcript for intent (architecture, delivery,
214
+ product, incident, comms), runs a chain of plugins, and has each one call your LLM
215
+ to produce a typed artifact. The results render read-only at `/history`. HoldSpeak
216
+ ships 14 built-in plugins, all real and backed by an LLM.
217
+
218
+ Plugins can also propose actions. An actuator proposes an external side effect,
219
+ like filing a ticket or posting an update, that only runs after you approve it for
220
+ that specific action. Actuators are off by default. Write your own with the
221
+ [Plugin Authoring guide](docs/PLUGIN_AUTHORING.md); for endpoints and routing, see
222
+ the [Meeting Mode Guide](docs/MEETING_MODE_GUIDE.md).
223
+
224
+ Then close the loop. After a meeting, the "Your next move" aftercare panel at
225
+ `/history` shows what is still open (by owner), what was decided, and what changed
226
+ since the last meeting. Jump to the transcript moment that justifies any result,
227
+ file an accepted action as a human-approved issue through that same actuator flow,
228
+ or draft a copyable follow-up. It is read-only and local: nothing is sent, and
229
+ nothing runs, without your approval. See the
230
+ [Meeting Mode Guide](docs/MEETING_MODE_GUIDE.md#meeting-aftercare-close-the-loop).
231
+
232
+ ## AIPI-Lite companion
233
+
234
+ <p align="center">
235
+ <img src="docs/assets/pixellab/aipi-lite-companion.png" alt="Pixel art AIPI-Lite companion device" width="220">
236
+ </p>
237
+
238
+ AIPI-Lite is an optional ESPHome-based device you can carry between rooms. Put it
239
+ on Wi-Fi (a phone hotspot works), and it gives you meeting-capture controls and
240
+ status feedback. With Claude/Codex hooks on, it tells you when an agent is waiting
241
+ so you can speak the reply back into the coding session. Buy the hardware from the
242
+ [official page](https://aipi.com/products/aipi-lite) or the
243
+ [Amazon listing](https://www.amazon.com/dp/B0FQNNVV36); firmware and bridge setup
244
+ are in the [AIPI-Lite Developer Workflow](docs/AIPI_LITE_DEV_WORKFLOW.md).
245
+
246
+ ## Where to go next
247
+
248
+ | I want to… | Read this |
249
+ |---|---|
250
+ | Browse all the docs | [Documentation index](docs/README.md) |
251
+ | Get it running and verify my setup | [Getting Started](docs/GETTING_STARTED.md) |
252
+ | Choose / configure a model | [Models (bring your own)](docs/MODELS.md) |
253
+ | See speech become a project-grounded task | [The Dictation Copilot](docs/DICTATION_COPILOT.md) |
254
+ | Set up project-aware dictation for Codex / Claude | [Intelligent Typing Setup](docs/INTELLIGENT_TYPING_GUIDE.md) |
255
+ | Review, correct, and replay past dictations | [Dictation journal & replay](docs/INTELLIGENT_TYPING_GUIDE.md#12-dictation-journal-corrections--replay) |
256
+ | Use meeting mode and configure AI intelligence | [Meeting Mode Guide](docs/MEETING_MODE_GUIDE.md) |
257
+ | Wire up the AIPI-Lite companion | [AIPI-Lite Developer Workflow](docs/AIPI_LITE_DEV_WORKFLOW.md) |
258
+ | Install Claude / Codex agent hooks | [Agent Hook Install](docs/AGENT_HOOK_INSTALL.md) |
259
+ | Understand what's stored and what can leave my machine | [Security & Privacy](docs/SECURITY.md) |
260
+
261
+ ## Configuration
262
+
263
+ Config lives at `~/.config/holdspeak/config.json`, but you rarely edit it by hand.
264
+ The Settings page in the web runtime exposes the hotkey, model, meeting intel,
265
+ dictation pipeline, and presence options. The full reference is in
266
+ [Getting Started](docs/GETTING_STARTED.md) and the guides above.
267
+
268
+ ## Contributing
269
+
270
+ Contributions are welcome. See [`CONTRIBUTING.md`](CONTRIBUTING.md) for setup
271
+ (`uv`, the git hooks, the test command) and the commit-contract workflow. Recent
272
+ changes are in [`CHANGELOG.md`](CHANGELOG.md).
273
+
274
+ ## License
275
+
276
+ Licensed under the Apache License 2.0. See [`LICENSE`](LICENSE).