flowly-ai 0.2.0__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 (535) hide show
  1. flowly_ai-0.2.0/.gitignore +18 -0
  2. flowly_ai-0.2.0/LICENSE +21 -0
  3. flowly_ai-0.2.0/PKG-INFO +397 -0
  4. flowly_ai-0.2.0/README.md +351 -0
  5. flowly_ai-0.2.0/bridge/package.json +26 -0
  6. flowly_ai-0.2.0/bridge/src/index.ts +50 -0
  7. flowly_ai-0.2.0/bridge/src/server.ts +104 -0
  8. flowly_ai-0.2.0/bridge/src/types.d.ts +3 -0
  9. flowly_ai-0.2.0/bridge/src/whatsapp.ts +180 -0
  10. flowly_ai-0.2.0/bridge/tsconfig.json +16 -0
  11. flowly_ai-0.2.0/flowly/__init__.py +16 -0
  12. flowly_ai-0.2.0/flowly/__main__.py +8 -0
  13. flowly_ai-0.2.0/flowly/agent/__init__.py +8 -0
  14. flowly_ai-0.2.0/flowly/agent/context.py +485 -0
  15. flowly_ai-0.2.0/flowly/agent/loop.py +1262 -0
  16. flowly_ai-0.2.0/flowly/agent/memory.py +109 -0
  17. flowly_ai-0.2.0/flowly/agent/skills.py +259 -0
  18. flowly_ai-0.2.0/flowly/agent/subagent.py +233 -0
  19. flowly_ai-0.2.0/flowly/agent/tools/__init__.py +6 -0
  20. flowly_ai-0.2.0/flowly/agent/tools/base.py +55 -0
  21. flowly_ai-0.2.0/flowly/agent/tools/cron.py +478 -0
  22. flowly_ai-0.2.0/flowly/agent/tools/docker.py +605 -0
  23. flowly_ai-0.2.0/flowly/agent/tools/filesystem.py +191 -0
  24. flowly_ai-0.2.0/flowly/agent/tools/message.py +235 -0
  25. flowly_ai-0.2.0/flowly/agent/tools/registry.py +257 -0
  26. flowly_ai-0.2.0/flowly/agent/tools/screenshot.py +444 -0
  27. flowly_ai-0.2.0/flowly/agent/tools/shell.py +157 -0
  28. flowly_ai-0.2.0/flowly/agent/tools/spawn.py +65 -0
  29. flowly_ai-0.2.0/flowly/agent/tools/system.py +897 -0
  30. flowly_ai-0.2.0/flowly/agent/tools/trello.py +420 -0
  31. flowly_ai-0.2.0/flowly/agent/tools/voice.py +235 -0
  32. flowly_ai-0.2.0/flowly/agent/tools/web.py +139 -0
  33. flowly_ai-0.2.0/flowly/bus/__init__.py +6 -0
  34. flowly_ai-0.2.0/flowly/bus/events.py +37 -0
  35. flowly_ai-0.2.0/flowly/bus/queue.py +81 -0
  36. flowly_ai-0.2.0/flowly/channels/__init__.py +6 -0
  37. flowly_ai-0.2.0/flowly/channels/base.py +121 -0
  38. flowly_ai-0.2.0/flowly/channels/discord.py +263 -0
  39. flowly_ai-0.2.0/flowly/channels/manager.py +167 -0
  40. flowly_ai-0.2.0/flowly/channels/slack.py +204 -0
  41. flowly_ai-0.2.0/flowly/channels/telegram.py +739 -0
  42. flowly_ai-0.2.0/flowly/channels/whatsapp.py +136 -0
  43. flowly_ai-0.2.0/flowly/cli/__init__.py +1 -0
  44. flowly_ai-0.2.0/flowly/cli/commands.py +2270 -0
  45. flowly_ai-0.2.0/flowly/cli/setup.py +783 -0
  46. flowly_ai-0.2.0/flowly/compaction/__init__.py +39 -0
  47. flowly_ai-0.2.0/flowly/compaction/estimator.py +88 -0
  48. flowly_ai-0.2.0/flowly/compaction/pruning.py +223 -0
  49. flowly_ai-0.2.0/flowly/compaction/service.py +297 -0
  50. flowly_ai-0.2.0/flowly/compaction/summarizer.py +384 -0
  51. flowly_ai-0.2.0/flowly/compaction/types.py +71 -0
  52. flowly_ai-0.2.0/flowly/config/__init__.py +6 -0
  53. flowly_ai-0.2.0/flowly/config/loader.py +95 -0
  54. flowly_ai-0.2.0/flowly/config/schema.py +252 -0
  55. flowly_ai-0.2.0/flowly/cron/__init__.py +6 -0
  56. flowly_ai-0.2.0/flowly/cron/service.py +359 -0
  57. flowly_ai-0.2.0/flowly/cron/types.py +62 -0
  58. flowly_ai-0.2.0/flowly/exec/__init__.py +39 -0
  59. flowly_ai-0.2.0/flowly/exec/approvals.py +288 -0
  60. flowly_ai-0.2.0/flowly/exec/executor.py +167 -0
  61. flowly_ai-0.2.0/flowly/exec/safety.py +247 -0
  62. flowly_ai-0.2.0/flowly/exec/types.py +86 -0
  63. flowly_ai-0.2.0/flowly/gateway/__init__.py +5 -0
  64. flowly_ai-0.2.0/flowly/gateway/server.py +115 -0
  65. flowly_ai-0.2.0/flowly/heartbeat/__init__.py +5 -0
  66. flowly_ai-0.2.0/flowly/heartbeat/service.py +130 -0
  67. flowly_ai-0.2.0/flowly/hub/__init__.py +6 -0
  68. flowly_ai-0.2.0/flowly/hub/cli.py +415 -0
  69. flowly_ai-0.2.0/flowly/hub/client.py +323 -0
  70. flowly_ai-0.2.0/flowly/hub/manager.py +523 -0
  71. flowly_ai-0.2.0/flowly/pairing/__init__.py +21 -0
  72. flowly_ai-0.2.0/flowly/pairing/store.py +343 -0
  73. flowly_ai-0.2.0/flowly/providers/__init__.py +6 -0
  74. flowly_ai-0.2.0/flowly/providers/base.py +69 -0
  75. flowly_ai-0.2.0/flowly/providers/litellm_provider.py +186 -0
  76. flowly_ai-0.2.0/flowly/providers/transcription.py +64 -0
  77. flowly_ai-0.2.0/flowly/session/__init__.py +5 -0
  78. flowly_ai-0.2.0/flowly/session/manager.py +203 -0
  79. flowly_ai-0.2.0/flowly/skills/README.md +24 -0
  80. flowly_ai-0.2.0/flowly/skills/compact/SKILL.md +27 -0
  81. flowly_ai-0.2.0/flowly/skills/github/SKILL.md +48 -0
  82. flowly_ai-0.2.0/flowly/skills/skill-creator/SKILL.md +371 -0
  83. flowly_ai-0.2.0/flowly/skills/summarize/SKILL.md +67 -0
  84. flowly_ai-0.2.0/flowly/skills/tmux/SKILL.md +121 -0
  85. flowly_ai-0.2.0/flowly/skills/tmux/scripts/find-sessions.sh +112 -0
  86. flowly_ai-0.2.0/flowly/skills/tmux/scripts/wait-for-text.sh +83 -0
  87. flowly_ai-0.2.0/flowly/skills/weather/SKILL.md +49 -0
  88. flowly_ai-0.2.0/flowly/utils/__init__.py +5 -0
  89. flowly_ai-0.2.0/flowly/utils/helpers.py +91 -0
  90. flowly_ai-0.2.0/flowly/voice/__init__.py +31 -0
  91. flowly_ai-0.2.0/flowly/voice/audio.py +158 -0
  92. flowly_ai-0.2.0/flowly/voice/call_manager.py +474 -0
  93. flowly_ai-0.2.0/flowly/voice/plugin.py +398 -0
  94. flowly_ai-0.2.0/flowly/voice/stt.py +229 -0
  95. flowly_ai-0.2.0/flowly/voice/tts.py +203 -0
  96. flowly_ai-0.2.0/flowly/voice/types.py +120 -0
  97. flowly_ai-0.2.0/flowly/voice/webhook.py +467 -0
  98. flowly_ai-0.2.0/pyproject.toml +100 -0
  99. flowly_ai-0.2.0/voice-bridge/README.md +232 -0
  100. flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/captions/LICENSE +21 -0
  101. flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/captions/README.md +220 -0
  102. flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/LICENSE +21 -0
  103. flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/README.md +867 -0
  104. flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/node_modules/@types/node/LICENSE +21 -0
  105. flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/node_modules/@types/node/README.md +15 -0
  106. flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/node_modules/undici-types/README.md +6 -0
  107. flowly_ai-0.2.0/voice-bridge/node_modules/@esbuild/darwin-arm64/README.md +3 -0
  108. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/ajv-compiler/LICENSE +24 -0
  109. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/ajv-compiler/README.md +236 -0
  110. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/error/LICENSE +21 -0
  111. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/error/README.md +62 -0
  112. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/fast-json-stringify-compiler/LICENSE +21 -0
  113. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/fast-json-stringify-compiler/README.md +127 -0
  114. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/formbody/LICENSE +21 -0
  115. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/merge-json-schemas/LICENSE +21 -0
  116. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/merge-json-schemas/README.md +115 -0
  117. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/websocket/LICENSE +21 -0
  118. flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/websocket/README.md +385 -0
  119. flowly_ai-0.2.0/voice-bridge/node_modules/@jest/schemas/LICENSE +21 -0
  120. flowly_ai-0.2.0/voice-bridge/node_modules/@jest/schemas/README.md +3 -0
  121. flowly_ai-0.2.0/voice-bridge/node_modules/@jridgewell/sourcemap-codec/LICENSE +19 -0
  122. flowly_ai-0.2.0/voice-bridge/node_modules/@jridgewell/sourcemap-codec/README.md +264 -0
  123. flowly_ai-0.2.0/voice-bridge/node_modules/@pinojs/redact/LICENSE +21 -0
  124. flowly_ai-0.2.0/voice-bridge/node_modules/@pinojs/redact/README.md +350 -0
  125. flowly_ai-0.2.0/voice-bridge/node_modules/@rollup/rollup-darwin-arm64/README.md +3 -0
  126. flowly_ai-0.2.0/voice-bridge/node_modules/@types/estree/LICENSE +21 -0
  127. flowly_ai-0.2.0/voice-bridge/node_modules/@types/estree/README.md +15 -0
  128. flowly_ai-0.2.0/voice-bridge/node_modules/@types/node/LICENSE +21 -0
  129. flowly_ai-0.2.0/voice-bridge/node_modules/@types/node/README.md +15 -0
  130. flowly_ai-0.2.0/voice-bridge/node_modules/@types/node-fetch/LICENSE +21 -0
  131. flowly_ai-0.2.0/voice-bridge/node_modules/@types/node-fetch/README.md +15 -0
  132. flowly_ai-0.2.0/voice-bridge/node_modules/@types/ws/LICENSE +21 -0
  133. flowly_ai-0.2.0/voice-bridge/node_modules/@types/ws/README.md +15 -0
  134. flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/expect/LICENSE +21 -0
  135. flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/expect/README.md +17 -0
  136. flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/runner/LICENSE +21 -0
  137. flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/runner/README.md +5 -0
  138. flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/snapshot/LICENSE +21 -0
  139. flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/snapshot/README.md +79 -0
  140. flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/spy/LICENSE +21 -0
  141. flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/spy/README.md +3 -0
  142. flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/utils/LICENSE +21 -0
  143. flowly_ai-0.2.0/voice-bridge/node_modules/abort-controller/LICENSE +21 -0
  144. flowly_ai-0.2.0/voice-bridge/node_modules/abort-controller/README.md +98 -0
  145. flowly_ai-0.2.0/voice-bridge/node_modules/acorn/LICENSE +21 -0
  146. flowly_ai-0.2.0/voice-bridge/node_modules/acorn/README.md +282 -0
  147. flowly_ai-0.2.0/voice-bridge/node_modules/acorn-walk/LICENSE +21 -0
  148. flowly_ai-0.2.0/voice-bridge/node_modules/acorn-walk/README.md +124 -0
  149. flowly_ai-0.2.0/voice-bridge/node_modules/agent-base/README.md +145 -0
  150. flowly_ai-0.2.0/voice-bridge/node_modules/agentkeepalive/LICENSE +23 -0
  151. flowly_ai-0.2.0/voice-bridge/node_modules/agentkeepalive/README.md +256 -0
  152. flowly_ai-0.2.0/voice-bridge/node_modules/ajv/LICENSE +22 -0
  153. flowly_ai-0.2.0/voice-bridge/node_modules/ajv/README.md +207 -0
  154. flowly_ai-0.2.0/voice-bridge/node_modules/ajv/node_modules/fast-uri/LICENSE +32 -0
  155. flowly_ai-0.2.0/voice-bridge/node_modules/ajv/node_modules/fast-uri/README.md +143 -0
  156. flowly_ai-0.2.0/voice-bridge/node_modules/ajv-formats/LICENSE +21 -0
  157. flowly_ai-0.2.0/voice-bridge/node_modules/ajv-formats/README.md +123 -0
  158. flowly_ai-0.2.0/voice-bridge/node_modules/anymatch/LICENSE +15 -0
  159. flowly_ai-0.2.0/voice-bridge/node_modules/anymatch/README.md +87 -0
  160. flowly_ai-0.2.0/voice-bridge/node_modules/assertion-error/README.md +41 -0
  161. flowly_ai-0.2.0/voice-bridge/node_modules/asynckit/LICENSE +21 -0
  162. flowly_ai-0.2.0/voice-bridge/node_modules/asynckit/README.md +233 -0
  163. flowly_ai-0.2.0/voice-bridge/node_modules/atomic-sleep/LICENSE +22 -0
  164. flowly_ai-0.2.0/voice-bridge/node_modules/avvio/LICENSE +24 -0
  165. flowly_ai-0.2.0/voice-bridge/node_modules/avvio/README.md +688 -0
  166. flowly_ai-0.2.0/voice-bridge/node_modules/axios/LICENSE +7 -0
  167. flowly_ai-0.2.0/voice-bridge/node_modules/axios/README.md +1918 -0
  168. flowly_ai-0.2.0/voice-bridge/node_modules/axios/lib/adapters/README.md +37 -0
  169. flowly_ai-0.2.0/voice-bridge/node_modules/axios/lib/core/README.md +8 -0
  170. flowly_ai-0.2.0/voice-bridge/node_modules/axios/lib/env/README.md +3 -0
  171. flowly_ai-0.2.0/voice-bridge/node_modules/axios/lib/helpers/README.md +7 -0
  172. flowly_ai-0.2.0/voice-bridge/node_modules/balanced-match/README.md +97 -0
  173. flowly_ai-0.2.0/voice-bridge/node_modules/base64-js/LICENSE +21 -0
  174. flowly_ai-0.2.0/voice-bridge/node_modules/base64-js/README.md +34 -0
  175. flowly_ai-0.2.0/voice-bridge/node_modules/brace-expansion/LICENSE +21 -0
  176. flowly_ai-0.2.0/voice-bridge/node_modules/brace-expansion/README.md +129 -0
  177. flowly_ai-0.2.0/voice-bridge/node_modules/braces/LICENSE +21 -0
  178. flowly_ai-0.2.0/voice-bridge/node_modules/braces/README.md +586 -0
  179. flowly_ai-0.2.0/voice-bridge/node_modules/buffer/LICENSE +21 -0
  180. flowly_ai-0.2.0/voice-bridge/node_modules/buffer/README.md +410 -0
  181. flowly_ai-0.2.0/voice-bridge/node_modules/buffer-equal-constant-time/README.md +50 -0
  182. flowly_ai-0.2.0/voice-bridge/node_modules/cac/LICENSE +21 -0
  183. flowly_ai-0.2.0/voice-bridge/node_modules/cac/README.md +536 -0
  184. flowly_ai-0.2.0/voice-bridge/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  185. flowly_ai-0.2.0/voice-bridge/node_modules/call-bind-apply-helpers/README.md +62 -0
  186. flowly_ai-0.2.0/voice-bridge/node_modules/call-bound/LICENSE +21 -0
  187. flowly_ai-0.2.0/voice-bridge/node_modules/call-bound/README.md +53 -0
  188. flowly_ai-0.2.0/voice-bridge/node_modules/chai/LICENSE +21 -0
  189. flowly_ai-0.2.0/voice-bridge/node_modules/chai/README.md +212 -0
  190. flowly_ai-0.2.0/voice-bridge/node_modules/check-error/LICENSE +19 -0
  191. flowly_ai-0.2.0/voice-bridge/node_modules/check-error/README.md +207 -0
  192. flowly_ai-0.2.0/voice-bridge/node_modules/chokidar/LICENSE +21 -0
  193. flowly_ai-0.2.0/voice-bridge/node_modules/chokidar/README.md +308 -0
  194. flowly_ai-0.2.0/voice-bridge/node_modules/colorette/README.md +134 -0
  195. flowly_ai-0.2.0/voice-bridge/node_modules/command-exists/LICENSE +22 -0
  196. flowly_ai-0.2.0/voice-bridge/node_modules/command-exists/README.md +83 -0
  197. flowly_ai-0.2.0/voice-bridge/node_modules/concat-map/LICENSE +18 -0
  198. flowly_ai-0.2.0/voice-bridge/node_modules/confbox/LICENSE +118 -0
  199. flowly_ai-0.2.0/voice-bridge/node_modules/confbox/README.md +191 -0
  200. flowly_ai-0.2.0/voice-bridge/node_modules/cookie/LICENSE +24 -0
  201. flowly_ai-0.2.0/voice-bridge/node_modules/cookie/README.md +317 -0
  202. flowly_ai-0.2.0/voice-bridge/node_modules/cross-fetch/LICENSE +21 -0
  203. flowly_ai-0.2.0/voice-bridge/node_modules/cross-fetch/README.md +169 -0
  204. flowly_ai-0.2.0/voice-bridge/node_modules/cross-spawn/LICENSE +21 -0
  205. flowly_ai-0.2.0/voice-bridge/node_modules/cross-spawn/README.md +89 -0
  206. flowly_ai-0.2.0/voice-bridge/node_modules/dateformat/LICENSE +20 -0
  207. flowly_ai-0.2.0/voice-bridge/node_modules/dayjs/LICENSE +21 -0
  208. flowly_ai-0.2.0/voice-bridge/node_modules/dayjs/README.md +202 -0
  209. flowly_ai-0.2.0/voice-bridge/node_modules/debug/LICENSE +20 -0
  210. flowly_ai-0.2.0/voice-bridge/node_modules/debug/README.md +481 -0
  211. flowly_ai-0.2.0/voice-bridge/node_modules/deep-eql/LICENSE +19 -0
  212. flowly_ai-0.2.0/voice-bridge/node_modules/deep-eql/README.md +93 -0
  213. flowly_ai-0.2.0/voice-bridge/node_modules/diff-sequences/LICENSE +21 -0
  214. flowly_ai-0.2.0/voice-bridge/node_modules/diff-sequences/README.md +404 -0
  215. flowly_ai-0.2.0/voice-bridge/node_modules/dotenv/LICENSE +23 -0
  216. flowly_ai-0.2.0/voice-bridge/node_modules/dotenv/README.md +645 -0
  217. flowly_ai-0.2.0/voice-bridge/node_modules/dunder-proto/LICENSE +21 -0
  218. flowly_ai-0.2.0/voice-bridge/node_modules/dunder-proto/README.md +54 -0
  219. flowly_ai-0.2.0/voice-bridge/node_modules/duplexify/LICENSE +21 -0
  220. flowly_ai-0.2.0/voice-bridge/node_modules/duplexify/README.md +97 -0
  221. flowly_ai-0.2.0/voice-bridge/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  222. flowly_ai-0.2.0/voice-bridge/node_modules/ecdsa-sig-formatter/README.md +65 -0
  223. flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/LICENSE +21 -0
  224. flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/README.md +174 -0
  225. flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/human-signals/LICENSE +201 -0
  226. flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/human-signals/README.md +165 -0
  227. flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/readable-stream/LICENSE +47 -0
  228. flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/readable-stream/README.md +116 -0
  229. flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/signal-exit/README.md +39 -0
  230. flowly_ai-0.2.0/voice-bridge/node_modules/end-of-stream/LICENSE +21 -0
  231. flowly_ai-0.2.0/voice-bridge/node_modules/end-of-stream/README.md +54 -0
  232. flowly_ai-0.2.0/voice-bridge/node_modules/es-define-property/LICENSE +21 -0
  233. flowly_ai-0.2.0/voice-bridge/node_modules/es-define-property/README.md +49 -0
  234. flowly_ai-0.2.0/voice-bridge/node_modules/es-errors/LICENSE +21 -0
  235. flowly_ai-0.2.0/voice-bridge/node_modules/es-errors/README.md +55 -0
  236. flowly_ai-0.2.0/voice-bridge/node_modules/es-object-atoms/LICENSE +21 -0
  237. flowly_ai-0.2.0/voice-bridge/node_modules/es-object-atoms/README.md +63 -0
  238. flowly_ai-0.2.0/voice-bridge/node_modules/es-set-tostringtag/LICENSE +21 -0
  239. flowly_ai-0.2.0/voice-bridge/node_modules/es-set-tostringtag/README.md +53 -0
  240. flowly_ai-0.2.0/voice-bridge/node_modules/esbuild/README.md +3 -0
  241. flowly_ai-0.2.0/voice-bridge/node_modules/estree-walker/LICENSE +7 -0
  242. flowly_ai-0.2.0/voice-bridge/node_modules/estree-walker/README.md +48 -0
  243. flowly_ai-0.2.0/voice-bridge/node_modules/event-target-shim/LICENSE +22 -0
  244. flowly_ai-0.2.0/voice-bridge/node_modules/event-target-shim/README.md +293 -0
  245. flowly_ai-0.2.0/voice-bridge/node_modules/events/LICENSE +22 -0
  246. flowly_ai-0.2.0/voice-bridge/node_modules/fast-content-type-parse/LICENSE +24 -0
  247. flowly_ai-0.2.0/voice-bridge/node_modules/fast-content-type-parse/README.md +78 -0
  248. flowly_ai-0.2.0/voice-bridge/node_modules/fast-copy/LICENSE +21 -0
  249. flowly_ai-0.2.0/voice-bridge/node_modules/fast-copy/README.md +395 -0
  250. flowly_ai-0.2.0/voice-bridge/node_modules/fast-decode-uri-component/LICENSE +23 -0
  251. flowly_ai-0.2.0/voice-bridge/node_modules/fast-decode-uri-component/README.md +43 -0
  252. flowly_ai-0.2.0/voice-bridge/node_modules/fast-deep-equal/LICENSE +21 -0
  253. flowly_ai-0.2.0/voice-bridge/node_modules/fast-deep-equal/README.md +96 -0
  254. flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/LICENSE +21 -0
  255. flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/README.md +739 -0
  256. flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/node_modules/ajv-formats/LICENSE +21 -0
  257. flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/node_modules/ajv-formats/README.md +125 -0
  258. flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/test/json-schema-test-suite/README.md +10 -0
  259. flowly_ai-0.2.0/voice-bridge/node_modules/fast-querystring/LICENSE +25 -0
  260. flowly_ai-0.2.0/voice-bridge/node_modules/fast-querystring/README.md +114 -0
  261. flowly_ai-0.2.0/voice-bridge/node_modules/fast-safe-stringify/LICENSE +23 -0
  262. flowly_ai-0.2.0/voice-bridge/node_modules/fast-uri/LICENSE +30 -0
  263. flowly_ai-0.2.0/voice-bridge/node_modules/fast-uri/README.md +125 -0
  264. flowly_ai-0.2.0/voice-bridge/node_modules/fastify/LICENSE +24 -0
  265. flowly_ai-0.2.0/voice-bridge/node_modules/fastify/README.md +415 -0
  266. flowly_ai-0.2.0/voice-bridge/node_modules/fastify/test/bundler/README.md +29 -0
  267. flowly_ai-0.2.0/voice-bridge/node_modules/fastify-plugin/LICENSE +21 -0
  268. flowly_ai-0.2.0/voice-bridge/node_modules/fastify-plugin/README.md +182 -0
  269. flowly_ai-0.2.0/voice-bridge/node_modules/fastq/LICENSE +13 -0
  270. flowly_ai-0.2.0/voice-bridge/node_modules/fastq/README.md +310 -0
  271. flowly_ai-0.2.0/voice-bridge/node_modules/fill-range/LICENSE +21 -0
  272. flowly_ai-0.2.0/voice-bridge/node_modules/fill-range/README.md +237 -0
  273. flowly_ai-0.2.0/voice-bridge/node_modules/find-my-way/LICENSE +21 -0
  274. flowly_ai-0.2.0/voice-bridge/node_modules/find-my-way/README.md +823 -0
  275. flowly_ai-0.2.0/voice-bridge/node_modules/follow-redirects/LICENSE +18 -0
  276. flowly_ai-0.2.0/voice-bridge/node_modules/follow-redirects/README.md +155 -0
  277. flowly_ai-0.2.0/voice-bridge/node_modules/form-data/README.md +355 -0
  278. flowly_ai-0.2.0/voice-bridge/node_modules/forwarded/LICENSE +22 -0
  279. flowly_ai-0.2.0/voice-bridge/node_modules/forwarded/README.md +57 -0
  280. flowly_ai-0.2.0/voice-bridge/node_modules/function-bind/LICENSE +20 -0
  281. flowly_ai-0.2.0/voice-bridge/node_modules/function-bind/README.md +46 -0
  282. flowly_ai-0.2.0/voice-bridge/node_modules/get-func-name/LICENSE +19 -0
  283. flowly_ai-0.2.0/voice-bridge/node_modules/get-func-name/README.md +123 -0
  284. flowly_ai-0.2.0/voice-bridge/node_modules/get-intrinsic/LICENSE +21 -0
  285. flowly_ai-0.2.0/voice-bridge/node_modules/get-intrinsic/README.md +71 -0
  286. flowly_ai-0.2.0/voice-bridge/node_modules/get-proto/LICENSE +21 -0
  287. flowly_ai-0.2.0/voice-bridge/node_modules/get-proto/README.md +50 -0
  288. flowly_ai-0.2.0/voice-bridge/node_modules/glob-parent/LICENSE +15 -0
  289. flowly_ai-0.2.0/voice-bridge/node_modules/glob-parent/README.md +137 -0
  290. flowly_ai-0.2.0/voice-bridge/node_modules/gopd/LICENSE +21 -0
  291. flowly_ai-0.2.0/voice-bridge/node_modules/gopd/README.md +40 -0
  292. flowly_ai-0.2.0/voice-bridge/node_modules/has-symbols/LICENSE +21 -0
  293. flowly_ai-0.2.0/voice-bridge/node_modules/has-symbols/README.md +46 -0
  294. flowly_ai-0.2.0/voice-bridge/node_modules/has-tostringtag/LICENSE +21 -0
  295. flowly_ai-0.2.0/voice-bridge/node_modules/has-tostringtag/README.md +46 -0
  296. flowly_ai-0.2.0/voice-bridge/node_modules/hasown/LICENSE +21 -0
  297. flowly_ai-0.2.0/voice-bridge/node_modules/hasown/README.md +40 -0
  298. flowly_ai-0.2.0/voice-bridge/node_modules/help-me/LICENSE +22 -0
  299. flowly_ai-0.2.0/voice-bridge/node_modules/help-me/README.md +66 -0
  300. flowly_ai-0.2.0/voice-bridge/node_modules/https-proxy-agent/README.md +137 -0
  301. flowly_ai-0.2.0/voice-bridge/node_modules/human-signals/LICENSE +201 -0
  302. flowly_ai-0.2.0/voice-bridge/node_modules/human-signals/README.md +168 -0
  303. flowly_ai-0.2.0/voice-bridge/node_modules/humanize-ms/LICENSE +17 -0
  304. flowly_ai-0.2.0/voice-bridge/node_modules/humanize-ms/README.md +40 -0
  305. flowly_ai-0.2.0/voice-bridge/node_modules/ieee754/LICENSE +11 -0
  306. flowly_ai-0.2.0/voice-bridge/node_modules/ieee754/README.md +51 -0
  307. flowly_ai-0.2.0/voice-bridge/node_modules/ignore-by-default/LICENSE +14 -0
  308. flowly_ai-0.2.0/voice-bridge/node_modules/ignore-by-default/README.md +26 -0
  309. flowly_ai-0.2.0/voice-bridge/node_modules/inherits/LICENSE +16 -0
  310. flowly_ai-0.2.0/voice-bridge/node_modules/inherits/README.md +42 -0
  311. flowly_ai-0.2.0/voice-bridge/node_modules/ipaddr.js/LICENSE +19 -0
  312. flowly_ai-0.2.0/voice-bridge/node_modules/ipaddr.js/README.md +233 -0
  313. flowly_ai-0.2.0/voice-bridge/node_modules/is-extglob/LICENSE +21 -0
  314. flowly_ai-0.2.0/voice-bridge/node_modules/is-extglob/README.md +107 -0
  315. flowly_ai-0.2.0/voice-bridge/node_modules/is-glob/LICENSE +21 -0
  316. flowly_ai-0.2.0/voice-bridge/node_modules/is-glob/README.md +206 -0
  317. flowly_ai-0.2.0/voice-bridge/node_modules/is-number/LICENSE +21 -0
  318. flowly_ai-0.2.0/voice-bridge/node_modules/is-number/README.md +187 -0
  319. flowly_ai-0.2.0/voice-bridge/node_modules/isexe/LICENSE +15 -0
  320. flowly_ai-0.2.0/voice-bridge/node_modules/isexe/README.md +51 -0
  321. flowly_ai-0.2.0/voice-bridge/node_modules/joycon/LICENSE +21 -0
  322. flowly_ai-0.2.0/voice-bridge/node_modules/joycon/README.md +133 -0
  323. flowly_ai-0.2.0/voice-bridge/node_modules/js-tokens/LICENSE +21 -0
  324. flowly_ai-0.2.0/voice-bridge/node_modules/js-tokens/README.md +14 -0
  325. flowly_ai-0.2.0/voice-bridge/node_modules/json-schema-ref-resolver/LICENSE +21 -0
  326. flowly_ai-0.2.0/voice-bridge/node_modules/json-schema-ref-resolver/README.md +398 -0
  327. flowly_ai-0.2.0/voice-bridge/node_modules/json-schema-traverse/LICENSE +21 -0
  328. flowly_ai-0.2.0/voice-bridge/node_modules/json-schema-traverse/README.md +95 -0
  329. flowly_ai-0.2.0/voice-bridge/node_modules/jsonwebtoken/LICENSE +21 -0
  330. flowly_ai-0.2.0/voice-bridge/node_modules/jsonwebtoken/README.md +396 -0
  331. flowly_ai-0.2.0/voice-bridge/node_modules/jwa/LICENSE +17 -0
  332. flowly_ai-0.2.0/voice-bridge/node_modules/jwa/README.md +150 -0
  333. flowly_ai-0.2.0/voice-bridge/node_modules/jws/LICENSE +17 -0
  334. flowly_ai-0.2.0/voice-bridge/node_modules/light-my-request/LICENSE +32 -0
  335. flowly_ai-0.2.0/voice-bridge/node_modules/light-my-request/README.md +260 -0
  336. flowly_ai-0.2.0/voice-bridge/node_modules/local-pkg/LICENSE +21 -0
  337. flowly_ai-0.2.0/voice-bridge/node_modules/local-pkg/README.md +55 -0
  338. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.includes/LICENSE +47 -0
  339. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.includes/README.md +18 -0
  340. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isboolean/LICENSE +22 -0
  341. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isboolean/README.md +18 -0
  342. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isinteger/LICENSE +47 -0
  343. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isinteger/README.md +18 -0
  344. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isnumber/LICENSE +22 -0
  345. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isnumber/README.md +18 -0
  346. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isplainobject/LICENSE +47 -0
  347. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isplainobject/README.md +18 -0
  348. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isstring/LICENSE +22 -0
  349. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isstring/README.md +18 -0
  350. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.once/LICENSE +47 -0
  351. flowly_ai-0.2.0/voice-bridge/node_modules/lodash.once/README.md +18 -0
  352. flowly_ai-0.2.0/voice-bridge/node_modules/loupe/LICENSE +9 -0
  353. flowly_ai-0.2.0/voice-bridge/node_modules/loupe/README.md +63 -0
  354. flowly_ai-0.2.0/voice-bridge/node_modules/magic-string/LICENSE +7 -0
  355. flowly_ai-0.2.0/voice-bridge/node_modules/magic-string/README.md +325 -0
  356. flowly_ai-0.2.0/voice-bridge/node_modules/math-intrinsics/LICENSE +21 -0
  357. flowly_ai-0.2.0/voice-bridge/node_modules/math-intrinsics/README.md +50 -0
  358. flowly_ai-0.2.0/voice-bridge/node_modules/merge-stream/LICENSE +21 -0
  359. flowly_ai-0.2.0/voice-bridge/node_modules/merge-stream/README.md +78 -0
  360. flowly_ai-0.2.0/voice-bridge/node_modules/mime-db/LICENSE +23 -0
  361. flowly_ai-0.2.0/voice-bridge/node_modules/mime-db/README.md +100 -0
  362. flowly_ai-0.2.0/voice-bridge/node_modules/mime-types/LICENSE +23 -0
  363. flowly_ai-0.2.0/voice-bridge/node_modules/mime-types/README.md +113 -0
  364. flowly_ai-0.2.0/voice-bridge/node_modules/minimatch/LICENSE +15 -0
  365. flowly_ai-0.2.0/voice-bridge/node_modules/minimatch/README.md +230 -0
  366. flowly_ai-0.2.0/voice-bridge/node_modules/minimist/LICENSE +18 -0
  367. flowly_ai-0.2.0/voice-bridge/node_modules/minimist/README.md +121 -0
  368. flowly_ai-0.2.0/voice-bridge/node_modules/mlly/LICENSE +21 -0
  369. flowly_ai-0.2.0/voice-bridge/node_modules/mlly/README.md +561 -0
  370. flowly_ai-0.2.0/voice-bridge/node_modules/mlly/node_modules/pathe/LICENSE +70 -0
  371. flowly_ai-0.2.0/voice-bridge/node_modules/mlly/node_modules/pathe/README.md +73 -0
  372. flowly_ai-0.2.0/voice-bridge/node_modules/nanoid/LICENSE +20 -0
  373. flowly_ai-0.2.0/voice-bridge/node_modules/nanoid/README.md +39 -0
  374. flowly_ai-0.2.0/voice-bridge/node_modules/node-domexception/LICENSE +21 -0
  375. flowly_ai-0.2.0/voice-bridge/node_modules/node-domexception/README.md +46 -0
  376. flowly_ai-0.2.0/voice-bridge/node_modules/node-fetch/README.md +634 -0
  377. flowly_ai-0.2.0/voice-bridge/node_modules/nodemon/LICENSE +21 -0
  378. flowly_ai-0.2.0/voice-bridge/node_modules/nodemon/README.md +436 -0
  379. flowly_ai-0.2.0/voice-bridge/node_modules/normalize-path/LICENSE +21 -0
  380. flowly_ai-0.2.0/voice-bridge/node_modules/normalize-path/README.md +127 -0
  381. flowly_ai-0.2.0/voice-bridge/node_modules/object-inspect/LICENSE +21 -0
  382. flowly_ai-0.2.0/voice-bridge/node_modules/on-exit-leak-free/LICENSE +21 -0
  383. flowly_ai-0.2.0/voice-bridge/node_modules/on-exit-leak-free/README.md +54 -0
  384. flowly_ai-0.2.0/voice-bridge/node_modules/once/LICENSE +15 -0
  385. flowly_ai-0.2.0/voice-bridge/node_modules/once/README.md +79 -0
  386. flowly_ai-0.2.0/voice-bridge/node_modules/openai/LICENSE +201 -0
  387. flowly_ai-0.2.0/voice-bridge/node_modules/openai/README.md +494 -0
  388. flowly_ai-0.2.0/voice-bridge/node_modules/openai/_shims/README.md +46 -0
  389. flowly_ai-0.2.0/voice-bridge/node_modules/openai/node_modules/@types/node/LICENSE +21 -0
  390. flowly_ai-0.2.0/voice-bridge/node_modules/openai/node_modules/@types/node/README.md +15 -0
  391. flowly_ai-0.2.0/voice-bridge/node_modules/openai/node_modules/undici-types/README.md +6 -0
  392. flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/_shims/README.md +46 -0
  393. flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/_vendor/partial-json-parser/README.md +3 -0
  394. flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/_vendor/zod-to-json-schema/LICENSE +15 -0
  395. flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/_vendor/zod-to-json-schema/README.md +3 -0
  396. flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/internal/qs/README.md +3 -0
  397. flowly_ai-0.2.0/voice-bridge/node_modules/pathe/LICENSE +44 -0
  398. flowly_ai-0.2.0/voice-bridge/node_modules/pathe/README.md +69 -0
  399. flowly_ai-0.2.0/voice-bridge/node_modules/pathval/LICENSE +16 -0
  400. flowly_ai-0.2.0/voice-bridge/node_modules/pathval/README.md +147 -0
  401. flowly_ai-0.2.0/voice-bridge/node_modules/picocolors/LICENSE +15 -0
  402. flowly_ai-0.2.0/voice-bridge/node_modules/picocolors/README.md +21 -0
  403. flowly_ai-0.2.0/voice-bridge/node_modules/picomatch/LICENSE +21 -0
  404. flowly_ai-0.2.0/voice-bridge/node_modules/picomatch/README.md +708 -0
  405. flowly_ai-0.2.0/voice-bridge/node_modules/pino/LICENSE +21 -0
  406. flowly_ai-0.2.0/voice-bridge/node_modules/pino/README.md +177 -0
  407. flowly_ai-0.2.0/voice-bridge/node_modules/pino/node_modules/process-warning/LICENSE +21 -0
  408. flowly_ai-0.2.0/voice-bridge/node_modules/pino/node_modules/process-warning/README.md +118 -0
  409. flowly_ai-0.2.0/voice-bridge/node_modules/pino-abstract-transport/LICENSE +21 -0
  410. flowly_ai-0.2.0/voice-bridge/node_modules/pino-abstract-transport/README.md +172 -0
  411. flowly_ai-0.2.0/voice-bridge/node_modules/pino-pretty/LICENSE +21 -0
  412. flowly_ai-0.2.0/voice-bridge/node_modules/pino-pretty/node_modules/readable-stream/LICENSE +47 -0
  413. flowly_ai-0.2.0/voice-bridge/node_modules/pino-pretty/node_modules/readable-stream/README.md +116 -0
  414. flowly_ai-0.2.0/voice-bridge/node_modules/pino-std-serializers/LICENSE +7 -0
  415. flowly_ai-0.2.0/voice-bridge/node_modules/pkg-types/LICENSE +44 -0
  416. flowly_ai-0.2.0/voice-bridge/node_modules/pkg-types/README.md +167 -0
  417. flowly_ai-0.2.0/voice-bridge/node_modules/pkg-types/node_modules/pathe/LICENSE +70 -0
  418. flowly_ai-0.2.0/voice-bridge/node_modules/pkg-types/node_modules/pathe/README.md +73 -0
  419. flowly_ai-0.2.0/voice-bridge/node_modules/postcss/LICENSE +20 -0
  420. flowly_ai-0.2.0/voice-bridge/node_modules/postcss/README.md +29 -0
  421. flowly_ai-0.2.0/voice-bridge/node_modules/pretty-format/LICENSE +21 -0
  422. flowly_ai-0.2.0/voice-bridge/node_modules/pretty-format/README.md +463 -0
  423. flowly_ai-0.2.0/voice-bridge/node_modules/process/LICENSE +22 -0
  424. flowly_ai-0.2.0/voice-bridge/node_modules/process/README.md +26 -0
  425. flowly_ai-0.2.0/voice-bridge/node_modules/process-warning/LICENSE +21 -0
  426. flowly_ai-0.2.0/voice-bridge/node_modules/process-warning/README.md +118 -0
  427. flowly_ai-0.2.0/voice-bridge/node_modules/proxy-addr/LICENSE +22 -0
  428. flowly_ai-0.2.0/voice-bridge/node_modules/proxy-addr/README.md +139 -0
  429. flowly_ai-0.2.0/voice-bridge/node_modules/proxy-from-env/LICENSE +20 -0
  430. flowly_ai-0.2.0/voice-bridge/node_modules/proxy-from-env/README.md +131 -0
  431. flowly_ai-0.2.0/voice-bridge/node_modules/pstree.remy/LICENSE +7 -0
  432. flowly_ai-0.2.0/voice-bridge/node_modules/pstree.remy/README.md +26 -0
  433. flowly_ai-0.2.0/voice-bridge/node_modules/pump/LICENSE +21 -0
  434. flowly_ai-0.2.0/voice-bridge/node_modules/pump/README.md +74 -0
  435. flowly_ai-0.2.0/voice-bridge/node_modules/qs/README.md +733 -0
  436. flowly_ai-0.2.0/voice-bridge/node_modules/quick-format-unescaped/LICENSE +21 -0
  437. flowly_ai-0.2.0/voice-bridge/node_modules/react-is/LICENSE +21 -0
  438. flowly_ai-0.2.0/voice-bridge/node_modules/react-is/README.md +104 -0
  439. flowly_ai-0.2.0/voice-bridge/node_modules/readable-stream/LICENSE +47 -0
  440. flowly_ai-0.2.0/voice-bridge/node_modules/readable-stream/README.md +106 -0
  441. flowly_ai-0.2.0/voice-bridge/node_modules/readdirp/LICENSE +21 -0
  442. flowly_ai-0.2.0/voice-bridge/node_modules/readdirp/README.md +122 -0
  443. flowly_ai-0.2.0/voice-bridge/node_modules/real-require/README.md +51 -0
  444. flowly_ai-0.2.0/voice-bridge/node_modules/ret/LICENSE +21 -0
  445. flowly_ai-0.2.0/voice-bridge/node_modules/ret/README.md +539 -0
  446. flowly_ai-0.2.0/voice-bridge/node_modules/reusify/LICENSE +22 -0
  447. flowly_ai-0.2.0/voice-bridge/node_modules/reusify/README.md +139 -0
  448. flowly_ai-0.2.0/voice-bridge/node_modules/rfdc/LICENSE +15 -0
  449. flowly_ai-0.2.0/voice-bridge/node_modules/rollup/README.md +134 -0
  450. flowly_ai-0.2.0/voice-bridge/node_modules/safe-buffer/LICENSE +21 -0
  451. flowly_ai-0.2.0/voice-bridge/node_modules/safe-buffer/README.md +584 -0
  452. flowly_ai-0.2.0/voice-bridge/node_modules/safe-regex2/LICENSE +18 -0
  453. flowly_ai-0.2.0/voice-bridge/node_modules/safe-stable-stringify/LICENSE +21 -0
  454. flowly_ai-0.2.0/voice-bridge/node_modules/scmp/LICENSE +24 -0
  455. flowly_ai-0.2.0/voice-bridge/node_modules/scmp/README.md +42 -0
  456. flowly_ai-0.2.0/voice-bridge/node_modules/secure-json-parse/README.md +126 -0
  457. flowly_ai-0.2.0/voice-bridge/node_modules/semver/LICENSE +15 -0
  458. flowly_ai-0.2.0/voice-bridge/node_modules/semver/README.md +665 -0
  459. flowly_ai-0.2.0/voice-bridge/node_modules/set-cookie-parser/LICENSE +21 -0
  460. flowly_ai-0.2.0/voice-bridge/node_modules/set-cookie-parser/README.md +202 -0
  461. flowly_ai-0.2.0/voice-bridge/node_modules/side-channel/LICENSE +21 -0
  462. flowly_ai-0.2.0/voice-bridge/node_modules/side-channel/README.md +61 -0
  463. flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-list/LICENSE +21 -0
  464. flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-list/README.md +62 -0
  465. flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-map/LICENSE +21 -0
  466. flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-map/README.md +62 -0
  467. flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-weakmap/LICENSE +21 -0
  468. flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-weakmap/README.md +62 -0
  469. flowly_ai-0.2.0/voice-bridge/node_modules/siginfo/LICENSE +13 -0
  470. flowly_ai-0.2.0/voice-bridge/node_modules/siginfo/README.md +47 -0
  471. flowly_ai-0.2.0/voice-bridge/node_modules/signal-exit/README.md +74 -0
  472. flowly_ai-0.2.0/voice-bridge/node_modules/simple-update-notifier/LICENSE +21 -0
  473. flowly_ai-0.2.0/voice-bridge/node_modules/simple-update-notifier/README.md +82 -0
  474. flowly_ai-0.2.0/voice-bridge/node_modules/sonic-boom/LICENSE +21 -0
  475. flowly_ai-0.2.0/voice-bridge/node_modules/sonic-boom/README.md +152 -0
  476. flowly_ai-0.2.0/voice-bridge/node_modules/source-map-js/LICENSE +28 -0
  477. flowly_ai-0.2.0/voice-bridge/node_modules/source-map-js/README.md +765 -0
  478. flowly_ai-0.2.0/voice-bridge/node_modules/split2/LICENSE +13 -0
  479. flowly_ai-0.2.0/voice-bridge/node_modules/split2/README.md +85 -0
  480. flowly_ai-0.2.0/voice-bridge/node_modules/stackback/README.md +41 -0
  481. flowly_ai-0.2.0/voice-bridge/node_modules/std-env/README.md +118 -0
  482. flowly_ai-0.2.0/voice-bridge/node_modules/stream-shift/LICENSE +21 -0
  483. flowly_ai-0.2.0/voice-bridge/node_modules/stream-shift/README.md +25 -0
  484. flowly_ai-0.2.0/voice-bridge/node_modules/string_decoder/LICENSE +48 -0
  485. flowly_ai-0.2.0/voice-bridge/node_modules/string_decoder/README.md +47 -0
  486. flowly_ai-0.2.0/voice-bridge/node_modules/strip-literal/LICENSE +21 -0
  487. flowly_ai-0.2.0/voice-bridge/node_modules/strip-literal/README.md +29 -0
  488. flowly_ai-0.2.0/voice-bridge/node_modules/thread-stream/LICENSE +21 -0
  489. flowly_ai-0.2.0/voice-bridge/node_modules/thread-stream/README.md +135 -0
  490. flowly_ai-0.2.0/voice-bridge/node_modules/tinybench/LICENSE +21 -0
  491. flowly_ai-0.2.0/voice-bridge/node_modules/tinybench/README.md +422 -0
  492. flowly_ai-0.2.0/voice-bridge/node_modules/tinypool/LICENSE +24 -0
  493. flowly_ai-0.2.0/voice-bridge/node_modules/tinypool/README.md +21 -0
  494. flowly_ai-0.2.0/voice-bridge/node_modules/tinyspy/README.md +12 -0
  495. flowly_ai-0.2.0/voice-bridge/node_modules/to-regex-range/LICENSE +21 -0
  496. flowly_ai-0.2.0/voice-bridge/node_modules/to-regex-range/README.md +305 -0
  497. flowly_ai-0.2.0/voice-bridge/node_modules/toad-cache/LICENSE +21 -0
  498. flowly_ai-0.2.0/voice-bridge/node_modules/toad-cache/README.md +265 -0
  499. flowly_ai-0.2.0/voice-bridge/node_modules/touch/LICENSE +15 -0
  500. flowly_ai-0.2.0/voice-bridge/node_modules/touch/README.md +52 -0
  501. flowly_ai-0.2.0/voice-bridge/node_modules/twilio/LICENSE +21 -0
  502. flowly_ai-0.2.0/voice-bridge/node_modules/twilio/README.md +385 -0
  503. flowly_ai-0.2.0/voice-bridge/node_modules/type-detect/LICENSE +19 -0
  504. flowly_ai-0.2.0/voice-bridge/node_modules/type-detect/README.md +235 -0
  505. flowly_ai-0.2.0/voice-bridge/node_modules/typescript/README.md +50 -0
  506. flowly_ai-0.2.0/voice-bridge/node_modules/ufo/LICENSE +21 -0
  507. flowly_ai-0.2.0/voice-bridge/node_modules/ufo/README.md +582 -0
  508. flowly_ai-0.2.0/voice-bridge/node_modules/undefsafe/LICENSE +22 -0
  509. flowly_ai-0.2.0/voice-bridge/node_modules/undefsafe/README.md +63 -0
  510. flowly_ai-0.2.0/voice-bridge/node_modules/undici-types/LICENSE +21 -0
  511. flowly_ai-0.2.0/voice-bridge/node_modules/undici-types/README.md +6 -0
  512. flowly_ai-0.2.0/voice-bridge/node_modules/url-join/LICENSE +21 -0
  513. flowly_ai-0.2.0/voice-bridge/node_modules/url-join/README.md +47 -0
  514. flowly_ai-0.2.0/voice-bridge/node_modules/util-deprecate/LICENSE +24 -0
  515. flowly_ai-0.2.0/voice-bridge/node_modules/util-deprecate/README.md +53 -0
  516. flowly_ai-0.2.0/voice-bridge/node_modules/vite/README.md +20 -0
  517. flowly_ai-0.2.0/voice-bridge/node_modules/vite-node/LICENSE +21 -0
  518. flowly_ai-0.2.0/voice-bridge/node_modules/vite-node/README.md +186 -0
  519. flowly_ai-0.2.0/voice-bridge/node_modules/vitest/README.md +7 -0
  520. flowly_ai-0.2.0/voice-bridge/node_modules/web-streams-polyfill/LICENSE +22 -0
  521. flowly_ai-0.2.0/voice-bridge/node_modules/web-streams-polyfill/README.md +135 -0
  522. flowly_ai-0.2.0/voice-bridge/node_modules/webidl-conversions/README.md +53 -0
  523. flowly_ai-0.2.0/voice-bridge/node_modules/whatwg-url/README.md +67 -0
  524. flowly_ai-0.2.0/voice-bridge/node_modules/which/LICENSE +15 -0
  525. flowly_ai-0.2.0/voice-bridge/node_modules/which/README.md +54 -0
  526. flowly_ai-0.2.0/voice-bridge/node_modules/why-is-node-running/LICENSE +21 -0
  527. flowly_ai-0.2.0/voice-bridge/node_modules/why-is-node-running/README.md +104 -0
  528. flowly_ai-0.2.0/voice-bridge/node_modules/wrappy/LICENSE +15 -0
  529. flowly_ai-0.2.0/voice-bridge/node_modules/wrappy/README.md +36 -0
  530. flowly_ai-0.2.0/voice-bridge/node_modules/ws/LICENSE +20 -0
  531. flowly_ai-0.2.0/voice-bridge/node_modules/ws/README.md +548 -0
  532. flowly_ai-0.2.0/voice-bridge/node_modules/xmlbuilder/LICENSE +21 -0
  533. flowly_ai-0.2.0/voice-bridge/node_modules/xmlbuilder/README.md +97 -0
  534. flowly_ai-0.2.0/voice-bridge/node_modules/zod/LICENSE +21 -0
  535. flowly_ai-0.2.0/voice-bridge/node_modules/zod/README.md +208 -0
@@ -0,0 +1,18 @@
1
+ .assets
2
+ .env
3
+ *.pyc
4
+ dist/
5
+ build/
6
+ docs/
7
+ *.egg-info/
8
+ *.egg
9
+ *.pyc
10
+ *.pyo
11
+ *.pyd
12
+ *.pyw
13
+ *.pyz
14
+ *.pywz
15
+ *.pyzznanobot/
16
+ nanobot/
17
+ path/
18
+ .DS_Store
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 nocetic limited
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,397 @@
1
+ Metadata-Version: 2.4
2
+ Name: flowly-ai
3
+ Version: 0.2.0
4
+ Summary: A lightweight personal AI assistant framework
5
+ Project-URL: Homepage, https://github.com/hakansoren/flowlyai
6
+ Project-URL: Repository, https://github.com/hakansoren/flowlyai
7
+ Project-URL: Issues, https://github.com/hakansoren/flowlyai/issues
8
+ Author: flowly contributors
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: agent,ai,assistant,chatbot,discord,slack,telegram,voice
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Requires-Python: >=3.11
19
+ Requires-Dist: aiohttp>=3.9.0
20
+ Requires-Dist: audioop-lts>=0.2.0; python_version >= '3.13'
21
+ Requires-Dist: croniter>=2.0.0
22
+ Requires-Dist: filelock>=3.0.0
23
+ Requires-Dist: httpx>=0.25.0
24
+ Requires-Dist: inquirerpy>=0.3.4
25
+ Requires-Dist: litellm>=1.0.0
26
+ Requires-Dist: loguru>=0.7.0
27
+ Requires-Dist: pydantic-settings>=2.0.0
28
+ Requires-Dist: pydantic>=2.0.0
29
+ Requires-Dist: pyngrok>=7.0.0
30
+ Requires-Dist: python-multipart>=0.0.6
31
+ Requires-Dist: python-telegram-bot>=21.0
32
+ Requires-Dist: readability-lxml>=0.8.0
33
+ Requires-Dist: rich>=13.0.0
34
+ Requires-Dist: slack-sdk>=3.26.0
35
+ Requires-Dist: starlette>=0.32.0
36
+ Requires-Dist: tiktoken>=0.5.0
37
+ Requires-Dist: typer>=0.9.0
38
+ Requires-Dist: uvicorn>=0.24.0
39
+ Requires-Dist: websocket-client>=1.6.0
40
+ Requires-Dist: websockets>=12.0
41
+ Provides-Extra: dev
42
+ Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
43
+ Requires-Dist: pytest>=7.0.0; extra == 'dev'
44
+ Requires-Dist: ruff>=0.1.0; extra == 'dev'
45
+ Description-Content-Type: text/markdown
46
+
47
+ <div align="center">
48
+ <img src="flowly_logo.svg" alt="Flowly" width="150">
49
+ <h1>Flowly AI</h1>
50
+ <p><strong>Your personal AI that runs locally, talks everywhere.</strong></p>
51
+ <p>
52
+ <img src="https://img.shields.io/badge/python-≥3.11-3776AB?logo=python&logoColor=white" alt="Python">
53
+ <img src="https://img.shields.io/badge/platform-macOS%20·%20Linux%20·%20Windows-lightgrey" alt="Platform">
54
+ <img src="https://img.shields.io/badge/license-MIT-green" alt="License">
55
+ </p>
56
+ </div>
57
+
58
+ ---
59
+
60
+ Flowly is a personal AI assistant that lives on your machine. Connect it to Telegram, WhatsApp, Discord, or Slack — then talk to it from anywhere. It can browse the web, manage files, run shell commands, take screenshots, schedule tasks, make phone calls, and more.
61
+
62
+ ```
63
+ You (Telegram) → Flowly (your Mac/PC) → tools, files, APIs → response
64
+ ```
65
+
66
+ ## Why Flowly?
67
+
68
+ - **Runs on your machine** — your data stays local, your tools stay private
69
+ - **Always on** — install as a background service, survives terminal close and reboot
70
+ - **Multi-channel** — one agent, reachable from Telegram, WhatsApp, Discord, Slack
71
+ - **Voice calls** — answer phone calls with Twilio, talk with real-time STT/TTS
72
+ - **Extensible** — add tools, skills, personas, or entire channel adapters
73
+ - **Cross-platform** — macOS (launchd), Linux (systemd), Windows (Task Scheduler)
74
+
75
+ ## Quick Start
76
+
77
+ **Install with [uv](https://github.com/astral-sh/uv)** (recommended)
78
+
79
+ ```bash
80
+ uv tool install flowly-ai
81
+ ```
82
+
83
+ **Install from PyPI**
84
+
85
+ ```bash
86
+ pip install flowly-ai
87
+ ```
88
+
89
+ **Install from source** (development)
90
+
91
+ ```bash
92
+ git clone https://github.com/hakansoren/flowlyai.git && cd flowlyai
93
+ pip install -e .
94
+ ```
95
+
96
+ Then:
97
+
98
+ ```bash
99
+ flowly onboard # First-time setup
100
+ flowly agent -m "What can you do?" # Chat
101
+ ```
102
+
103
+ > **API keys:** Set your [OpenRouter](https://openrouter.ai/keys) key in `~/.flowly/config.json`. Optional: [Groq](https://console.groq.com/keys) (voice), [Brave Search](https://brave.com/search/api/) (web search).
104
+
105
+ ## Architecture
106
+
107
+ ```
108
+ ┌─────────────────────────────────────────────┐
109
+ │ Gateway │
110
+ │ │
111
+ │ ┌──────────┐ ┌──────────┐ ┌───────────┐ │
112
+ │ │ Telegram │ │ WhatsApp │ │ Discord │ │
113
+ │ │ Slack │ │ Voice │ │ CLI │ │
114
+ │ └────┬─────┘ └────┬─────┘ └─────┬─────┘ │
115
+ │ └──────────────┼──────────────┘ │
116
+ │ ▼ │
117
+ │ ┌──────────────┐ │
118
+ │ │ Agent Loop │ │
119
+ │ │ (LiteLLM) │ │
120
+ │ └──────┬───────┘ │
121
+ │ ▼ │
122
+ │ ┌─────┐ ┌──────┐ ┌─────┐ ┌──────┐ ┌─────┐ │
123
+ │ │Shell│ │ Web │ │File │ │ Cron │ │ ... │ │
124
+ │ └─────┘ └──────┘ └─────┘ └──────┘ └─────┘ │
125
+ │ │
126
+ │ ┌──────────────────────────────────────┐ │
127
+ │ │ Skills · Personas · Hub · Memory │ │
128
+ │ └──────────────────────────────────────┘ │
129
+ └─────────────────────────────────────────────┘
130
+ ```
131
+
132
+ ## Built-in Tools
133
+
134
+ | Tool | What it does |
135
+ |------|-------------|
136
+ | **Shell** | Run commands on your machine |
137
+ | **Filesystem** | Read, write, edit, list files |
138
+ | **Web** | Fetch URLs, search with Brave |
139
+ | **Screenshot** | Capture your screen |
140
+ | **Cron** | Schedule recurring tasks |
141
+ | **Docker** | Manage containers and images |
142
+ | **Trello** | Create/manage boards and cards |
143
+ | **System** | CPU, memory, disk, process info |
144
+ | **Voice** | Make and receive phone calls |
145
+ | **Spawn** | Run background sub-agents |
146
+
147
+ ## Channels
148
+
149
+ Connect Flowly to your favorite chat apps. Each channel runs simultaneously through the gateway.
150
+
151
+ <details>
152
+ <summary><b>Telegram</b> — easiest setup</summary>
153
+
154
+ 1. Create a bot via `@BotFather` on Telegram
155
+ 2. Add to config:
156
+
157
+ ```json
158
+ {
159
+ "channels": {
160
+ "telegram": {
161
+ "enabled": true,
162
+ "token": "YOUR_BOT_TOKEN",
163
+ "allowFrom": ["YOUR_USER_ID"]
164
+ }
165
+ }
166
+ }
167
+ ```
168
+
169
+ 3. `uv run flowly gateway`
170
+
171
+ > Get your user ID from `@userinfobot`.
172
+
173
+ </details>
174
+
175
+ <details>
176
+ <summary><b>WhatsApp</b> — scan QR</summary>
177
+
178
+ ```bash
179
+ uv run flowly channels login # Scan QR code
180
+ uv run flowly gateway # Start (in another terminal)
181
+ ```
182
+
183
+ ```json
184
+ {
185
+ "channels": {
186
+ "whatsapp": {
187
+ "enabled": true,
188
+ "allowFrom": ["+1234567890"]
189
+ }
190
+ }
191
+ }
192
+ ```
193
+
194
+ Requires Node.js ≥18.
195
+
196
+ </details>
197
+
198
+ <details>
199
+ <summary><b>Discord</b></summary>
200
+
201
+ ```json
202
+ {
203
+ "channels": {
204
+ "discord": {
205
+ "enabled": true,
206
+ "token": "YOUR_BOT_TOKEN",
207
+ "allowFrom": ["YOUR_USER_ID"]
208
+ }
209
+ }
210
+ }
211
+ ```
212
+
213
+ </details>
214
+
215
+ <details>
216
+ <summary><b>Slack</b></summary>
217
+
218
+ ```json
219
+ {
220
+ "channels": {
221
+ "slack": {
222
+ "enabled": true,
223
+ "botToken": "xoxb-...",
224
+ "appToken": "xapp-...",
225
+ "allowFrom": ["U1234567890"]
226
+ }
227
+ }
228
+ }
229
+ ```
230
+
231
+ </details>
232
+
233
+ ## Background Service
234
+
235
+ Run Flowly as a persistent service — survives terminal close and auto-starts on boot:
236
+
237
+ ```bash
238
+ flowly service install --start # Install and start
239
+ flowly service status # Health check
240
+ flowly service logs -f # Follow logs
241
+ flowly service restart # Restart
242
+ flowly service stop # Stop
243
+ flowly service uninstall # Remove
244
+ ```
245
+
246
+ | Platform | Backend |
247
+ |----------|---------|
248
+ | macOS | launchd (LaunchAgents) |
249
+ | Linux | systemd (user service) |
250
+ | Windows | Task Scheduler |
251
+
252
+ ## Personas
253
+
254
+ Switch how Flowly talks without changing functionality:
255
+
256
+ ```bash
257
+ flowly persona list # See all
258
+ flowly persona set jarvis # Switch persona
259
+ flowly service restart # Apply
260
+ ```
261
+
262
+ | Persona | Style |
263
+ |---------|-------|
264
+ | `default` | Helpful and friendly |
265
+ | `jarvis` | J.A.R.V.I.S. — British AI, dry wit |
266
+ | `friday` | F.R.I.D.A.Y. — warm, professional |
267
+ | `pirate` | "Aye aye, Captain!" |
268
+ | `samurai` | Brief and wise |
269
+ | `casual` | Your best buddy |
270
+ | `professor` | Step-by-step explanations |
271
+ | `butler` | Distinguished, ultra-polite |
272
+
273
+ Create your own: drop a `.md` file in `~/.flowly/workspace/personas/`.
274
+
275
+ ## Voice Calls
276
+
277
+ Flowly can answer and make phone calls with real-time speech:
278
+
279
+ ```bash
280
+ flowly setup voice-calls # Configure Twilio + STT/TTS
281
+ flowly gateway # Start with voice enabled
282
+ ```
283
+
284
+ **Supported providers:**
285
+ - **STT:** Groq Whisper, Deepgram, ElevenLabs
286
+ - **TTS:** ElevenLabs, Deepgram, OpenAI
287
+ - **Telephony:** Twilio
288
+
289
+ ## CLI Reference
290
+
291
+ ```
292
+ flowly onboard Initialize config & workspace
293
+ flowly agent -m "..." Send a message
294
+ flowly agent Interactive chat
295
+ flowly gateway Start the gateway (all channels)
296
+ flowly gateway --persona jarvis Start with a persona
297
+ flowly service install --start Install background service
298
+ flowly service status Service health check
299
+ flowly service logs -f Follow logs
300
+ flowly persona list List personas
301
+ flowly persona set <name> Switch persona
302
+ flowly setup voice-calls Configure voice
303
+ flowly channels login Link WhatsApp
304
+ flowly channels status Channel status
305
+ flowly status Overall status
306
+ ```
307
+
308
+ ## Configuration
309
+
310
+ All config lives in `~/.flowly/config.json`:
311
+
312
+ ```json
313
+ {
314
+ "providers": {
315
+ "openrouter": { "apiKey": "sk-or-v1-..." }
316
+ },
317
+ "agents": {
318
+ "defaults": { "model": "anthropic/claude-sonnet-4-5" }
319
+ },
320
+ "channels": {
321
+ "telegram": { "enabled": true, "token": "..." }
322
+ }
323
+ }
324
+ ```
325
+
326
+ ## Requirements
327
+
328
+ | | Minimum |
329
+ |---|---|
330
+ | **Python** | ≥ 3.11 |
331
+ | **uv** | Any recent version |
332
+ | **Node.js** | ≥ 18 (only for WhatsApp bridge) |
333
+ | **OS** | macOS, Linux, or Windows |
334
+
335
+ ## Desktop App
336
+
337
+ [Flowly Desktop](https://github.com/hakansoren/flowly-desktop) — Electron app with guided setup, one-click install, and visual management.
338
+
339
+ ---
340
+
341
+ ## Changelog
342
+
343
+ <details>
344
+ <summary><strong>2026-02-10</strong> — Discord & Slack channels, setup wizard</summary>
345
+
346
+ - Discord and Slack channel implementations
347
+ - Interactive CLI setup wizard (`flowly setup`)
348
+ - Multi-channel manager support
349
+
350
+ </details>
351
+
352
+ <details>
353
+ <summary><strong>2026-02-09</strong> — Service mode, personas, screenshot delegation</summary>
354
+
355
+ - Background service mode (launchd/systemd/schtasks)
356
+ - 8 built-in personas (Jarvis, Friday, Pirate, etc.)
357
+ - Electron-delegated screenshot system
358
+ - Voice call improvements
359
+
360
+ </details>
361
+
362
+ <details>
363
+ <summary><strong>2026-02-06</strong> — Integrated voice system, new tools</summary>
364
+
365
+ - Twilio voice bridge with real-time audio streaming
366
+ - ElevenLabs, Deepgram, Groq Whisper STT/TTS providers
367
+ - Agentic voice call state machine
368
+ - System monitoring, Docker, Trello integration tools
369
+ - Cross-platform support (Windows/macOS/Linux)
370
+
371
+ </details>
372
+
373
+ <details>
374
+ <summary><strong>2026-02-04</strong> — Secure execution, pairing system</summary>
375
+
376
+ - Secure command execution sandbox
377
+ - Device pairing system
378
+ - Interactive setup CLI wizard
379
+
380
+ </details>
381
+
382
+ <details>
383
+ <summary><strong>2026-02-03</strong> — Initial release</summary>
384
+
385
+ - Core agent loop with LiteLLM provider
386
+ - Telegram and WhatsApp channels
387
+ - Cron scheduling, context compaction
388
+ - Groq Whisper voice transcription
389
+ - Flowly Hub skill management
390
+
391
+ </details>
392
+
393
+ ---
394
+
395
+ <p align="center">
396
+ <sub>MIT License</sub>
397
+ </p>