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.
- flowly_ai-0.2.0/.gitignore +18 -0
- flowly_ai-0.2.0/LICENSE +21 -0
- flowly_ai-0.2.0/PKG-INFO +397 -0
- flowly_ai-0.2.0/README.md +351 -0
- flowly_ai-0.2.0/bridge/package.json +26 -0
- flowly_ai-0.2.0/bridge/src/index.ts +50 -0
- flowly_ai-0.2.0/bridge/src/server.ts +104 -0
- flowly_ai-0.2.0/bridge/src/types.d.ts +3 -0
- flowly_ai-0.2.0/bridge/src/whatsapp.ts +180 -0
- flowly_ai-0.2.0/bridge/tsconfig.json +16 -0
- flowly_ai-0.2.0/flowly/__init__.py +16 -0
- flowly_ai-0.2.0/flowly/__main__.py +8 -0
- flowly_ai-0.2.0/flowly/agent/__init__.py +8 -0
- flowly_ai-0.2.0/flowly/agent/context.py +485 -0
- flowly_ai-0.2.0/flowly/agent/loop.py +1262 -0
- flowly_ai-0.2.0/flowly/agent/memory.py +109 -0
- flowly_ai-0.2.0/flowly/agent/skills.py +259 -0
- flowly_ai-0.2.0/flowly/agent/subagent.py +233 -0
- flowly_ai-0.2.0/flowly/agent/tools/__init__.py +6 -0
- flowly_ai-0.2.0/flowly/agent/tools/base.py +55 -0
- flowly_ai-0.2.0/flowly/agent/tools/cron.py +478 -0
- flowly_ai-0.2.0/flowly/agent/tools/docker.py +605 -0
- flowly_ai-0.2.0/flowly/agent/tools/filesystem.py +191 -0
- flowly_ai-0.2.0/flowly/agent/tools/message.py +235 -0
- flowly_ai-0.2.0/flowly/agent/tools/registry.py +257 -0
- flowly_ai-0.2.0/flowly/agent/tools/screenshot.py +444 -0
- flowly_ai-0.2.0/flowly/agent/tools/shell.py +157 -0
- flowly_ai-0.2.0/flowly/agent/tools/spawn.py +65 -0
- flowly_ai-0.2.0/flowly/agent/tools/system.py +897 -0
- flowly_ai-0.2.0/flowly/agent/tools/trello.py +420 -0
- flowly_ai-0.2.0/flowly/agent/tools/voice.py +235 -0
- flowly_ai-0.2.0/flowly/agent/tools/web.py +139 -0
- flowly_ai-0.2.0/flowly/bus/__init__.py +6 -0
- flowly_ai-0.2.0/flowly/bus/events.py +37 -0
- flowly_ai-0.2.0/flowly/bus/queue.py +81 -0
- flowly_ai-0.2.0/flowly/channels/__init__.py +6 -0
- flowly_ai-0.2.0/flowly/channels/base.py +121 -0
- flowly_ai-0.2.0/flowly/channels/discord.py +263 -0
- flowly_ai-0.2.0/flowly/channels/manager.py +167 -0
- flowly_ai-0.2.0/flowly/channels/slack.py +204 -0
- flowly_ai-0.2.0/flowly/channels/telegram.py +739 -0
- flowly_ai-0.2.0/flowly/channels/whatsapp.py +136 -0
- flowly_ai-0.2.0/flowly/cli/__init__.py +1 -0
- flowly_ai-0.2.0/flowly/cli/commands.py +2270 -0
- flowly_ai-0.2.0/flowly/cli/setup.py +783 -0
- flowly_ai-0.2.0/flowly/compaction/__init__.py +39 -0
- flowly_ai-0.2.0/flowly/compaction/estimator.py +88 -0
- flowly_ai-0.2.0/flowly/compaction/pruning.py +223 -0
- flowly_ai-0.2.0/flowly/compaction/service.py +297 -0
- flowly_ai-0.2.0/flowly/compaction/summarizer.py +384 -0
- flowly_ai-0.2.0/flowly/compaction/types.py +71 -0
- flowly_ai-0.2.0/flowly/config/__init__.py +6 -0
- flowly_ai-0.2.0/flowly/config/loader.py +95 -0
- flowly_ai-0.2.0/flowly/config/schema.py +252 -0
- flowly_ai-0.2.0/flowly/cron/__init__.py +6 -0
- flowly_ai-0.2.0/flowly/cron/service.py +359 -0
- flowly_ai-0.2.0/flowly/cron/types.py +62 -0
- flowly_ai-0.2.0/flowly/exec/__init__.py +39 -0
- flowly_ai-0.2.0/flowly/exec/approvals.py +288 -0
- flowly_ai-0.2.0/flowly/exec/executor.py +167 -0
- flowly_ai-0.2.0/flowly/exec/safety.py +247 -0
- flowly_ai-0.2.0/flowly/exec/types.py +86 -0
- flowly_ai-0.2.0/flowly/gateway/__init__.py +5 -0
- flowly_ai-0.2.0/flowly/gateway/server.py +115 -0
- flowly_ai-0.2.0/flowly/heartbeat/__init__.py +5 -0
- flowly_ai-0.2.0/flowly/heartbeat/service.py +130 -0
- flowly_ai-0.2.0/flowly/hub/__init__.py +6 -0
- flowly_ai-0.2.0/flowly/hub/cli.py +415 -0
- flowly_ai-0.2.0/flowly/hub/client.py +323 -0
- flowly_ai-0.2.0/flowly/hub/manager.py +523 -0
- flowly_ai-0.2.0/flowly/pairing/__init__.py +21 -0
- flowly_ai-0.2.0/flowly/pairing/store.py +343 -0
- flowly_ai-0.2.0/flowly/providers/__init__.py +6 -0
- flowly_ai-0.2.0/flowly/providers/base.py +69 -0
- flowly_ai-0.2.0/flowly/providers/litellm_provider.py +186 -0
- flowly_ai-0.2.0/flowly/providers/transcription.py +64 -0
- flowly_ai-0.2.0/flowly/session/__init__.py +5 -0
- flowly_ai-0.2.0/flowly/session/manager.py +203 -0
- flowly_ai-0.2.0/flowly/skills/README.md +24 -0
- flowly_ai-0.2.0/flowly/skills/compact/SKILL.md +27 -0
- flowly_ai-0.2.0/flowly/skills/github/SKILL.md +48 -0
- flowly_ai-0.2.0/flowly/skills/skill-creator/SKILL.md +371 -0
- flowly_ai-0.2.0/flowly/skills/summarize/SKILL.md +67 -0
- flowly_ai-0.2.0/flowly/skills/tmux/SKILL.md +121 -0
- flowly_ai-0.2.0/flowly/skills/tmux/scripts/find-sessions.sh +112 -0
- flowly_ai-0.2.0/flowly/skills/tmux/scripts/wait-for-text.sh +83 -0
- flowly_ai-0.2.0/flowly/skills/weather/SKILL.md +49 -0
- flowly_ai-0.2.0/flowly/utils/__init__.py +5 -0
- flowly_ai-0.2.0/flowly/utils/helpers.py +91 -0
- flowly_ai-0.2.0/flowly/voice/__init__.py +31 -0
- flowly_ai-0.2.0/flowly/voice/audio.py +158 -0
- flowly_ai-0.2.0/flowly/voice/call_manager.py +474 -0
- flowly_ai-0.2.0/flowly/voice/plugin.py +398 -0
- flowly_ai-0.2.0/flowly/voice/stt.py +229 -0
- flowly_ai-0.2.0/flowly/voice/tts.py +203 -0
- flowly_ai-0.2.0/flowly/voice/types.py +120 -0
- flowly_ai-0.2.0/flowly/voice/webhook.py +467 -0
- flowly_ai-0.2.0/pyproject.toml +100 -0
- flowly_ai-0.2.0/voice-bridge/README.md +232 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/captions/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/captions/README.md +220 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/README.md +867 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/node_modules/@types/node/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/node_modules/@types/node/README.md +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@deepgram/sdk/node_modules/undici-types/README.md +6 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@esbuild/darwin-arm64/README.md +3 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/ajv-compiler/LICENSE +24 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/ajv-compiler/README.md +236 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/error/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/error/README.md +62 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/fast-json-stringify-compiler/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/fast-json-stringify-compiler/README.md +127 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/formbody/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/merge-json-schemas/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/merge-json-schemas/README.md +115 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/websocket/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@fastify/websocket/README.md +385 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@jest/schemas/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@jest/schemas/README.md +3 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@jridgewell/sourcemap-codec/LICENSE +19 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@jridgewell/sourcemap-codec/README.md +264 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@pinojs/redact/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@pinojs/redact/README.md +350 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@rollup/rollup-darwin-arm64/README.md +3 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@types/estree/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@types/estree/README.md +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@types/node/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@types/node/README.md +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@types/node-fetch/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@types/node-fetch/README.md +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@types/ws/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@types/ws/README.md +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/expect/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/expect/README.md +17 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/runner/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/runner/README.md +5 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/snapshot/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/snapshot/README.md +79 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/spy/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/spy/README.md +3 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/@vitest/utils/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/abort-controller/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/abort-controller/README.md +98 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/acorn/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/acorn/README.md +282 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/acorn-walk/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/acorn-walk/README.md +124 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/agent-base/README.md +145 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/agentkeepalive/LICENSE +23 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/agentkeepalive/README.md +256 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ajv/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ajv/README.md +207 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ajv/node_modules/fast-uri/LICENSE +32 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ajv/node_modules/fast-uri/README.md +143 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ajv-formats/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ajv-formats/README.md +123 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/anymatch/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/anymatch/README.md +87 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/assertion-error/README.md +41 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/asynckit/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/asynckit/README.md +233 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/atomic-sleep/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/avvio/LICENSE +24 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/avvio/README.md +688 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/axios/LICENSE +7 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/axios/README.md +1918 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/axios/lib/adapters/README.md +37 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/axios/lib/core/README.md +8 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/axios/lib/env/README.md +3 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/axios/lib/helpers/README.md +7 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/balanced-match/README.md +97 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/base64-js/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/base64-js/README.md +34 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/brace-expansion/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/brace-expansion/README.md +129 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/braces/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/braces/README.md +586 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/buffer/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/buffer/README.md +410 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/buffer-equal-constant-time/README.md +50 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/cac/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/cac/README.md +536 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/call-bind-apply-helpers/README.md +62 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/call-bound/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/call-bound/README.md +53 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/chai/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/chai/README.md +212 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/check-error/LICENSE +19 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/check-error/README.md +207 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/chokidar/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/chokidar/README.md +308 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/colorette/README.md +134 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/command-exists/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/command-exists/README.md +83 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/concat-map/LICENSE +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/confbox/LICENSE +118 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/confbox/README.md +191 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/cookie/LICENSE +24 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/cookie/README.md +317 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/cross-fetch/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/cross-fetch/README.md +169 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/cross-spawn/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/cross-spawn/README.md +89 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/dateformat/LICENSE +20 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/dayjs/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/dayjs/README.md +202 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/debug/LICENSE +20 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/debug/README.md +481 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/deep-eql/LICENSE +19 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/deep-eql/README.md +93 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/diff-sequences/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/diff-sequences/README.md +404 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/dotenv/LICENSE +23 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/dotenv/README.md +645 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/dunder-proto/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/dunder-proto/README.md +54 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/duplexify/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/duplexify/README.md +97 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ecdsa-sig-formatter/README.md +65 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/README.md +174 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/human-signals/LICENSE +201 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/human-signals/README.md +165 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/readable-stream/LICENSE +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/readable-stream/README.md +116 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/elevenlabs/node_modules/signal-exit/README.md +39 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/end-of-stream/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/end-of-stream/README.md +54 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/es-define-property/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/es-define-property/README.md +49 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/es-errors/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/es-errors/README.md +55 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/es-object-atoms/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/es-object-atoms/README.md +63 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/es-set-tostringtag/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/es-set-tostringtag/README.md +53 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/esbuild/README.md +3 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/estree-walker/LICENSE +7 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/estree-walker/README.md +48 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/event-target-shim/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/event-target-shim/README.md +293 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/events/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-content-type-parse/LICENSE +24 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-content-type-parse/README.md +78 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-copy/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-copy/README.md +395 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-decode-uri-component/LICENSE +23 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-decode-uri-component/README.md +43 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-deep-equal/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-deep-equal/README.md +96 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/README.md +739 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/node_modules/ajv-formats/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/node_modules/ajv-formats/README.md +125 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-json-stringify/test/json-schema-test-suite/README.md +10 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-querystring/LICENSE +25 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-querystring/README.md +114 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-safe-stringify/LICENSE +23 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-uri/LICENSE +30 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fast-uri/README.md +125 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fastify/LICENSE +24 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fastify/README.md +415 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fastify/test/bundler/README.md +29 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fastify-plugin/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fastify-plugin/README.md +182 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fastq/LICENSE +13 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fastq/README.md +310 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fill-range/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/fill-range/README.md +237 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/find-my-way/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/find-my-way/README.md +823 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/follow-redirects/LICENSE +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/follow-redirects/README.md +155 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/form-data/README.md +355 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/forwarded/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/forwarded/README.md +57 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/function-bind/LICENSE +20 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/function-bind/README.md +46 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/get-func-name/LICENSE +19 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/get-func-name/README.md +123 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/get-intrinsic/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/get-intrinsic/README.md +71 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/get-proto/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/get-proto/README.md +50 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/glob-parent/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/glob-parent/README.md +137 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/gopd/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/gopd/README.md +40 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/has-symbols/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/has-symbols/README.md +46 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/has-tostringtag/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/has-tostringtag/README.md +46 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/hasown/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/hasown/README.md +40 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/help-me/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/help-me/README.md +66 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/https-proxy-agent/README.md +137 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/human-signals/LICENSE +201 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/human-signals/README.md +168 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/humanize-ms/LICENSE +17 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/humanize-ms/README.md +40 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ieee754/LICENSE +11 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ieee754/README.md +51 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ignore-by-default/LICENSE +14 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ignore-by-default/README.md +26 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/inherits/LICENSE +16 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/inherits/README.md +42 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ipaddr.js/LICENSE +19 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ipaddr.js/README.md +233 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/is-extglob/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/is-extglob/README.md +107 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/is-glob/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/is-glob/README.md +206 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/is-number/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/is-number/README.md +187 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/isexe/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/isexe/README.md +51 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/joycon/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/joycon/README.md +133 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/js-tokens/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/js-tokens/README.md +14 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/json-schema-ref-resolver/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/json-schema-ref-resolver/README.md +398 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/json-schema-traverse/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/json-schema-traverse/README.md +95 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/jsonwebtoken/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/jsonwebtoken/README.md +396 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/jwa/LICENSE +17 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/jwa/README.md +150 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/jws/LICENSE +17 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/light-my-request/LICENSE +32 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/light-my-request/README.md +260 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/local-pkg/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/local-pkg/README.md +55 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.includes/LICENSE +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.includes/README.md +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isboolean/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isboolean/README.md +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isinteger/LICENSE +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isinteger/README.md +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isnumber/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isnumber/README.md +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isplainobject/LICENSE +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isplainobject/README.md +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isstring/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.isstring/README.md +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.once/LICENSE +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/lodash.once/README.md +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/loupe/LICENSE +9 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/loupe/README.md +63 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/magic-string/LICENSE +7 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/magic-string/README.md +325 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/math-intrinsics/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/math-intrinsics/README.md +50 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/merge-stream/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/merge-stream/README.md +78 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/mime-db/LICENSE +23 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/mime-db/README.md +100 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/mime-types/LICENSE +23 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/mime-types/README.md +113 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/minimatch/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/minimatch/README.md +230 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/minimist/LICENSE +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/minimist/README.md +121 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/mlly/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/mlly/README.md +561 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/mlly/node_modules/pathe/LICENSE +70 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/mlly/node_modules/pathe/README.md +73 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/nanoid/LICENSE +20 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/nanoid/README.md +39 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/node-domexception/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/node-domexception/README.md +46 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/node-fetch/README.md +634 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/nodemon/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/nodemon/README.md +436 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/normalize-path/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/normalize-path/README.md +127 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/object-inspect/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/on-exit-leak-free/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/on-exit-leak-free/README.md +54 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/once/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/once/README.md +79 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/LICENSE +201 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/README.md +494 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/_shims/README.md +46 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/node_modules/@types/node/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/node_modules/@types/node/README.md +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/node_modules/undici-types/README.md +6 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/_shims/README.md +46 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/_vendor/partial-json-parser/README.md +3 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/_vendor/zod-to-json-schema/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/_vendor/zod-to-json-schema/README.md +3 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/openai/src/internal/qs/README.md +3 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pathe/LICENSE +44 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pathe/README.md +69 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pathval/LICENSE +16 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pathval/README.md +147 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/picocolors/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/picocolors/README.md +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/picomatch/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/picomatch/README.md +708 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino/README.md +177 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino/node_modules/process-warning/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino/node_modules/process-warning/README.md +118 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino-abstract-transport/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino-abstract-transport/README.md +172 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino-pretty/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino-pretty/node_modules/readable-stream/LICENSE +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino-pretty/node_modules/readable-stream/README.md +116 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pino-std-serializers/LICENSE +7 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pkg-types/LICENSE +44 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pkg-types/README.md +167 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pkg-types/node_modules/pathe/LICENSE +70 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pkg-types/node_modules/pathe/README.md +73 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/postcss/LICENSE +20 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/postcss/README.md +29 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pretty-format/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pretty-format/README.md +463 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/process/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/process/README.md +26 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/process-warning/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/process-warning/README.md +118 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/proxy-addr/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/proxy-addr/README.md +139 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/proxy-from-env/LICENSE +20 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/proxy-from-env/README.md +131 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pstree.remy/LICENSE +7 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pstree.remy/README.md +26 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pump/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/pump/README.md +74 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/qs/README.md +733 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/quick-format-unescaped/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/react-is/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/react-is/README.md +104 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/readable-stream/LICENSE +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/readable-stream/README.md +106 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/readdirp/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/readdirp/README.md +122 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/real-require/README.md +51 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ret/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ret/README.md +539 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/reusify/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/reusify/README.md +139 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/rfdc/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/rollup/README.md +134 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/safe-buffer/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/safe-buffer/README.md +584 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/safe-regex2/LICENSE +18 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/safe-stable-stringify/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/scmp/LICENSE +24 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/scmp/README.md +42 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/secure-json-parse/README.md +126 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/semver/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/semver/README.md +665 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/set-cookie-parser/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/set-cookie-parser/README.md +202 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/side-channel/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/side-channel/README.md +61 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-list/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-list/README.md +62 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-map/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-map/README.md +62 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-weakmap/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/side-channel-weakmap/README.md +62 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/siginfo/LICENSE +13 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/siginfo/README.md +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/signal-exit/README.md +74 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/simple-update-notifier/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/simple-update-notifier/README.md +82 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/sonic-boom/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/sonic-boom/README.md +152 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/source-map-js/LICENSE +28 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/source-map-js/README.md +765 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/split2/LICENSE +13 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/split2/README.md +85 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/stackback/README.md +41 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/std-env/README.md +118 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/stream-shift/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/stream-shift/README.md +25 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/string_decoder/LICENSE +48 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/string_decoder/README.md +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/strip-literal/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/strip-literal/README.md +29 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/thread-stream/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/thread-stream/README.md +135 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/tinybench/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/tinybench/README.md +422 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/tinypool/LICENSE +24 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/tinypool/README.md +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/tinyspy/README.md +12 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/to-regex-range/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/to-regex-range/README.md +305 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/toad-cache/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/toad-cache/README.md +265 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/touch/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/touch/README.md +52 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/twilio/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/twilio/README.md +385 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/type-detect/LICENSE +19 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/type-detect/README.md +235 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/typescript/README.md +50 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ufo/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ufo/README.md +582 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/undefsafe/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/undefsafe/README.md +63 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/undici-types/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/undici-types/README.md +6 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/url-join/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/url-join/README.md +47 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/util-deprecate/LICENSE +24 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/util-deprecate/README.md +53 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/vite/README.md +20 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/vite-node/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/vite-node/README.md +186 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/vitest/README.md +7 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/web-streams-polyfill/LICENSE +22 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/web-streams-polyfill/README.md +135 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/webidl-conversions/README.md +53 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/whatwg-url/README.md +67 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/which/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/which/README.md +54 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/why-is-node-running/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/why-is-node-running/README.md +104 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/wrappy/LICENSE +15 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/wrappy/README.md +36 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ws/LICENSE +20 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/ws/README.md +548 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/xmlbuilder/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/xmlbuilder/README.md +97 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/zod/LICENSE +21 -0
- flowly_ai-0.2.0/voice-bridge/node_modules/zod/README.md +208 -0
flowly_ai-0.2.0/LICENSE
ADDED
|
@@ -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.
|
flowly_ai-0.2.0/PKG-INFO
ADDED
|
@@ -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>
|