├── .cargo └── config.toml ├── .cursor └── rules │ └── screenpipe.mdc ├── .cursorignore ├── .cursorrules ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── scripts │ ├── linux_integration.sh │ ├── postCreateCommand.sh │ └── welcome-message.txt ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bounty.md │ ├── bug_report.md │ ├── documentation.md │ ├── feature_request.md │ ├── question.md │ ├── release-test-bounty-template.md │ └── test-bounty-template.md ├── config.yml ├── pull_request_template.md ├── scripts │ ├── audio_test.wav │ ├── check_logs.sh │ ├── generate_changelog_md.sh │ ├── install_dependencies.sh │ ├── purge_crabnebula.sh │ ├── run_screenpipe.sh │ ├── setup_audio.sh │ ├── setup_display.sh │ ├── stop_screenpipe.sh │ ├── test_audio_capture.sh │ ├── test_ocr.sh │ └── verify_tesseract.sh └── workflows │ ├── benchmark.yml │ ├── build-core-pipes.yml │ ├── ci.yml │ ├── e2e-test.yml │ ├── linux-integration-test.yml │ ├── release-app.yml │ ├── release-cli.yml │ ├── release-test-bounty.yml │ ├── style.yml │ ├── test-bounty.yml │ ├── windows-integration-test.yml │ └── windows-longevity-test.yml ├── .gitignore ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README-ja.md ├── README-zh_CN.md ├── README.md ├── TESTING.md ├── content ├── Claude_prompt.png ├── Elon_Musk_prompt.png ├── Vercel_app.png ├── audio_transcriptions.png ├── changelogs │ ├── 0.10.0.md │ ├── 0.10.1.md │ ├── 0.10.2.md │ ├── 0.11.0.md │ ├── 0.11.9.md │ ├── 0.12.3.md │ ├── 0.14.13.md │ ├── 0.14.17.md │ ├── 0.14.18.md │ ├── 0.14.2.md │ ├── 0.14.20.md │ ├── 0.14.22.md │ ├── 0.14.24.md │ ├── 0.14.33.md │ ├── 0.15.0.md │ ├── 0.15.3.md │ ├── 0.15.5.md │ ├── 0.16.0.md │ ├── 0.16.1.md │ ├── 0.16.3.md │ ├── 0.17.0.md │ ├── 0.17.1.md │ ├── 0.17.2.md │ ├── 0.17.8.md │ ├── 0.18.0.md │ ├── 0.18.1.md │ ├── 0.18.3.md │ ├── 0.18.4.md │ ├── 0.18.9.md │ ├── 0.19.0.md │ ├── 0.19.3.md │ ├── 0.19.5.md │ ├── 0.20.2.md │ ├── 0.20.6.md │ ├── 0.20.7.md │ ├── 0.20.8.md │ ├── 0.21.2.md │ ├── 0.21.8.md │ ├── 0.21.9.md │ ├── 0.22.0.md │ ├── 0.22.1.md │ ├── 0.22.2.md │ ├── 0.22.3.md │ ├── 0.22.4.md │ ├── 0.22.5.md │ ├── 0.22.6.md │ ├── 0.22.9.md │ ├── 0.23.4.md │ ├── 0.23.6.md │ ├── 0.23.9.md │ ├── 0.24.4.md │ ├── 0.24.5.md │ ├── 0.25.0.md │ ├── 0.25.3.md │ ├── 0.25.5.md │ ├── 0.25.7.md │ ├── 0.26.0.md │ ├── 0.26.2.md │ ├── 0.26.3.md │ ├── 0.26.6.md │ ├── 0.27.0.md │ ├── 0.27.1.md │ ├── 0.27.4.md │ ├── 0.27.9.md │ ├── 0.28.4.md │ ├── 0.29.7-beta.1.md │ ├── 0.30.4.md │ ├── 0.30.5.md │ ├── 0.30.7.md │ ├── 0.30.8.md │ ├── 0.31.0.md │ ├── 0.31.1.md │ ├── 0.31.3.md │ ├── 0.31.8.md │ ├── 0.32.0.md │ ├── 0.32.11.md │ ├── 0.32.4.md │ ├── 0.33.1.md │ ├── 0.33.2.md │ ├── 0.35.12.md │ ├── 0.35.14.md │ ├── 0.35.3.md │ ├── 0.36.4.md │ ├── 0.36.5.md │ ├── 0.37.1.md │ ├── 0.37.2.md │ ├── 0.37.9.md │ ├── 0.38.1.md │ ├── 0.38.2.md │ ├── 0.38.4.md │ ├── 0.38.5.md │ ├── 0.38.8.md │ ├── 0.38.9.md │ ├── 0.39.2.md │ ├── 0.39.5.md │ ├── 0.39.6.md │ ├── 0.41.10.md │ ├── 0.41.5.md │ ├── 0.41.9.md │ ├── 0.42.1.md │ ├── 0.42.2.md │ ├── 0.42.4.md │ ├── 0.42.8.md │ ├── 0.43.0.md │ ├── 0.43.5.md │ ├── 0.43.7.md │ ├── 0.43.9.md │ ├── 0.44.0.md │ ├── 0.44.1.md │ ├── 0.44.2.md │ ├── 0.44.3.md │ ├── v0.1.95.md │ ├── v0.1.96.md │ └── v0.1.98.md ├── developer-account.png ├── diagram2.png ├── docs-mintlify-mig-tmp │ ├── .gitignore │ ├── architecture.mdx │ ├── cli-reference.mdx │ ├── contributing.mdx │ ├── docs.json │ ├── faq.mdx │ ├── favicon.ico │ ├── getting-started.mdx │ ├── home.mdx │ ├── mcp-server.mdx │ ├── openapi.yaml │ ├── operator-api.mdx │ ├── plugins.mdx │ ├── public │ │ ├── 5ire-setup.gif │ │ ├── claude-setup.gif │ │ ├── cursor-mcp-result.png │ │ ├── cursor-setup.gif │ │ ├── favicon.ico │ │ ├── lmstudio1.png │ │ ├── lmstudio2.png │ │ └── lmstudio3.png │ ├── sdk-reference.mdx │ └── terminator │ │ ├── getting-started.mdx │ │ ├── introduction.mdx │ │ ├── js-sdk-reference.mdx │ │ └── python-sdk-reference.mdx └── frame_text.png ├── install.ps1 ├── install.sh ├── pipes ├── README.md ├── assistant-ui-ollama-openai-screenpipe │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ ├── chat │ │ │ │ └── route.ts │ │ │ ├── click-by-index │ │ │ │ └── route.ts │ │ │ ├── component-source │ │ │ │ └── route.ts │ │ │ ├── fetch-external │ │ │ │ └── route.ts │ │ │ ├── get-apps │ │ │ │ └── route.ts │ │ │ ├── get-interactive-list │ │ │ │ └── route.ts │ │ │ ├── get-text │ │ │ │ └── route.ts │ │ │ ├── locator │ │ │ │ └── route.ts │ │ │ ├── log │ │ │ │ └── route.ts │ │ │ ├── press-key-by-index │ │ │ │ └── route.ts │ │ │ ├── settings │ │ │ │ └── route.ts │ │ │ └── type-by-index │ │ │ │ └── route.ts │ │ ├── assistant.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── hello-world-mcp-client │ │ │ ├── WIP-interface.ts │ │ │ ├── WIP-tool-execution-logic.ts │ │ │ ├── build-workflows.ts │ │ │ ├── cli.ts │ │ │ ├── index.ts │ │ │ ├── query-processing-engine.ts │ │ │ ├── setup.ts │ │ │ └── start-here.ts │ │ ├── layout.tsx │ │ └── page.tsx │ ├── bun.lockb │ ├── components.json │ ├── components │ │ ├── ai-presets-dialog.tsx │ │ ├── ai-presets-selector.tsx │ │ ├── assistant-ui │ │ │ ├── markdown-text.tsx │ │ │ ├── thread-list.tsx │ │ │ ├── thread.tsx │ │ │ └── tooltip-icon-button.tsx │ │ ├── playground-card.tsx │ │ ├── ready-to-use-examples │ │ │ ├── health-status.tsx │ │ │ ├── last-audio-transcription.tsx │ │ │ ├── last-ocr-image.tsx │ │ │ ├── last-ui-record.tsx │ │ │ ├── realtime-audio.tsx │ │ │ └── realtime-screen.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── content │ │ └── components-list.json │ ├── hooks │ │ ├── use-ai-provider.tsx │ │ ├── use-health.tsx │ │ └── use-toast.ts │ ├── lib │ │ ├── actions │ │ │ ├── get-screenpipe-app-settings.ts │ │ │ ├── update-pipe-config.ts │ │ │ └── video-actions.ts │ │ ├── client-only.tsx │ │ ├── hooks │ │ │ ├── generic-settings.tsx │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-pipe-settings.ts │ │ │ ├── use-settings.ts │ │ │ └── use-sql-autocomplete.tsx │ │ ├── html-content-parser.ts │ │ ├── ollama-models-list.tsx │ │ ├── settings-provider.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── pipe.json │ ├── postcss.config.mjs │ ├── public │ │ └── 128x128.png │ ├── tailwind.config.ts │ └── tsconfig.json ├── data-table │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ └── settings │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── ai-presets-selector.tsx │ │ │ ├── audio-transcriptions-table.tsx │ │ │ ├── database-sidebar.tsx │ │ │ ├── markdown.tsx │ │ │ ├── ocr-data-table.tsx │ │ │ ├── page.tsx │ │ │ ├── search-command.tsx │ │ │ ├── sql-autocomplete-input.tsx │ │ │ ├── ui-monitoring-table.tsx │ │ │ ├── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── codeblock.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── resizable.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── sheet.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── table.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ └── use-toast.ts │ │ │ └── video-chunks-table.tsx │ │ └── lib │ │ │ ├── actions │ │ │ ├── get-screenpipe-app-settings.ts │ │ │ └── video-actions.ts │ │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-pipe-settings.tsx │ │ │ ├── use-search-history.tsx │ │ │ ├── use-settings.tsx │ │ │ └── use-sql-autocomplete.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── desktop-to-table │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ ├── click-by-index │ │ │ │ └── route.ts │ │ │ ├── component-source │ │ │ │ └── route.ts │ │ │ ├── fetch-external │ │ │ │ └── route.ts │ │ │ ├── get-apps │ │ │ │ └── route.ts │ │ │ ├── get-interactive-list │ │ │ │ └── route.ts │ │ │ ├── get-text │ │ │ │ └── route.ts │ │ │ ├── locator │ │ │ │ └── route.ts │ │ │ ├── log │ │ │ │ └── route.ts │ │ │ ├── press-key-by-index │ │ │ │ └── route.ts │ │ │ ├── settings │ │ │ │ └── route.ts │ │ │ └── type-by-index │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── bun.lockb │ ├── components.json │ ├── components │ │ ├── ai-presets-dialog.tsx │ │ ├── ai-presets-selector.tsx │ │ ├── playground-card.tsx │ │ ├── ready-to-use-examples │ │ │ ├── health-status.tsx │ │ │ ├── last-audio-transcription.tsx │ │ │ ├── last-ocr-image.tsx │ │ │ ├── last-ui-record.tsx │ │ │ ├── realtime-audio.tsx │ │ │ └── realtime-screen.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── content │ │ └── components-list.json │ ├── hooks │ │ ├── use-ai-provider.tsx │ │ ├── use-health.tsx │ │ └── use-toast.ts │ ├── lib │ │ ├── actions │ │ │ ├── get-screenpipe-app-settings.ts │ │ │ ├── update-pipe-config.ts │ │ │ └── video-actions.ts │ │ ├── client-only.tsx │ │ ├── hooks │ │ │ ├── generic-settings.tsx │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-pipe-settings.ts │ │ │ ├── use-settings.ts │ │ │ └── use-sql-autocomplete.tsx │ │ ├── html-content-parser.ts │ │ ├── ollama-models-list.tsx │ │ ├── settings-provider.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── pipe.json │ ├── postcss.config.mjs │ ├── public │ │ └── 128x128.png │ ├── tailwind.config.ts │ └── tsconfig.json ├── discord-to-spreadsheet │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ ├── click-by-index │ │ │ │ └── route.ts │ │ │ ├── component-source │ │ │ │ └── route.ts │ │ │ ├── fetch-external │ │ │ │ └── route.ts │ │ │ ├── get-apps │ │ │ │ └── route.ts │ │ │ ├── get-interactive-list │ │ │ │ └── route.ts │ │ │ ├── get-text │ │ │ │ └── route.ts │ │ │ ├── locator │ │ │ │ └── route.ts │ │ │ ├── log │ │ │ │ └── route.ts │ │ │ ├── press-key-by-index │ │ │ │ └── route.ts │ │ │ ├── settings │ │ │ │ └── route.ts │ │ │ └── type-by-index │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── bun.lockb │ ├── components.json │ ├── components │ │ ├── ai-presets-dialog.tsx │ │ ├── ai-presets-selector.tsx │ │ ├── playground-card.tsx │ │ ├── ready-to-use-examples │ │ │ ├── health-status.tsx │ │ │ ├── last-audio-transcription.tsx │ │ │ ├── last-ocr-image.tsx │ │ │ ├── last-ui-record.tsx │ │ │ ├── realtime-audio.tsx │ │ │ └── realtime-screen.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── content │ │ └── components-list.json │ ├── hooks │ │ ├── use-ai-provider.tsx │ │ ├── use-health.tsx │ │ └── use-toast.ts │ ├── lib │ │ ├── actions │ │ │ ├── get-screenpipe-app-settings.ts │ │ │ ├── update-pipe-config.ts │ │ │ └── video-actions.ts │ │ ├── client-only.tsx │ │ ├── hooks │ │ │ ├── generic-settings.tsx │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-pipe-settings.ts │ │ │ ├── use-settings.ts │ │ │ └── use-sql-autocomplete.tsx │ │ ├── html-content-parser.ts │ │ ├── ollama-models-list.tsx │ │ ├── settings-provider.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── pipe.json │ ├── postcss.config.mjs │ ├── public │ │ └── 128x128.png │ ├── tailwind.config.ts │ └── tsconfig.json ├── example-pipe │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ ├── component-source │ │ │ │ └── route.ts │ │ │ ├── fetch-external │ │ │ │ └── route.ts │ │ │ └── settings │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── bun.lockb │ ├── components.json │ ├── components │ │ ├── ai-presets-dialog.tsx │ │ ├── ai-presets-selector.tsx │ │ ├── playground-card.tsx │ │ ├── ready-to-use-examples │ │ │ ├── health-status.tsx │ │ │ ├── last-audio-transcription.tsx │ │ │ ├── last-ocr-image.tsx │ │ │ ├── last-ui-record.tsx │ │ │ ├── move-mouse-click.tsx │ │ │ ├── open-app-get-text.tsx │ │ │ ├── realtime-audio.tsx │ │ │ └── realtime-screen.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── content │ │ └── components-list.json │ ├── hooks │ │ └── use-toast.ts │ ├── lib │ │ ├── actions │ │ │ ├── get-screenpipe-app-settings.ts │ │ │ ├── update-pipe-config.ts │ │ │ └── video-actions.ts │ │ ├── client-only.tsx │ │ ├── hooks │ │ │ ├── generic-settings.tsx │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-pipe-settings.tsx │ │ │ ├── use-settings.tsx │ │ │ └── use-sql-autocomplete.tsx │ │ ├── html-content-parser.ts │ │ ├── ollama-models-list.tsx │ │ ├── settings-provider.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── pipe.json │ ├── postcss.config.mjs │ ├── public │ │ └── 128x128.png │ ├── tailwind.config.ts │ └── tsconfig.json ├── hello-world-computer-use │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ ├── chat │ │ │ │ └── route.ts │ │ │ ├── click-by-index │ │ │ │ └── route.ts │ │ │ ├── component-source │ │ │ │ └── route.ts │ │ │ ├── fetch-external │ │ │ │ └── route.ts │ │ │ ├── get-apps │ │ │ │ └── route.ts │ │ │ ├── get-interactive-list │ │ │ │ └── route.ts │ │ │ ├── get-text │ │ │ │ └── route.ts │ │ │ ├── locator │ │ │ │ └── route.ts │ │ │ ├── log │ │ │ │ └── route.ts │ │ │ ├── press-key-by-index │ │ │ │ └── route.ts │ │ │ ├── settings │ │ │ │ └── route.ts │ │ │ └── type-by-index │ │ │ │ └── route.ts │ │ ├── assistant-provider.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── bun.lockb │ ├── components.json │ ├── components │ │ ├── ai-presets-dialog.tsx │ │ ├── ai-presets-selector.tsx │ │ ├── assistant-ui │ │ │ ├── markdown-text.tsx │ │ │ ├── thread-list.tsx │ │ │ ├── thread.tsx │ │ │ └── tooltip-icon-button.tsx │ │ ├── chat.tsx │ │ ├── playground-card.tsx │ │ ├── ready-to-use-examples │ │ │ ├── health-status.tsx │ │ │ ├── last-audio-transcription.tsx │ │ │ ├── last-ocr-image.tsx │ │ │ ├── last-ui-record.tsx │ │ │ ├── realtime-audio.tsx │ │ │ └── realtime-screen.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── content │ │ └── components-list.json │ ├── hooks │ │ ├── use-ai-provider.tsx │ │ ├── use-health.tsx │ │ └── use-toast.ts │ ├── lib │ │ ├── actions │ │ │ ├── get-screenpipe-app-settings.ts │ │ │ ├── hello-world-mcp-client │ │ │ │ └── query-processing-engine.ts │ │ │ ├── update-pipe-config.ts │ │ │ └── video-actions.ts │ │ ├── client-only.tsx │ │ ├── hooks │ │ │ ├── generic-settings.tsx │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-pipe-settings.ts │ │ │ ├── use-settings.ts │ │ │ └── use-sql-autocomplete.tsx │ │ ├── html-content-parser.ts │ │ ├── ollama-models-list.tsx │ │ ├── settings-provider.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── pipe.json │ ├── postcss.config.mjs │ ├── public │ │ └── 128x128.png │ ├── tailwind.config.ts │ └── tsconfig.json ├── identify-speakers │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ └── settings │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── identify-speakers.tsx │ │ │ ├── meeting-history.tsx │ │ │ ├── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── codeblock.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ └── use-toast.ts │ │ │ └── video.tsx │ │ └── lib │ │ │ ├── actions │ │ │ └── video-actions.ts │ │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-search-history.tsx │ │ │ ├── use-settings.tsx │ │ │ └── use-sql-autocomplete.tsx │ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── meeting │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ ├── messages │ │ │ │ │ └── route.ts │ │ │ │ └── settings │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── meetings │ │ │ │ ├── live │ │ │ │ │ ├── loading.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── chat-button.tsx │ │ │ ├── live-transcription │ │ │ │ ├── floating-container-buttons.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── ai-client.ts │ │ │ │ │ ├── ai-create-all-notes.ts │ │ │ │ │ ├── ai-create-note-based-on-chunk.ts │ │ │ │ │ ├── ai-create-note.ts │ │ │ │ │ ├── ai-improve-chunk-transcription.ts │ │ │ │ │ ├── ai-meeting-summary.ts │ │ │ │ │ ├── ai-meeting-title.ts │ │ │ │ │ ├── auto-scroll.ts │ │ │ │ │ ├── browser-stream-transcription-api.ts │ │ │ │ │ ├── handle-new-chunk.ts │ │ │ │ │ ├── health-status.ts │ │ │ │ │ ├── pull-meetings-from-screenpipe.ts │ │ │ │ │ ├── screenpipe-stream-transcription-api.ts │ │ │ │ │ ├── storage-for-live-meeting.tsx │ │ │ │ │ ├── storage-vocabulary.ts │ │ │ │ │ └── text-editor-auto-scroll.ts │ │ │ │ ├── new-meeting-wrapper.tsx │ │ │ │ ├── notes-editor.tsx │ │ │ │ ├── status-alerts.tsx │ │ │ │ ├── text-editor-within-notes-editor.tsx │ │ │ │ ├── transcription-view.tsx │ │ │ │ └── use-transcription-service.ts │ │ │ ├── meeting-history │ │ │ │ ├── components │ │ │ │ │ ├── device-selector.tsx │ │ │ │ │ ├── meeting-card.tsx │ │ │ │ │ ├── meeting-prep-card.tsx │ │ │ │ │ ├── meeting-settings.tsx │ │ │ │ │ ├── mockup-upcoming-meetings.tsx │ │ │ │ │ └── settings-summary-section.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── storage-meeting-data.ts │ │ │ │ │ └── use-meetings.ts │ │ │ │ ├── meeting-history.tsx │ │ │ │ ├── meeting-utils.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ └── format.ts │ │ │ ├── providers │ │ │ │ ├── posthog-provider.tsx │ │ │ │ └── root-provider.tsx │ │ │ ├── status-live-transcription.tsx │ │ │ └── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── alert.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── collapsible.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── hover-card.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ └── tooltip.tsx │ │ ├── hooks │ │ │ └── use-toast.ts │ │ └── lib │ │ │ ├── actions │ │ │ └── video-actions.ts │ │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-search-history.tsx │ │ │ ├── use-settings.tsx │ │ │ └── use-sql-autocomplete.tsx │ │ │ ├── storage │ │ │ └── chat-storage.ts │ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── memories │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ └── settings │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── memories-gallery.tsx │ │ │ ├── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── codeblock.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ └── use-toast.ts │ │ │ └── video.tsx │ │ └── lib │ │ │ ├── actions │ │ │ └── video-actions.ts │ │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-search-history.tsx │ │ │ ├── use-settings.tsx │ │ │ └── use-sql-autocomplete.tsx │ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── notion │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package.json │ ├── pipe.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ ├── intelligence │ │ │ │ │ └── route.ts │ │ │ │ ├── log │ │ │ │ │ └── route.ts │ │ │ │ ├── notion │ │ │ │ │ └── pages │ │ │ │ │ │ └── route.ts │ │ │ │ └── setup │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── ai-presets-selector.tsx │ │ │ ├── file-suggest-textarea.tsx │ │ │ ├── notion-settings.tsx │ │ │ ├── notion-url-to-input.tsx │ │ │ ├── ollama-models-list.tsx │ │ │ └── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── codeblock.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ └── use-toast.ts │ │ ├── hooks │ │ │ └── use-toast.ts │ │ └── lib │ │ │ ├── actions │ │ │ ├── get-screenpipe-app-settings.ts │ │ │ ├── update-pipe-config.ts │ │ │ └── video-actions.ts │ │ │ ├── helpers.ts │ │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-pipe-settings.ts │ │ │ ├── use-settings.ts │ │ │ └── use-sql-autocomplete.tsx │ │ │ ├── notion │ │ │ ├── client.ts │ │ │ ├── notion.ts │ │ │ └── setup.ts │ │ │ ├── store │ │ │ └── settings-store.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── obsidian │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package-lock.json │ ├── package.json │ ├── pipe.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ ├── check-folder │ │ │ │ │ └── route.ts │ │ │ │ ├── files │ │ │ │ │ └── route.ts │ │ │ │ ├── intelligence │ │ │ │ │ └── route.ts │ │ │ │ ├── log │ │ │ │ │ └── route.ts │ │ │ │ └── obsidian-paths │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── ai-presets-selector.tsx │ │ │ ├── file-suggest-textarea.tsx │ │ │ ├── markdown.tsx │ │ │ ├── obsidian-settings.tsx │ │ │ ├── ollama-models-list.tsx │ │ │ ├── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── codeblock.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ └── use-toast.ts │ │ │ └── video.tsx │ │ ├── hooks │ │ │ └── use-toast.ts │ │ └── lib │ │ │ ├── actions │ │ │ ├── get-screenpipe-app-settings.ts │ │ │ ├── obsidian.ts │ │ │ ├── update-pipe-config.ts │ │ │ └── video-actions.ts │ │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-pipe-settings.tsx │ │ │ ├── use-settings.tsx │ │ │ └── use-sql-autocomplete.tsx │ │ │ ├── store │ │ │ └── settings-store.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── pipe-for-loom │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── file │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── bun.lockb │ ├── components │ │ ├── date-time-picker.tsx │ │ ├── header.tsx │ │ ├── pipe.tsx │ │ ├── share-on-socials.tsx │ │ ├── toaster.tsx │ │ └── ui │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── dialog.tsx │ │ │ ├── input.tsx │ │ │ ├── popover.tsx │ │ │ └── toast.tsx │ ├── lib │ │ ├── use-toast.ts │ │ └── utils.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ └── 128x128.png │ ├── tailwind.config.ts │ └── tsconfig.json ├── pipe-simple-nextjs │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── GeistMonoVF.woff │ │ │ └── GeistVF.woff │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── bun.lockb │ ├── components │ │ └── keyword-cloud.tsx │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── tailwind.config.ts │ └── tsconfig.json ├── reddit-auto-posts │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ ├── pipeline │ │ │ │ └── route.ts │ │ │ └── settings │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── bun.lockb │ ├── components.json │ ├── components │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── pipe.tsx │ │ ├── spinner.tsx │ │ ├── sql-autocomplete-input.tsx │ │ ├── toaster.tsx │ │ └── ui │ │ │ ├── alert.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── select.tsx │ │ │ ├── toast.tsx │ │ │ └── tooltip.tsx │ ├── lib │ │ ├── actions │ │ │ ├── generate-log.ts │ │ │ ├── generate-reddit-links.ts │ │ │ ├── generate-reddit-question.ts │ │ │ ├── send-email.ts │ │ │ └── update-pipe-config.ts │ │ ├── hooks │ │ │ ├── use-ai-provider.tsx │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-health.tsx │ │ │ ├── use-settings.ts │ │ │ └── use-sql-autocomplete.ts │ │ ├── types.ts │ │ ├── use-toast.ts │ │ └── utils.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── pipe.json │ ├── postcss.config.mjs │ ├── public │ │ └── 128x128.png │ ├── tailwind.config.ts │ └── tsconfig.json ├── rewind │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ └── settings │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── search │ │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── ai-presets-selector.tsx │ │ │ ├── chat-message-actions.tsx │ │ │ ├── chat-message.tsx │ │ │ ├── context-usage-indicator.tsx │ │ │ ├── current-frame-search.tsx │ │ │ ├── current-frame-timeline.tsx │ │ │ ├── custom-dialog-content.tsx │ │ │ ├── date-range-picker.tsx │ │ │ ├── date-time-picker.tsx │ │ │ ├── example-search-cards.tsx │ │ │ ├── export-button.tsx │ │ │ ├── image-card.tsx │ │ │ ├── markdown.tsx │ │ │ ├── scroll-container.tsx │ │ │ ├── search-bar.tsx │ │ │ ├── search-command.tsx │ │ │ ├── settings-provider.tsx │ │ │ ├── spinner.tsx │ │ │ ├── timeline │ │ │ │ ├── agents.tsx │ │ │ │ ├── ai-panel.tsx │ │ │ │ ├── audio-transcript.tsx │ │ │ │ ├── timeline-controls.tsx │ │ │ │ ├── timeline-dock-section.tsx │ │ │ │ ├── timeline-search-v2.tsx │ │ │ │ ├── timeline-search.tsx │ │ │ │ ├── timeline-selection.tsx │ │ │ │ └── timeline.tsx │ │ │ ├── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── codeblock.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── multi-select-combobox.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── scroll-area.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ └── use-toast.ts │ │ │ └── video.tsx │ │ └── lib │ │ │ ├── actions │ │ │ ├── get-screenpipe-app-settings.ts │ │ │ ├── get-start-date.ts │ │ │ ├── has-frames-date.ts │ │ │ └── video-actions.ts │ │ │ ├── hooks │ │ │ ├── use-ai-provider.tsx │ │ │ ├── use-app-name-suggestion.tsx │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-current-frame.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-keyword-params.tsx │ │ │ ├── use-keyword-search-store.tsx │ │ │ ├── use-pipe-settings.ts │ │ │ ├── use-search-history.tsx │ │ │ ├── use-settings.ts │ │ │ ├── use-sql-autocomplete.tsx │ │ │ ├── use-suggestion.tsx │ │ │ ├── use-timeline-data.tsx │ │ │ ├── use-timeline-selection.tsx │ │ │ └── use-timeline-store.tsx │ │ │ ├── keyword-parser.ts │ │ │ ├── raw_sql_queries.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── screen-avatar │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── 0920242-meeting.png │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── raw_response.json │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ ├── check-folder │ │ │ │ │ └── route.ts │ │ │ │ ├── files │ │ │ │ │ └── route.ts │ │ │ │ ├── heygen │ │ │ │ │ ├── avatar-preview │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── avatars │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── token │ │ │ │ │ │ └── route.ts │ │ │ │ ├── intelligence │ │ │ │ │ └── route.ts │ │ │ │ ├── log │ │ │ │ │ └── route.ts │ │ │ │ ├── obsidian-paths │ │ │ │ │ └── route.ts │ │ │ │ └── test │ │ │ │ │ └── route.ts │ │ │ ├── avatar-jealous │ │ │ │ └── page.tsx │ │ │ ├── avatar │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── human-operator │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── notification │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── providers │ │ │ │ └── providers.tsx │ │ ├── components │ │ │ ├── ai-transcription.tsx │ │ │ ├── ai-vision.tsx │ │ │ ├── analysis-results-table.tsx │ │ │ ├── audio-input.tsx │ │ │ ├── avatar-gallery.tsx │ │ │ ├── avatar-text-input.tsx │ │ │ ├── avatar-video-transparent.tsx │ │ │ ├── avatar-video.tsx │ │ │ ├── realtime-audio.tsx │ │ │ ├── realtime-screen.tsx │ │ │ ├── streaming-avatar.tsx │ │ │ └── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── codeblock.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ └── use-toast.ts │ │ ├── env.mjs │ │ ├── hooks │ │ │ ├── use-avatar-initialization.ts │ │ │ └── use-toast.ts │ │ └── lib │ │ │ ├── actions │ │ │ └── get-screenpipe-app-settings.ts │ │ │ ├── constants.ts │ │ │ ├── eleven-labs.ts │ │ │ ├── hooks │ │ │ ├── ai-client.ts │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ ├── use-debounce.tsx │ │ │ ├── use-health-check.tsx │ │ │ ├── use-pipe-settings.tsx │ │ │ └── use-sql-autocomplete.tsx │ │ │ ├── push-to-talk.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json └── search │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg │ ├── src │ ├── app │ │ ├── api │ │ │ └── settings │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── ai-presets-dialog.tsx │ │ ├── ai-presets-selector.tsx │ │ ├── ai-provider-config.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── context-usage-indicator.tsx │ │ ├── date-time-picker.tsx │ │ ├── example-search-cards.tsx │ │ ├── icons.tsx │ │ ├── markdown.tsx │ │ ├── search-chat.tsx │ │ ├── search-filter-generator.tsx │ │ ├── spinner.tsx │ │ ├── sql-autocomplete-input.tsx │ │ ├── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── multi-select-combobox.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ └── tooltip.tsx │ │ └── video.tsx │ └── lib │ │ ├── actions │ │ ├── get-screenpipe-app-settings.ts │ │ └── video-actions.ts │ │ ├── hooks │ │ ├── use-ai-provider.tsx │ │ ├── use-copy-to-clipboard.tsx │ │ ├── use-debounce.tsx │ │ ├── use-health-check.tsx │ │ ├── use-pipe-settings.ts │ │ ├── use-search-history.tsx │ │ ├── use-settings.tsx │ │ └── use-sql-autocomplete.tsx │ │ ├── types.ts │ │ ├── use-toast.ts │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── rust-toolchain.toml ├── screenpipe-app-tauri ├── .eslintrc.json ├── .gitignore ├── .mocharc.js ├── README.md ├── app │ ├── favicon.ico │ ├── global-error.jsx │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ ├── page.tsx │ └── providers.tsx ├── bun.lockb ├── components.json ├── components │ ├── breaking-changes-instructions-dialog.tsx │ ├── changelog-dialog.tsx │ ├── cli-command-dialog.tsx │ ├── date-time-picker.tsx │ ├── dev-mode-settings.tsx │ ├── empty-screen.tsx │ ├── feature-request-link.tsx │ ├── header.tsx │ ├── inbox-messages.tsx │ ├── log-file-button.tsx │ ├── log-viewer-v2.tsx │ ├── login-dialog.tsx │ ├── markdown-with-external-links.tsx │ ├── markdown.tsx │ ├── model-download-tracker.tsx │ ├── notification-handler.tsx │ ├── onboarding.tsx │ ├── onboarding │ │ ├── api-setup.tsx │ │ ├── dev-configuration.tsx │ │ ├── dev-or-non-dev.tsx │ │ ├── explain-instructions.tsx │ │ ├── introduction.tsx │ │ ├── login.tsx │ │ ├── navigation.tsx │ │ ├── personalize.tsx │ │ ├── pipe-store.tsx │ │ ├── pipes.tsx │ │ ├── single-codeblock.tsx │ │ ├── status.tsx │ │ └── usecases-selection.tsx │ ├── pipe-config-form.tsx │ ├── pipe-logger.tsx │ ├── pipe-store-markdown.tsx │ ├── pipe-store.tsx │ ├── pipe-store │ │ ├── add-pipe-form.tsx │ │ ├── pipe-card.tsx │ │ ├── pipe-details.tsx │ │ └── types.ts │ ├── pretty-link.tsx │ ├── publish-dialog.tsx │ ├── screenpipe-status.tsx │ ├── settings.tsx │ ├── settings │ │ ├── account-section.tsx │ │ ├── ai-presets.tsx │ │ ├── ai-section.tsx │ │ ├── data-import-section.tsx │ │ ├── disk-usage.tsx │ │ ├── general-settings.tsx │ │ ├── pricing-toggle.tsx │ │ ├── recording-settings.tsx │ │ ├── shortcut-row.tsx │ │ └── shortcut-section.tsx │ ├── share-logs-button.tsx │ ├── spinner.tsx │ ├── sql-autocomplete-input.tsx │ ├── status │ │ └── permission-buttons.tsx │ ├── store │ │ └── credit-purchase-dialog.tsx │ ├── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── codeblock.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── dock.tsx │ │ ├── dropdown-menu.tsx │ │ ├── icons.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── multi-select.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── rainbow-button.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── switch.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts │ ├── update-notification.tsx │ └── updater.tsx ├── e2e │ ├── record.js │ ├── terminator-e2e │ │ ├── mocha.global.js │ │ └── screenpipe.spec.js │ ├── tests │ │ └── health-check.js │ ├── utils.js │ └── videos │ │ └── .keep ├── lib │ ├── api │ │ ├── index.ts │ │ └── store │ │ │ └── index.ts │ ├── hooks │ │ ├── use-app-version.tsx │ │ ├── use-changelog-dialog.tsx │ │ ├── use-copy-to-clipboard.tsx │ │ ├── use-debounce.tsx │ │ ├── use-health-check.tsx │ │ ├── use-interval.tsx │ │ ├── use-mobile.tsx │ │ ├── use-onboarding.tsx │ │ ├── use-pipes.tsx │ │ ├── use-pipesv2.tsx │ │ ├── use-platform.tsx │ │ ├── use-profiles.tsx │ │ ├── use-scroll-anchor.tsx │ │ ├── use-settings-dialog.ts │ │ ├── use-settings.tsx │ │ ├── use-sql-autocomplete.tsx │ │ └── use-status-dialog.tsx │ ├── language.ts │ ├── shortcuts.ts │ ├── supabase │ │ └── client.ts │ └── utils.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── public │ ├── 128x128.png │ ├── CHANGELOG.md │ ├── images │ │ ├── custom.png │ │ ├── ollama.png │ │ ├── openai.png │ │ └── screenpipe.png │ ├── next.svg │ ├── pipe-store-preview.png │ ├── placeholder-user.jpg │ ├── screenpipe.svg │ └── vercel.svg ├── scripts │ └── pre_build.js ├── src-tauri │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Info.plist │ ├── assets │ │ ├── dmg-background.png │ │ ├── nsis-header.bmp │ │ ├── nsis-sidebar.bmp │ │ ├── screenpipe-logo-tray-black-failed.png │ │ ├── screenpipe-logo-tray-black.png │ │ ├── screenpipe-logo-tray-updates-black.png │ │ ├── screenpipe-logo-tray-updates-white.png │ │ ├── screenpipe-logo-tray-white-failed.png │ │ ├── screenpipe-logo-tray-white.png │ │ └── svg │ │ │ ├── screenpipe-logo-tray-black-failed.svg │ │ │ ├── screenpipe-logo-tray-black.svg │ │ │ ├── screenpipe-logo-tray-updates-black.svg │ │ │ ├── screenpipe-logo-tray-updates-white.svg │ │ │ ├── screenpipe-logo-tray-white-failed.svg │ │ │ └── screenpipe-logo-tray-white.svg │ ├── build.rs │ ├── capabilities │ │ └── main.json │ ├── entitlements.plist │ ├── gen │ │ └── schemas │ │ │ ├── acl-manifests.json │ │ │ ├── capabilities.json │ │ │ ├── desktop-schema.json │ │ │ ├── linux-schema.json │ │ │ ├── macOS-schema.json │ │ │ └── windows-schema.json │ ├── icons │ │ ├── 1024x1024.png │ │ ├── 128x128.png │ │ ├── 128x128@2x.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 512x512.png │ │ ├── Square107x107Logo.png │ │ ├── Square142x142Logo.png │ │ ├── Square150x150Logo.png │ │ ├── Square284x284Logo.png │ │ ├── Square30x30Logo.png │ │ ├── Square310x310Logo.png │ │ ├── Square44x44Logo.png │ │ ├── Square71x71Logo.png │ │ ├── Square89x89Logo.png │ │ ├── StoreLogo.png │ │ ├── android │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ ├── app │ │ │ ├── recording.png │ │ │ ├── start_recording.png │ │ │ └── stop_recording.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── ios │ │ │ ├── AppIcon-20x20@1x.png │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ ├── AppIcon-20x20@2x.png │ │ │ ├── AppIcon-20x20@3x.png │ │ │ ├── AppIcon-29x29@1x.png │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ ├── AppIcon-29x29@2x.png │ │ │ ├── AppIcon-29x29@3x.png │ │ │ ├── AppIcon-40x40@1x.png │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ ├── AppIcon-40x40@2x.png │ │ │ ├── AppIcon-40x40@3x.png │ │ │ ├── AppIcon-512@2x.png │ │ │ ├── AppIcon-60x60@2x.png │ │ │ ├── AppIcon-60x60@3x.png │ │ │ ├── AppIcon-76x76@1x.png │ │ │ ├── AppIcon-76x76@2x.png │ │ │ └── AppIcon-83.5x83.5@2x.png │ │ ├── screenpipe-logo-tray-black.png │ │ └── screenpipe-logo-tray-failed.png │ ├── src │ │ ├── analytics.rs │ │ ├── commands.rs │ │ ├── config.rs │ │ ├── disk_usage.rs │ │ ├── health.rs │ │ ├── icons.rs │ │ ├── main.rs │ │ ├── permissions.rs │ │ ├── server.rs │ │ ├── sidecar.rs │ │ ├── store.rs │ │ ├── tray.rs │ │ ├── updates.rs │ │ └── window_api.rs │ ├── tauri.conf.json │ ├── tauri.linux.conf.json │ ├── tauri.macos.conf.json │ ├── tauri.windows.conf.json │ ├── ui_monitor-aarch64-apple-darwin │ └── ui_monitor-x86_64-apple-darwin ├── tailwind.config.ts ├── tsconfig.json └── wdio.conf.js ├── screenpipe-audio ├── Cargo.toml ├── README.md ├── build.rs ├── examples │ └── screenpipe-audio.rs ├── models │ ├── pyannote │ │ ├── segmentation-3.0.onnx │ │ └── wespeaker_en_voxceleb_CAM++.onnx │ └── whisper │ │ ├── melfilters.bytes │ │ └── melfilters128.bytes ├── src │ ├── audio_manager │ │ ├── builder.rs │ │ ├── device_monitor.rs │ │ ├── manager.rs │ │ └── mod.rs │ ├── core │ │ ├── device.rs │ │ ├── engine.rs │ │ ├── mod.rs │ │ ├── run_record_and_transcribe.rs │ │ └── stream.rs │ ├── device │ │ ├── device_manager.rs │ │ └── mod.rs │ ├── lib.rs │ ├── segmentation │ │ ├── mod.rs │ │ └── segmentation_manager.rs │ ├── speaker │ │ ├── embedding.rs │ │ ├── embedding_manager.rs │ │ ├── mod.rs │ │ ├── models.rs │ │ ├── prepare_segments.rs │ │ └── segment.rs │ ├── transcription │ │ ├── deepgram │ │ │ ├── batch.rs │ │ │ ├── mod.rs │ │ │ └── streaming.rs │ │ ├── handle_new_transcript.rs │ │ ├── mod.rs │ │ ├── stt.rs │ │ ├── text_utils.rs │ │ ├── transcription_result.rs │ │ └── whisper │ │ │ ├── batch.rs │ │ │ ├── detect_language.rs │ │ │ ├── mod.rs │ │ │ └── model.rs │ ├── utils │ │ ├── audio │ │ │ ├── convert.rs │ │ │ ├── mod.rs │ │ │ ├── normalization.rs │ │ │ ├── pcm_decode.rs │ │ │ ├── resample.rs │ │ │ └── spectral_subtraction.rs │ │ ├── ffmpeg.rs │ │ └── mod.rs │ └── vad │ │ ├── mod.rs │ │ ├── silero.rs │ │ └── webrtc.rs ├── test_data │ ├── Arifi.wav │ ├── accuracy1.wav │ ├── accuracy2.wav │ ├── accuracy3.wav │ ├── accuracy4.mp4 │ ├── accuracy4.wav │ ├── accuracy5.mp4 │ ├── accuracy5.wav │ ├── poetic_kapil_gupta.wav │ ├── selah.mp3 │ ├── selah.mp4 │ └── speaker_identification │ │ ├── 6_speakers.wav │ │ └── obama.wav └── tests │ ├── accuracy_test.rs │ ├── core_tests.rs │ ├── realtime_test.rs │ └── speaker_identification.rs ├── screenpipe-core ├── Cargo.toml ├── examples │ ├── cron.rs │ ├── google.rs │ ├── llama.rs │ ├── mistral.rs │ ├── phi.rs │ ├── win_automation.rs │ └── windows_pdf_to_legacy.rs ├── src │ ├── actions.rs │ ├── embedding │ │ ├── mod.rs │ │ └── model.rs │ ├── ffmpeg.rs │ ├── google.rs │ ├── language.rs │ ├── lib.rs │ ├── llama.rs │ ├── llm.rs │ ├── mistral.rs │ ├── network.rs │ ├── operator │ │ ├── LICENSE │ │ ├── element.rs │ │ ├── errors.rs │ │ ├── locator.rs │ │ ├── mod.rs │ │ ├── platforms │ │ │ ├── linux.rs │ │ │ ├── macos.rs │ │ │ ├── mod.rs │ │ │ ├── tree_search.rs │ │ │ └── windows.rs │ │ ├── selector.rs │ │ └── tests.rs │ ├── phi.rs │ ├── pii_removal.rs │ └── pipes.rs └── tests │ └── pipes_test.rs ├── screenpipe-db ├── Cargo.toml ├── benches │ ├── db_benchmarks.rs │ └── new_db_benchmark.rs ├── src │ ├── db.rs │ ├── lib.rs │ ├── migration_worker.rs │ ├── migrations │ │ ├── 20240703111257_screenpipe.sql │ │ ├── 20240715121444_indexes.sql │ │ ├── 20240716120000_add_fields_to_ocr_text.sql │ │ ├── 20240716120001_update_ocr_text_table.sql │ │ ├── 20240716120002_snake_case.sql │ │ ├── 20240716120003_add_timestampt_to_audio_chunks.sql │ │ ├── 20240716120004_app_name.sql │ │ ├── 20240805120005_V2_create_inverted_index_table.sql │ │ ├── 20240808120006_V2_add_transcription_engine.sql │ │ ├── 20240808120007_V2_add_friends_request_table.sql │ │ ├── 20240808120008_V2_remove_fields.sql │ │ ├── 20240808120009_remove_columns_from_ocr_text.sql │ │ ├── 20240808120010_create_unique_index_on_chunked_text_index.sql │ │ ├── 20240811010614_add_fields_to_friend_wearable_requests.sql │ │ ├── 20240812202755_add_is_successful_to_friend_wearable_requests.sql │ │ ├── 20240812205501_add_fts_index.sql │ │ ├── 20240815201445_add_window_name_to_ocr_text.sql │ │ ├── 20240815214646_remove_app_name_from_frames.sql │ │ ├── 20240815215557_add_focused_to_ocr_text.sql │ │ ├── 20240821074222_create_tags.sql │ │ ├── 20240917213422_add_device_info_to_audio_transcriptions.sql │ │ ├── 20241024181218_add_device_name_to_chunks.sql │ │ ├── 20241103222151_timeline_indexes.sql │ │ ├── 20241106031800_create_ui_monitoring.sql │ │ ├── 20241108202826_create_speaker_table.sql │ │ ├── 20241127172038_create_speaker_id_col_final.sql │ │ ├── 20241127220428_add_hallucination_column.sql │ │ ├── 20241204191424_fts.sql │ │ ├── 20241207202831_add_speaker_id_to_fts.sql │ │ ├── 20241210111055_add_fts_update_delete_triggers.sql │ │ ├── 20241210205142_fix_audio_transcriptions.sql │ │ ├── 20241213220649_create_segment_start_time_and_end_time_columns.sql │ │ ├── 20250117134500_create_ocr_text_embeddings.sql │ │ ├── 20250117180530_add_frame_names.sql │ │ ├── 20250130101751_add_text_length_columns.sql │ │ ├── 20250131232938_add_device_name_to_frame.sql │ │ ├── 20250219212616_add-browser_url-column.sql │ │ └── 20250223204844_browser_url_fts_and_move_window_app_to_frames.sql │ ├── types.rs │ └── video_db.rs └── tests │ └── db.rs ├── screenpipe-events ├── .gitignore ├── Cargo.toml ├── benches │ └── events.rs ├── src │ ├── custom_events │ │ ├── meetings.rs │ │ └── mod.rs │ ├── events_manager.rs │ └── lib.rs └── tests │ ├── cross_crate_events_test.rs │ └── events_manager_test.rs ├── screenpipe-integrations ├── Cargo.toml ├── screenpipe-mcp │ ├── .gitignore │ ├── .python-version │ ├── README.md │ ├── pyproject.toml │ ├── src │ │ └── screenpipe_mcp │ │ │ ├── __init__.py │ │ │ └── server.py │ └── uv.lock └── src │ ├── lib.rs │ ├── mod.rs │ └── unstructured_ocr.rs ├── screenpipe-js ├── .gitignore ├── ai-proxy │ ├── .editorconfig │ ├── .gitignore │ ├── .prettierrc │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── handlers │ │ │ ├── chat.ts │ │ │ ├── models.ts │ │ │ ├── transcription.ts │ │ │ ├── voice-ws.ts │ │ │ └── voice.ts │ │ ├── index.ts │ │ ├── providers │ │ │ ├── anthropic.ts │ │ │ ├── base.ts │ │ │ ├── gemini.ts │ │ │ ├── index.ts │ │ │ └── openai.ts │ │ ├── services │ │ │ ├── analytics.ts │ │ │ └── deepgram.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── auth.ts │ │ │ ├── cors.ts │ │ │ ├── rate-limiter.ts │ │ │ ├── subscription.ts │ │ │ └── voice-utils.ts │ ├── tsconfig.json │ ├── worker-configuration.d.ts │ └── wrangler.toml ├── browser-sdk │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tests │ │ ├── deduplicateText.test.ts │ │ ├── list-arc-elements.ts │ │ ├── operator.test.ts │ │ ├── streamTranscriptions.test.ts │ │ └── streamVision.test.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── cli │ ├── bun.lockb │ ├── dist │ │ └── index.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── commands │ │ │ ├── app │ │ │ │ ├── create.ts │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ │ ├── README.md │ │ │ │ ├── commands │ │ │ │ │ ├── add │ │ │ │ │ │ ├── add.ts │ │ │ │ │ │ ├── preflights │ │ │ │ │ │ │ └── preflight-add.ts │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ ├── api.ts │ │ │ │ │ │ │ ├── registry.json │ │ │ │ │ │ │ └── schema.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── add-components.ts │ │ │ │ │ │ │ ├── download-file-from-github.ts │ │ │ │ │ │ │ ├── handle-error.ts │ │ │ │ │ │ │ ├── logger.ts │ │ │ │ │ │ │ ├── package-manager.ts │ │ │ │ │ │ │ ├── prompt-for-component.ts │ │ │ │ │ │ │ ├── shadcn.ts │ │ │ │ │ │ │ └── updaters │ │ │ │ │ │ │ ├── update-dependencies.ts │ │ │ │ │ │ │ └── update-files.ts │ │ │ │ │ └── register.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── login │ │ │ │ ├── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── api-key-login.ts │ │ │ │ │ └── cli-login.ts │ │ │ ├── logout.ts │ │ │ └── pipe │ │ │ │ ├── create.ts │ │ │ │ ├── index.ts │ │ │ │ ├── list-versions.ts │ │ │ │ ├── publish.ts │ │ │ │ └── register.ts │ │ ├── constants.ts │ │ ├── hooks │ │ │ ├── use-ai-provider.tsx │ │ │ └── use-health.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── colors.ts │ │ │ └── credentials.ts │ ├── tests │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bun.lockb │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ └── tsconfig.json ├── common │ ├── Operator.ts │ ├── PipesManager.ts │ ├── analytics.ts │ ├── types.ts │ └── utils.ts ├── examples │ ├── basic-transcription │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bun.lockb │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── capture-main-feature │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bun.lockb │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── deduplicate │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── bun.lock │ │ ├── eslint.config.mjs │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── postcss.config.mjs │ │ ├── public │ │ │ ├── file.svg │ │ │ ├── globe.svg │ │ │ ├── next.svg │ │ │ ├── vercel.svg │ │ │ └── window.svg │ │ ├── tailwind.config.ts │ │ └── tsconfig.json │ ├── query-screenpipe │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bun.lockb │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ └── stream-screenshots │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ │ ├── bun.lock │ │ ├── eslint.config.mjs │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── postcss.config.mjs │ │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ │ ├── tailwind.config.ts │ │ └── tsconfig.json └── node-sdk │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── package.json │ ├── src │ ├── InboxManager.ts │ ├── SettingsManager.ts │ ├── Task.ts │ ├── inbox-server.ts │ └── index.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── screenpipe-server ├── Cargo.toml ├── README.md ├── build.rs ├── examples │ ├── iphone_recording │ │ └── capture.sh │ └── timeline_ui_simple │ │ └── index.html ├── src │ ├── add.rs │ ├── auto_destruct.rs │ ├── bin │ │ └── screenpipe-server.rs │ ├── chunking.rs │ ├── cli.rs │ ├── core.rs │ ├── embedding │ │ ├── embedding_endpoint.rs │ │ └── mod.rs │ ├── filtering.rs │ ├── lib.rs │ ├── pipe_manager.rs │ ├── resource_monitor.rs │ ├── server.rs │ ├── text_embeds.rs │ ├── video.rs │ ├── video_cache.rs │ └── video_utils.rs └── tests │ ├── audio_vision_integration_test.rs │ ├── chunking_test.rs │ ├── endpoint_test.rs │ ├── index_test.rs │ ├── tags_test.rs │ ├── video_cache_test.rs │ ├── video_utils_test.rs │ └── websockets_test.rs └── screenpipe-vision ├── Cargo.toml ├── benches ├── apple_leak_bench.rs ├── ocr_benchmark.rs └── vision_benchmark.rs ├── bin ├── ui_monitor └── ui_monitor-aarch64-apple-darwin ├── build.rs ├── examples ├── screenpipe-vision.rs └── websocket.rs ├── src ├── apple.rs ├── browser_utils │ ├── linux.rs │ ├── macos.rs │ ├── mod.rs │ └── windows.rs ├── capture_screenshot_by_window.rs ├── core.rs ├── custom_ocr.rs ├── lib.rs ├── microsoft.rs ├── monitor.rs ├── run_ui_monitoring_macos.rs ├── tesseract.rs ├── ui_monitoring_macos.swift └── utils.rs └── tests ├── Claude_prompt.png ├── apple_vision_test.rs ├── custom_ocr_test.rs ├── testing_OCR.png ├── testing_OCR_chinese.png └── windows_vision_test.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.cursor/rules/screenpipe.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.cursor/rules/screenpipe.mdc -------------------------------------------------------------------------------- /.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.cursorignore -------------------------------------------------------------------------------- /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.cursorrules -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/scripts/linux_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.devcontainer/scripts/linux_integration.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/postCreateCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.devcontainer/scripts/postCreateCommand.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/welcome-message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.devcontainer/scripts/welcome-message.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bounty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/ISSUE_TEMPLATE/bounty.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/audio_test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/audio_test.wav -------------------------------------------------------------------------------- /.github/scripts/check_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/check_logs.sh -------------------------------------------------------------------------------- /.github/scripts/generate_changelog_md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/generate_changelog_md.sh -------------------------------------------------------------------------------- /.github/scripts/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/install_dependencies.sh -------------------------------------------------------------------------------- /.github/scripts/purge_crabnebula.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/purge_crabnebula.sh -------------------------------------------------------------------------------- /.github/scripts/run_screenpipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/run_screenpipe.sh -------------------------------------------------------------------------------- /.github/scripts/setup_audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/setup_audio.sh -------------------------------------------------------------------------------- /.github/scripts/setup_display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/setup_display.sh -------------------------------------------------------------------------------- /.github/scripts/stop_screenpipe.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | kill $(cat screenpipe.pid) 3 | sleep 5 4 | -------------------------------------------------------------------------------- /.github/scripts/test_audio_capture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/test_audio_capture.sh -------------------------------------------------------------------------------- /.github/scripts/test_ocr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/test_ocr.sh -------------------------------------------------------------------------------- /.github/scripts/verify_tesseract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/scripts/verify_tesseract.sh -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/build-core-pipes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/workflows/build-core-pipes.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/workflows/e2e-test.yml -------------------------------------------------------------------------------- /.github/workflows/release-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/workflows/release-app.yml -------------------------------------------------------------------------------- /.github/workflows/release-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/workflows/release-cli.yml -------------------------------------------------------------------------------- /.github/workflows/release-test-bounty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/workflows/release-test-bounty.yml -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.github/workflows/test-bounty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.github/workflows/test-bounty.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/README-ja.md -------------------------------------------------------------------------------- /README-zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/README-zh_CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/TESTING.md -------------------------------------------------------------------------------- /content/Claude_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/Claude_prompt.png -------------------------------------------------------------------------------- /content/Elon_Musk_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/Elon_Musk_prompt.png -------------------------------------------------------------------------------- /content/Vercel_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/Vercel_app.png -------------------------------------------------------------------------------- /content/audio_transcriptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/audio_transcriptions.png -------------------------------------------------------------------------------- /content/changelogs/0.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.10.0.md -------------------------------------------------------------------------------- /content/changelogs/0.10.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.10.1.md -------------------------------------------------------------------------------- /content/changelogs/0.10.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.10.2.md -------------------------------------------------------------------------------- /content/changelogs/0.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.11.0.md -------------------------------------------------------------------------------- /content/changelogs/0.11.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.11.9.md -------------------------------------------------------------------------------- /content/changelogs/0.12.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.12.3.md -------------------------------------------------------------------------------- /content/changelogs/0.14.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.14.13.md -------------------------------------------------------------------------------- /content/changelogs/0.14.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.14.17.md -------------------------------------------------------------------------------- /content/changelogs/0.14.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.14.18.md -------------------------------------------------------------------------------- /content/changelogs/0.14.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.14.2.md -------------------------------------------------------------------------------- /content/changelogs/0.14.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.14.20.md -------------------------------------------------------------------------------- /content/changelogs/0.14.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.14.22.md -------------------------------------------------------------------------------- /content/changelogs/0.14.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.14.24.md -------------------------------------------------------------------------------- /content/changelogs/0.14.33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.14.33.md -------------------------------------------------------------------------------- /content/changelogs/0.15.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.15.0.md -------------------------------------------------------------------------------- /content/changelogs/0.15.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.15.3.md -------------------------------------------------------------------------------- /content/changelogs/0.15.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.15.5.md -------------------------------------------------------------------------------- /content/changelogs/0.16.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.16.0.md -------------------------------------------------------------------------------- /content/changelogs/0.16.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.16.1.md -------------------------------------------------------------------------------- /content/changelogs/0.16.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.16.3.md -------------------------------------------------------------------------------- /content/changelogs/0.17.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.17.0.md -------------------------------------------------------------------------------- /content/changelogs/0.17.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.17.1.md -------------------------------------------------------------------------------- /content/changelogs/0.17.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.17.2.md -------------------------------------------------------------------------------- /content/changelogs/0.17.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.17.8.md -------------------------------------------------------------------------------- /content/changelogs/0.18.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.18.0.md -------------------------------------------------------------------------------- /content/changelogs/0.18.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.18.1.md -------------------------------------------------------------------------------- /content/changelogs/0.18.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.18.3.md -------------------------------------------------------------------------------- /content/changelogs/0.18.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.18.4.md -------------------------------------------------------------------------------- /content/changelogs/0.18.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.18.9.md -------------------------------------------------------------------------------- /content/changelogs/0.19.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.19.0.md -------------------------------------------------------------------------------- /content/changelogs/0.19.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.19.3.md -------------------------------------------------------------------------------- /content/changelogs/0.19.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.19.5.md -------------------------------------------------------------------------------- /content/changelogs/0.20.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.20.2.md -------------------------------------------------------------------------------- /content/changelogs/0.20.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.20.6.md -------------------------------------------------------------------------------- /content/changelogs/0.20.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.20.7.md -------------------------------------------------------------------------------- /content/changelogs/0.20.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.20.8.md -------------------------------------------------------------------------------- /content/changelogs/0.21.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.21.2.md -------------------------------------------------------------------------------- /content/changelogs/0.21.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.21.8.md -------------------------------------------------------------------------------- /content/changelogs/0.21.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.21.9.md -------------------------------------------------------------------------------- /content/changelogs/0.22.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.22.0.md -------------------------------------------------------------------------------- /content/changelogs/0.22.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.22.1.md -------------------------------------------------------------------------------- /content/changelogs/0.22.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.22.2.md -------------------------------------------------------------------------------- /content/changelogs/0.22.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.22.3.md -------------------------------------------------------------------------------- /content/changelogs/0.22.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.22.4.md -------------------------------------------------------------------------------- /content/changelogs/0.22.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.22.5.md -------------------------------------------------------------------------------- /content/changelogs/0.22.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.22.6.md -------------------------------------------------------------------------------- /content/changelogs/0.22.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.22.9.md -------------------------------------------------------------------------------- /content/changelogs/0.23.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.23.4.md -------------------------------------------------------------------------------- /content/changelogs/0.23.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.23.6.md -------------------------------------------------------------------------------- /content/changelogs/0.23.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.23.9.md -------------------------------------------------------------------------------- /content/changelogs/0.24.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.24.4.md -------------------------------------------------------------------------------- /content/changelogs/0.24.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.24.5.md -------------------------------------------------------------------------------- /content/changelogs/0.25.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.25.0.md -------------------------------------------------------------------------------- /content/changelogs/0.25.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.25.3.md -------------------------------------------------------------------------------- /content/changelogs/0.25.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.25.5.md -------------------------------------------------------------------------------- /content/changelogs/0.25.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.25.7.md -------------------------------------------------------------------------------- /content/changelogs/0.26.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.26.0.md -------------------------------------------------------------------------------- /content/changelogs/0.26.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.26.2.md -------------------------------------------------------------------------------- /content/changelogs/0.26.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.26.3.md -------------------------------------------------------------------------------- /content/changelogs/0.26.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.26.6.md -------------------------------------------------------------------------------- /content/changelogs/0.27.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.27.0.md -------------------------------------------------------------------------------- /content/changelogs/0.27.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.27.1.md -------------------------------------------------------------------------------- /content/changelogs/0.27.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.27.4.md -------------------------------------------------------------------------------- /content/changelogs/0.27.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.27.9.md -------------------------------------------------------------------------------- /content/changelogs/0.28.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.28.4.md -------------------------------------------------------------------------------- /content/changelogs/0.29.7-beta.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.29.7-beta.1.md -------------------------------------------------------------------------------- /content/changelogs/0.30.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.30.4.md -------------------------------------------------------------------------------- /content/changelogs/0.30.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.30.5.md -------------------------------------------------------------------------------- /content/changelogs/0.30.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.30.7.md -------------------------------------------------------------------------------- /content/changelogs/0.30.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.30.8.md -------------------------------------------------------------------------------- /content/changelogs/0.31.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.31.0.md -------------------------------------------------------------------------------- /content/changelogs/0.31.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.31.1.md -------------------------------------------------------------------------------- /content/changelogs/0.31.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.31.3.md -------------------------------------------------------------------------------- /content/changelogs/0.31.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.31.8.md -------------------------------------------------------------------------------- /content/changelogs/0.32.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.32.0.md -------------------------------------------------------------------------------- /content/changelogs/0.32.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.32.11.md -------------------------------------------------------------------------------- /content/changelogs/0.32.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.32.4.md -------------------------------------------------------------------------------- /content/changelogs/0.33.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.33.1.md -------------------------------------------------------------------------------- /content/changelogs/0.33.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.33.2.md -------------------------------------------------------------------------------- /content/changelogs/0.35.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.35.12.md -------------------------------------------------------------------------------- /content/changelogs/0.35.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.35.14.md -------------------------------------------------------------------------------- /content/changelogs/0.35.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.35.3.md -------------------------------------------------------------------------------- /content/changelogs/0.36.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.36.4.md -------------------------------------------------------------------------------- /content/changelogs/0.36.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.36.5.md -------------------------------------------------------------------------------- /content/changelogs/0.37.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.37.1.md -------------------------------------------------------------------------------- /content/changelogs/0.37.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.37.2.md -------------------------------------------------------------------------------- /content/changelogs/0.37.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.37.9.md -------------------------------------------------------------------------------- /content/changelogs/0.38.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.38.1.md -------------------------------------------------------------------------------- /content/changelogs/0.38.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.38.2.md -------------------------------------------------------------------------------- /content/changelogs/0.38.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.38.4.md -------------------------------------------------------------------------------- /content/changelogs/0.38.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.38.5.md -------------------------------------------------------------------------------- /content/changelogs/0.38.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.38.8.md -------------------------------------------------------------------------------- /content/changelogs/0.38.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.38.9.md -------------------------------------------------------------------------------- /content/changelogs/0.39.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.39.2.md -------------------------------------------------------------------------------- /content/changelogs/0.39.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.39.5.md -------------------------------------------------------------------------------- /content/changelogs/0.39.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.39.6.md -------------------------------------------------------------------------------- /content/changelogs/0.41.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.41.10.md -------------------------------------------------------------------------------- /content/changelogs/0.41.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.41.5.md -------------------------------------------------------------------------------- /content/changelogs/0.41.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.41.9.md -------------------------------------------------------------------------------- /content/changelogs/0.42.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.42.1.md -------------------------------------------------------------------------------- /content/changelogs/0.42.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.42.2.md -------------------------------------------------------------------------------- /content/changelogs/0.42.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.42.4.md -------------------------------------------------------------------------------- /content/changelogs/0.42.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.42.8.md -------------------------------------------------------------------------------- /content/changelogs/0.43.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.43.0.md -------------------------------------------------------------------------------- /content/changelogs/0.43.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.43.5.md -------------------------------------------------------------------------------- /content/changelogs/0.43.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.43.7.md -------------------------------------------------------------------------------- /content/changelogs/0.43.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.43.9.md -------------------------------------------------------------------------------- /content/changelogs/0.44.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.44.0.md -------------------------------------------------------------------------------- /content/changelogs/0.44.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.44.1.md -------------------------------------------------------------------------------- /content/changelogs/0.44.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.44.2.md -------------------------------------------------------------------------------- /content/changelogs/0.44.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/0.44.3.md -------------------------------------------------------------------------------- /content/changelogs/v0.1.95.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/v0.1.95.md -------------------------------------------------------------------------------- /content/changelogs/v0.1.96.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/v0.1.96.md -------------------------------------------------------------------------------- /content/changelogs/v0.1.98.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/changelogs/v0.1.98.md -------------------------------------------------------------------------------- /content/developer-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/developer-account.png -------------------------------------------------------------------------------- /content/diagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/diagram2.png -------------------------------------------------------------------------------- /content/docs-mintlify-mig-tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/docs-mintlify-mig-tmp/.gitignore -------------------------------------------------------------------------------- /content/docs-mintlify-mig-tmp/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/docs-mintlify-mig-tmp/docs.json -------------------------------------------------------------------------------- /content/docs-mintlify-mig-tmp/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/docs-mintlify-mig-tmp/faq.mdx -------------------------------------------------------------------------------- /content/docs-mintlify-mig-tmp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/docs-mintlify-mig-tmp/favicon.ico -------------------------------------------------------------------------------- /content/docs-mintlify-mig-tmp/home.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/docs-mintlify-mig-tmp/home.mdx -------------------------------------------------------------------------------- /content/docs-mintlify-mig-tmp/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/docs-mintlify-mig-tmp/openapi.yaml -------------------------------------------------------------------------------- /content/docs-mintlify-mig-tmp/plugins.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/docs-mintlify-mig-tmp/plugins.mdx -------------------------------------------------------------------------------- /content/frame_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/content/frame_text.png -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/install.sh -------------------------------------------------------------------------------- /pipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/README.md -------------------------------------------------------------------------------- /pipes/assistant-ui-ollama-openai-screenpipe/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals"] 3 | } 4 | -------------------------------------------------------------------------------- /pipes/assistant-ui-ollama-openai-screenpipe/app/api/get-apps/route.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipes/assistant-ui-ollama-openai-screenpipe/app/hello-world-mcp-client/build-workflows.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipes/data-table/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/.gitignore -------------------------------------------------------------------------------- /pipes/data-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/README.md -------------------------------------------------------------------------------- /pipes/data-table/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/bun.lockb -------------------------------------------------------------------------------- /pipes/data-table/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/components.json -------------------------------------------------------------------------------- /pipes/data-table/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/eslint.config.mjs -------------------------------------------------------------------------------- /pipes/data-table/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/next.config.ts -------------------------------------------------------------------------------- /pipes/data-table/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/package.json -------------------------------------------------------------------------------- /pipes/data-table/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/data-table/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/public/file.svg -------------------------------------------------------------------------------- /pipes/data-table/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/public/globe.svg -------------------------------------------------------------------------------- /pipes/data-table/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/public/next.svg -------------------------------------------------------------------------------- /pipes/data-table/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/public/vercel.svg -------------------------------------------------------------------------------- /pipes/data-table/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/public/window.svg -------------------------------------------------------------------------------- /pipes/data-table/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/src/app/favicon.ico -------------------------------------------------------------------------------- /pipes/data-table/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/src/app/globals.css -------------------------------------------------------------------------------- /pipes/data-table/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/src/app/layout.tsx -------------------------------------------------------------------------------- /pipes/data-table/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/src/app/page.tsx -------------------------------------------------------------------------------- /pipes/data-table/src/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/src/components/page.tsx -------------------------------------------------------------------------------- /pipes/data-table/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/src/components/ui/card.tsx -------------------------------------------------------------------------------- /pipes/data-table/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/src/lib/types.ts -------------------------------------------------------------------------------- /pipes/data-table/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/src/lib/utils.ts -------------------------------------------------------------------------------- /pipes/data-table/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/data-table/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/data-table/tsconfig.json -------------------------------------------------------------------------------- /pipes/desktop-to-table/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals"] 3 | } 4 | -------------------------------------------------------------------------------- /pipes/desktop-to-table/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/.gitignore -------------------------------------------------------------------------------- /pipes/desktop-to-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/README.md -------------------------------------------------------------------------------- /pipes/desktop-to-table/app/api/get-apps/route.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipes/desktop-to-table/app/api/log/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/app/api/log/route.ts -------------------------------------------------------------------------------- /pipes/desktop-to-table/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/app/favicon.ico -------------------------------------------------------------------------------- /pipes/desktop-to-table/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/app/globals.css -------------------------------------------------------------------------------- /pipes/desktop-to-table/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/app/layout.tsx -------------------------------------------------------------------------------- /pipes/desktop-to-table/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/app/page.tsx -------------------------------------------------------------------------------- /pipes/desktop-to-table/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/bun.lockb -------------------------------------------------------------------------------- /pipes/desktop-to-table/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/components.json -------------------------------------------------------------------------------- /pipes/desktop-to-table/hooks/use-health.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/hooks/use-health.tsx -------------------------------------------------------------------------------- /pipes/desktop-to-table/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/hooks/use-toast.ts -------------------------------------------------------------------------------- /pipes/desktop-to-table/lib/client-only.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/lib/client-only.tsx -------------------------------------------------------------------------------- /pipes/desktop-to-table/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/lib/types.ts -------------------------------------------------------------------------------- /pipes/desktop-to-table/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/lib/utils.ts -------------------------------------------------------------------------------- /pipes/desktop-to-table/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/next.config.mjs -------------------------------------------------------------------------------- /pipes/desktop-to-table/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/package-lock.json -------------------------------------------------------------------------------- /pipes/desktop-to-table/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/package.json -------------------------------------------------------------------------------- /pipes/desktop-to-table/pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/pipe.json -------------------------------------------------------------------------------- /pipes/desktop-to-table/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/desktop-to-table/public/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/public/128x128.png -------------------------------------------------------------------------------- /pipes/desktop-to-table/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/desktop-to-table/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/desktop-to-table/tsconfig.json -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals"] 3 | } 4 | -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/.gitignore -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/README.md -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/app/api/get-apps/route.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/app/layout.tsx -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/app/page.tsx -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/bun.lockb -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/lib/types.ts -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/lib/utils.ts -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/package.json -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/pipe.json -------------------------------------------------------------------------------- /pipes/discord-to-spreadsheet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/discord-to-spreadsheet/tsconfig.json -------------------------------------------------------------------------------- /pipes/example-pipe/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals"] 3 | } 4 | -------------------------------------------------------------------------------- /pipes/example-pipe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/.gitignore -------------------------------------------------------------------------------- /pipes/example-pipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/README.md -------------------------------------------------------------------------------- /pipes/example-pipe/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/app/favicon.ico -------------------------------------------------------------------------------- /pipes/example-pipe/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/app/globals.css -------------------------------------------------------------------------------- /pipes/example-pipe/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/app/layout.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/app/page.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/bun.lockb -------------------------------------------------------------------------------- /pipes/example-pipe/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components.json -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/badge.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/button.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/card.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/dialog.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/icons.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/input.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/label.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/select.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/slider.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/sonner.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/switch.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/tabs.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/components/ui/toast.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/hooks/use-toast.ts -------------------------------------------------------------------------------- /pipes/example-pipe/lib/client-only.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/lib/client-only.tsx -------------------------------------------------------------------------------- /pipes/example-pipe/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/lib/types.ts -------------------------------------------------------------------------------- /pipes/example-pipe/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/lib/utils.ts -------------------------------------------------------------------------------- /pipes/example-pipe/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/next.config.mjs -------------------------------------------------------------------------------- /pipes/example-pipe/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/package-lock.json -------------------------------------------------------------------------------- /pipes/example-pipe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/package.json -------------------------------------------------------------------------------- /pipes/example-pipe/pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/pipe.json -------------------------------------------------------------------------------- /pipes/example-pipe/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/example-pipe/public/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/public/128x128.png -------------------------------------------------------------------------------- /pipes/example-pipe/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/example-pipe/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/example-pipe/tsconfig.json -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals"] 3 | } 4 | -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/hello-world-computer-use/.gitignore -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/hello-world-computer-use/README.md -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/app/api/get-apps/route.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/hello-world-computer-use/app/page.tsx -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/hello-world-computer-use/bun.lockb -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/hello-world-computer-use/lib/types.ts -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/hello-world-computer-use/lib/utils.ts -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/hello-world-computer-use/package.json -------------------------------------------------------------------------------- /pipes/hello-world-computer-use/pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/hello-world-computer-use/pipe.json -------------------------------------------------------------------------------- /pipes/identify-speakers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/.gitignore -------------------------------------------------------------------------------- /pipes/identify-speakers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/README.md -------------------------------------------------------------------------------- /pipes/identify-speakers/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/bun.lockb -------------------------------------------------------------------------------- /pipes/identify-speakers/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/components.json -------------------------------------------------------------------------------- /pipes/identify-speakers/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/eslint.config.mjs -------------------------------------------------------------------------------- /pipes/identify-speakers/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/next.config.ts -------------------------------------------------------------------------------- /pipes/identify-speakers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/package.json -------------------------------------------------------------------------------- /pipes/identify-speakers/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/identify-speakers/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/public/file.svg -------------------------------------------------------------------------------- /pipes/identify-speakers/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/public/globe.svg -------------------------------------------------------------------------------- /pipes/identify-speakers/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/public/next.svg -------------------------------------------------------------------------------- /pipes/identify-speakers/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/public/vercel.svg -------------------------------------------------------------------------------- /pipes/identify-speakers/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/public/window.svg -------------------------------------------------------------------------------- /pipes/identify-speakers/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/src/app/favicon.ico -------------------------------------------------------------------------------- /pipes/identify-speakers/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/src/app/globals.css -------------------------------------------------------------------------------- /pipes/identify-speakers/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/src/app/layout.tsx -------------------------------------------------------------------------------- /pipes/identify-speakers/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/src/app/page.tsx -------------------------------------------------------------------------------- /pipes/identify-speakers/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/src/lib/utils.ts -------------------------------------------------------------------------------- /pipes/identify-speakers/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/identify-speakers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/identify-speakers/tsconfig.json -------------------------------------------------------------------------------- /pipes/meeting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/.gitignore -------------------------------------------------------------------------------- /pipes/meeting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/README.md -------------------------------------------------------------------------------- /pipes/meeting/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/bun.lockb -------------------------------------------------------------------------------- /pipes/meeting/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/components.json -------------------------------------------------------------------------------- /pipes/meeting/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/eslint.config.mjs -------------------------------------------------------------------------------- /pipes/meeting/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/next.config.ts -------------------------------------------------------------------------------- /pipes/meeting/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/package-lock.json -------------------------------------------------------------------------------- /pipes/meeting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/package.json -------------------------------------------------------------------------------- /pipes/meeting/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/meeting/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/public/file.svg -------------------------------------------------------------------------------- /pipes/meeting/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/public/globe.svg -------------------------------------------------------------------------------- /pipes/meeting/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/public/next.svg -------------------------------------------------------------------------------- /pipes/meeting/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/public/vercel.svg -------------------------------------------------------------------------------- /pipes/meeting/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/public/window.svg -------------------------------------------------------------------------------- /pipes/meeting/src/app/api/messages/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/app/api/messages/route.ts -------------------------------------------------------------------------------- /pipes/meeting/src/app/api/settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/app/api/settings/route.ts -------------------------------------------------------------------------------- /pipes/meeting/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/app/favicon.ico -------------------------------------------------------------------------------- /pipes/meeting/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/app/globals.css -------------------------------------------------------------------------------- /pipes/meeting/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/app/layout.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/app/meetings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/app/meetings/page.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/app/page.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/button.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/card.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/command.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/input.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/label.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/select.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /pipes/meeting/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /pipes/meeting/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/src/lib/utils.ts -------------------------------------------------------------------------------- /pipes/meeting/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/meeting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/meeting/tsconfig.json -------------------------------------------------------------------------------- /pipes/memories/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/.gitignore -------------------------------------------------------------------------------- /pipes/memories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/README.md -------------------------------------------------------------------------------- /pipes/memories/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/bun.lockb -------------------------------------------------------------------------------- /pipes/memories/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/components.json -------------------------------------------------------------------------------- /pipes/memories/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/eslint.config.mjs -------------------------------------------------------------------------------- /pipes/memories/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/next.config.ts -------------------------------------------------------------------------------- /pipes/memories/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/package.json -------------------------------------------------------------------------------- /pipes/memories/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/memories/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/public/file.svg -------------------------------------------------------------------------------- /pipes/memories/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/public/globe.svg -------------------------------------------------------------------------------- /pipes/memories/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/public/next.svg -------------------------------------------------------------------------------- /pipes/memories/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/public/vercel.svg -------------------------------------------------------------------------------- /pipes/memories/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/public/window.svg -------------------------------------------------------------------------------- /pipes/memories/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/app/favicon.ico -------------------------------------------------------------------------------- /pipes/memories/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/app/globals.css -------------------------------------------------------------------------------- /pipes/memories/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/app/layout.tsx -------------------------------------------------------------------------------- /pipes/memories/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/app/page.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/button.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/card.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/input.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/label.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/select.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /pipes/memories/src/components/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/components/video.tsx -------------------------------------------------------------------------------- /pipes/memories/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/src/lib/utils.ts -------------------------------------------------------------------------------- /pipes/memories/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/memories/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/memories/tsconfig.json -------------------------------------------------------------------------------- /pipes/notion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/.gitignore -------------------------------------------------------------------------------- /pipes/notion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/README.md -------------------------------------------------------------------------------- /pipes/notion/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/bun.lockb -------------------------------------------------------------------------------- /pipes/notion/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/components.json -------------------------------------------------------------------------------- /pipes/notion/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/eslint.config.mjs -------------------------------------------------------------------------------- /pipes/notion/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/next.config.ts -------------------------------------------------------------------------------- /pipes/notion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/package.json -------------------------------------------------------------------------------- /pipes/notion/pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/pipe.json -------------------------------------------------------------------------------- /pipes/notion/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/notion/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/public/file.svg -------------------------------------------------------------------------------- /pipes/notion/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/public/globe.svg -------------------------------------------------------------------------------- /pipes/notion/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/public/next.svg -------------------------------------------------------------------------------- /pipes/notion/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/public/vercel.svg -------------------------------------------------------------------------------- /pipes/notion/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/public/window.svg -------------------------------------------------------------------------------- /pipes/notion/src/app/api/log/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/app/api/log/route.ts -------------------------------------------------------------------------------- /pipes/notion/src/app/api/setup/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/app/api/setup/route.ts -------------------------------------------------------------------------------- /pipes/notion/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/app/favicon.ico -------------------------------------------------------------------------------- /pipes/notion/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/app/globals.css -------------------------------------------------------------------------------- /pipes/notion/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/app/layout.tsx -------------------------------------------------------------------------------- /pipes/notion/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/app/page.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/button.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/card.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/command.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/input.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/label.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/select.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /pipes/notion/src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /pipes/notion/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /pipes/notion/src/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/lib/helpers.ts -------------------------------------------------------------------------------- /pipes/notion/src/lib/hooks/use-debounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/lib/hooks/use-debounce.tsx -------------------------------------------------------------------------------- /pipes/notion/src/lib/hooks/use-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/lib/hooks/use-settings.ts -------------------------------------------------------------------------------- /pipes/notion/src/lib/notion/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/lib/notion/client.ts -------------------------------------------------------------------------------- /pipes/notion/src/lib/notion/notion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/lib/notion/notion.ts -------------------------------------------------------------------------------- /pipes/notion/src/lib/notion/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/lib/notion/setup.ts -------------------------------------------------------------------------------- /pipes/notion/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/lib/types.ts -------------------------------------------------------------------------------- /pipes/notion/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/src/lib/utils.ts -------------------------------------------------------------------------------- /pipes/notion/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/notion/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/notion/tsconfig.json -------------------------------------------------------------------------------- /pipes/obsidian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/.gitignore -------------------------------------------------------------------------------- /pipes/obsidian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/README.md -------------------------------------------------------------------------------- /pipes/obsidian/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/bun.lockb -------------------------------------------------------------------------------- /pipes/obsidian/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/components.json -------------------------------------------------------------------------------- /pipes/obsidian/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/eslint.config.mjs -------------------------------------------------------------------------------- /pipes/obsidian/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/next.config.ts -------------------------------------------------------------------------------- /pipes/obsidian/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/package-lock.json -------------------------------------------------------------------------------- /pipes/obsidian/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/package.json -------------------------------------------------------------------------------- /pipes/obsidian/pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/pipe.json -------------------------------------------------------------------------------- /pipes/obsidian/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/obsidian/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/public/file.svg -------------------------------------------------------------------------------- /pipes/obsidian/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/public/globe.svg -------------------------------------------------------------------------------- /pipes/obsidian/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/public/next.svg -------------------------------------------------------------------------------- /pipes/obsidian/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/public/vercel.svg -------------------------------------------------------------------------------- /pipes/obsidian/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/public/window.svg -------------------------------------------------------------------------------- /pipes/obsidian/src/app/api/files/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/app/api/files/route.ts -------------------------------------------------------------------------------- /pipes/obsidian/src/app/api/log/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/app/api/log/route.ts -------------------------------------------------------------------------------- /pipes/obsidian/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/app/favicon.ico -------------------------------------------------------------------------------- /pipes/obsidian/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/app/globals.css -------------------------------------------------------------------------------- /pipes/obsidian/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/app/layout.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/app/page.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/markdown.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/button.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/card.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/input.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/label.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/select.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/components/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/components/video.tsx -------------------------------------------------------------------------------- /pipes/obsidian/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /pipes/obsidian/src/lib/actions/obsidian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/lib/actions/obsidian.ts -------------------------------------------------------------------------------- /pipes/obsidian/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/lib/types.ts -------------------------------------------------------------------------------- /pipes/obsidian/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/src/lib/utils.ts -------------------------------------------------------------------------------- /pipes/obsidian/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/obsidian/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/obsidian/tsconfig.json -------------------------------------------------------------------------------- /pipes/pipe-for-loom/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/.eslintrc.json -------------------------------------------------------------------------------- /pipes/pipe-for-loom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/.gitignore -------------------------------------------------------------------------------- /pipes/pipe-for-loom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/README.md -------------------------------------------------------------------------------- /pipes/pipe-for-loom/app/api/file/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/app/api/file/route.ts -------------------------------------------------------------------------------- /pipes/pipe-for-loom/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/app/favicon.ico -------------------------------------------------------------------------------- /pipes/pipe-for-loom/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/app/globals.css -------------------------------------------------------------------------------- /pipes/pipe-for-loom/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/app/layout.tsx -------------------------------------------------------------------------------- /pipes/pipe-for-loom/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/app/page.tsx -------------------------------------------------------------------------------- /pipes/pipe-for-loom/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/bun.lockb -------------------------------------------------------------------------------- /pipes/pipe-for-loom/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/components/header.tsx -------------------------------------------------------------------------------- /pipes/pipe-for-loom/components/pipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/components/pipe.tsx -------------------------------------------------------------------------------- /pipes/pipe-for-loom/components/share-on-socials.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipes/pipe-for-loom/components/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/components/toaster.tsx -------------------------------------------------------------------------------- /pipes/pipe-for-loom/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/components/ui/badge.tsx -------------------------------------------------------------------------------- /pipes/pipe-for-loom/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/components/ui/input.tsx -------------------------------------------------------------------------------- /pipes/pipe-for-loom/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/components/ui/toast.tsx -------------------------------------------------------------------------------- /pipes/pipe-for-loom/lib/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/lib/use-toast.ts -------------------------------------------------------------------------------- /pipes/pipe-for-loom/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/lib/utils.ts -------------------------------------------------------------------------------- /pipes/pipe-for-loom/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/next.config.mjs -------------------------------------------------------------------------------- /pipes/pipe-for-loom/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/package-lock.json -------------------------------------------------------------------------------- /pipes/pipe-for-loom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/package.json -------------------------------------------------------------------------------- /pipes/pipe-for-loom/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/pipe-for-loom/public/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/public/128x128.png -------------------------------------------------------------------------------- /pipes/pipe-for-loom/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/pipe-for-loom/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-for-loom/tsconfig.json -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/.eslintrc.json -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/.gitignore -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/README.md -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/app/favicon.ico -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/app/globals.css -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/app/layout.tsx -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/app/page.tsx -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/bun.lockb -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/next.config.mjs -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/package-lock.json -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/package.json -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/pipe-simple-nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/pipe-simple-nextjs/tsconfig.json -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals"] 3 | } 4 | -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/.gitignore -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/README.md -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/app/favicon.ico -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/app/globals.css -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/app/layout.tsx -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/app/page.tsx -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/bun.lockb -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/components.json -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/components/pipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/components/pipe.tsx -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/lib/types.ts -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/lib/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/lib/use-toast.ts -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/lib/utils.ts -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/next.config.mjs -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/package-lock.json -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/package.json -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/pipe.json -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/public/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/public/128x128.png -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/reddit-auto-posts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/reddit-auto-posts/tsconfig.json -------------------------------------------------------------------------------- /pipes/rewind/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/.gitignore -------------------------------------------------------------------------------- /pipes/rewind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/README.md -------------------------------------------------------------------------------- /pipes/rewind/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/bun.lockb -------------------------------------------------------------------------------- /pipes/rewind/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/components.json -------------------------------------------------------------------------------- /pipes/rewind/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/eslint.config.mjs -------------------------------------------------------------------------------- /pipes/rewind/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/next.config.ts -------------------------------------------------------------------------------- /pipes/rewind/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/package.json -------------------------------------------------------------------------------- /pipes/rewind/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/rewind/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/public/file.svg -------------------------------------------------------------------------------- /pipes/rewind/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/public/globe.svg -------------------------------------------------------------------------------- /pipes/rewind/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/public/next.svg -------------------------------------------------------------------------------- /pipes/rewind/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/public/vercel.svg -------------------------------------------------------------------------------- /pipes/rewind/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/public/window.svg -------------------------------------------------------------------------------- /pipes/rewind/src/app/api/settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/app/api/settings/route.ts -------------------------------------------------------------------------------- /pipes/rewind/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/app/favicon.ico -------------------------------------------------------------------------------- /pipes/rewind/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/app/globals.css -------------------------------------------------------------------------------- /pipes/rewind/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/app/layout.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/app/page.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/app/search/page.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/image-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/image-card.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/markdown.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/search-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/search-bar.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/spinner.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/button.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/card.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/input.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/label.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/select.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/components/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/components/video.tsx -------------------------------------------------------------------------------- /pipes/rewind/src/lib/keyword-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/lib/keyword-parser.ts -------------------------------------------------------------------------------- /pipes/rewind/src/lib/raw_sql_queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/lib/raw_sql_queries.ts -------------------------------------------------------------------------------- /pipes/rewind/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/lib/types.ts -------------------------------------------------------------------------------- /pipes/rewind/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/src/lib/utils.ts -------------------------------------------------------------------------------- /pipes/rewind/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/rewind/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/rewind/tsconfig.json -------------------------------------------------------------------------------- /pipes/screen-avatar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/.gitignore -------------------------------------------------------------------------------- /pipes/screen-avatar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/README.md -------------------------------------------------------------------------------- /pipes/screen-avatar/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/bun.lockb -------------------------------------------------------------------------------- /pipes/screen-avatar/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/components.json -------------------------------------------------------------------------------- /pipes/screen-avatar/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/eslint.config.mjs -------------------------------------------------------------------------------- /pipes/screen-avatar/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/next.config.ts -------------------------------------------------------------------------------- /pipes/screen-avatar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/package-lock.json -------------------------------------------------------------------------------- /pipes/screen-avatar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/package.json -------------------------------------------------------------------------------- /pipes/screen-avatar/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/screen-avatar/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/public/file.svg -------------------------------------------------------------------------------- /pipes/screen-avatar/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/public/globe.svg -------------------------------------------------------------------------------- /pipes/screen-avatar/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/public/next.svg -------------------------------------------------------------------------------- /pipes/screen-avatar/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/public/vercel.svg -------------------------------------------------------------------------------- /pipes/screen-avatar/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/public/window.svg -------------------------------------------------------------------------------- /pipes/screen-avatar/raw_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/raw_response.json -------------------------------------------------------------------------------- /pipes/screen-avatar/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/src/app/favicon.ico -------------------------------------------------------------------------------- /pipes/screen-avatar/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/src/app/globals.css -------------------------------------------------------------------------------- /pipes/screen-avatar/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/src/app/layout.tsx -------------------------------------------------------------------------------- /pipes/screen-avatar/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/src/app/page.tsx -------------------------------------------------------------------------------- /pipes/screen-avatar/src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/src/env.mjs -------------------------------------------------------------------------------- /pipes/screen-avatar/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/src/lib/constants.ts -------------------------------------------------------------------------------- /pipes/screen-avatar/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/src/lib/types.ts -------------------------------------------------------------------------------- /pipes/screen-avatar/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/src/lib/utils.ts -------------------------------------------------------------------------------- /pipes/screen-avatar/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/screen-avatar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/screen-avatar/tsconfig.json -------------------------------------------------------------------------------- /pipes/search/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/.gitignore -------------------------------------------------------------------------------- /pipes/search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/README.md -------------------------------------------------------------------------------- /pipes/search/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/bun.lockb -------------------------------------------------------------------------------- /pipes/search/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/components.json -------------------------------------------------------------------------------- /pipes/search/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/eslint.config.mjs -------------------------------------------------------------------------------- /pipes/search/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/next.config.ts -------------------------------------------------------------------------------- /pipes/search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/package.json -------------------------------------------------------------------------------- /pipes/search/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/postcss.config.mjs -------------------------------------------------------------------------------- /pipes/search/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/public/file.svg -------------------------------------------------------------------------------- /pipes/search/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/public/globe.svg -------------------------------------------------------------------------------- /pipes/search/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/public/next.svg -------------------------------------------------------------------------------- /pipes/search/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/public/vercel.svg -------------------------------------------------------------------------------- /pipes/search/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/public/window.svg -------------------------------------------------------------------------------- /pipes/search/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/app/favicon.ico -------------------------------------------------------------------------------- /pipes/search/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/app/globals.css -------------------------------------------------------------------------------- /pipes/search/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/app/layout.tsx -------------------------------------------------------------------------------- /pipes/search/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/app/page.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/icons.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/markdown.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/spinner.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/button.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/card.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/input.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/label.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/select.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /pipes/search/src/components/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/components/video.tsx -------------------------------------------------------------------------------- /pipes/search/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/lib/types.ts -------------------------------------------------------------------------------- /pipes/search/src/lib/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/lib/use-toast.ts -------------------------------------------------------------------------------- /pipes/search/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/src/lib/utils.ts -------------------------------------------------------------------------------- /pipes/search/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/tailwind.config.ts -------------------------------------------------------------------------------- /pipes/search/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/pipes/search/tsconfig.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /screenpipe-app-tauri/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /screenpipe-app-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/.gitignore -------------------------------------------------------------------------------- /screenpipe-app-tauri/.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/.mocharc.js -------------------------------------------------------------------------------- /screenpipe-app-tauri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/README.md -------------------------------------------------------------------------------- /screenpipe-app-tauri/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/app/favicon.ico -------------------------------------------------------------------------------- /screenpipe-app-tauri/app/global-error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/app/global-error.jsx -------------------------------------------------------------------------------- /screenpipe-app-tauri/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/app/globals.css -------------------------------------------------------------------------------- /screenpipe-app-tauri/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/app/layout.tsx -------------------------------------------------------------------------------- /screenpipe-app-tauri/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/app/not-found.tsx -------------------------------------------------------------------------------- /screenpipe-app-tauri/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/app/page.tsx -------------------------------------------------------------------------------- /screenpipe-app-tauri/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/app/providers.tsx -------------------------------------------------------------------------------- /screenpipe-app-tauri/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/bun.lockb -------------------------------------------------------------------------------- /screenpipe-app-tauri/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/components.json -------------------------------------------------------------------------------- /screenpipe-app-tauri/e2e/record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/e2e/record.js -------------------------------------------------------------------------------- /screenpipe-app-tauri/e2e/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/e2e/utils.js -------------------------------------------------------------------------------- /screenpipe-app-tauri/e2e/videos/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenpipe-app-tauri/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/lib/api/index.ts -------------------------------------------------------------------------------- /screenpipe-app-tauri/lib/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/lib/language.ts -------------------------------------------------------------------------------- /screenpipe-app-tauri/lib/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/lib/shortcuts.ts -------------------------------------------------------------------------------- /screenpipe-app-tauri/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/lib/utils.ts -------------------------------------------------------------------------------- /screenpipe-app-tauri/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/next.config.mjs -------------------------------------------------------------------------------- /screenpipe-app-tauri/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/package-lock.json -------------------------------------------------------------------------------- /screenpipe-app-tauri/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/package.json -------------------------------------------------------------------------------- /screenpipe-app-tauri/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/postcss.config.mjs -------------------------------------------------------------------------------- /screenpipe-app-tauri/public/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/public/128x128.png -------------------------------------------------------------------------------- /screenpipe-app-tauri/public/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/public/CHANGELOG.md -------------------------------------------------------------------------------- /screenpipe-app-tauri/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/public/next.svg -------------------------------------------------------------------------------- /screenpipe-app-tauri/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/public/vercel.svg -------------------------------------------------------------------------------- /screenpipe-app-tauri/scripts/pre_build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/scripts/pre_build.js -------------------------------------------------------------------------------- /screenpipe-app-tauri/src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/src-tauri/.gitignore -------------------------------------------------------------------------------- /screenpipe-app-tauri/src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /screenpipe-app-tauri/src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /screenpipe-app-tauri/src-tauri/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/src-tauri/Info.plist -------------------------------------------------------------------------------- /screenpipe-app-tauri/src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/src-tauri/build.rs -------------------------------------------------------------------------------- /screenpipe-app-tauri/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/tailwind.config.ts -------------------------------------------------------------------------------- /screenpipe-app-tauri/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/tsconfig.json -------------------------------------------------------------------------------- /screenpipe-app-tauri/wdio.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-app-tauri/wdio.conf.js -------------------------------------------------------------------------------- /screenpipe-audio/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/Cargo.toml -------------------------------------------------------------------------------- /screenpipe-audio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/README.md -------------------------------------------------------------------------------- /screenpipe-audio/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/build.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/audio_manager/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/audio_manager/mod.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/core/device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/core/device.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/core/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/core/engine.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/core/mod.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/core/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/core/stream.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/device/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod device_manager; 2 | -------------------------------------------------------------------------------- /screenpipe-audio/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/lib.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/segmentation/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod segmentation_manager; 2 | -------------------------------------------------------------------------------- /screenpipe-audio/src/speaker/embedding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/speaker/embedding.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/speaker/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/speaker/mod.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/speaker/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/speaker/models.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/speaker/segment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/speaker/segment.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/transcription/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/transcription/mod.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/transcription/stt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/transcription/stt.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/utils/audio/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/utils/audio/mod.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/utils/ffmpeg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/utils/ffmpeg.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/utils/mod.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/vad/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/vad/mod.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/vad/silero.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/vad/silero.rs -------------------------------------------------------------------------------- /screenpipe-audio/src/vad/webrtc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/src/vad/webrtc.rs -------------------------------------------------------------------------------- /screenpipe-audio/test_data/Arifi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/Arifi.wav -------------------------------------------------------------------------------- /screenpipe-audio/test_data/accuracy1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/accuracy1.wav -------------------------------------------------------------------------------- /screenpipe-audio/test_data/accuracy2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/accuracy2.wav -------------------------------------------------------------------------------- /screenpipe-audio/test_data/accuracy3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/accuracy3.wav -------------------------------------------------------------------------------- /screenpipe-audio/test_data/accuracy4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/accuracy4.mp4 -------------------------------------------------------------------------------- /screenpipe-audio/test_data/accuracy4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/accuracy4.wav -------------------------------------------------------------------------------- /screenpipe-audio/test_data/accuracy5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/accuracy5.mp4 -------------------------------------------------------------------------------- /screenpipe-audio/test_data/accuracy5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/accuracy5.wav -------------------------------------------------------------------------------- /screenpipe-audio/test_data/selah.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/selah.mp3 -------------------------------------------------------------------------------- /screenpipe-audio/test_data/selah.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/test_data/selah.mp4 -------------------------------------------------------------------------------- /screenpipe-audio/tests/accuracy_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/tests/accuracy_test.rs -------------------------------------------------------------------------------- /screenpipe-audio/tests/core_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/tests/core_tests.rs -------------------------------------------------------------------------------- /screenpipe-audio/tests/realtime_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-audio/tests/realtime_test.rs -------------------------------------------------------------------------------- /screenpipe-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/Cargo.toml -------------------------------------------------------------------------------- /screenpipe-core/examples/cron.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/examples/cron.rs -------------------------------------------------------------------------------- /screenpipe-core/examples/google.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/examples/google.rs -------------------------------------------------------------------------------- /screenpipe-core/examples/llama.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/examples/llama.rs -------------------------------------------------------------------------------- /screenpipe-core/examples/mistral.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/examples/mistral.rs -------------------------------------------------------------------------------- /screenpipe-core/examples/phi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/examples/phi.rs -------------------------------------------------------------------------------- /screenpipe-core/src/actions.rs: -------------------------------------------------------------------------------- 1 | pub use screenpipe_actions::run; 2 | -------------------------------------------------------------------------------- /screenpipe-core/src/embedding/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/embedding/mod.rs -------------------------------------------------------------------------------- /screenpipe-core/src/embedding/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/embedding/model.rs -------------------------------------------------------------------------------- /screenpipe-core/src/ffmpeg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/ffmpeg.rs -------------------------------------------------------------------------------- /screenpipe-core/src/google.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/google.rs -------------------------------------------------------------------------------- /screenpipe-core/src/language.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/language.rs -------------------------------------------------------------------------------- /screenpipe-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/lib.rs -------------------------------------------------------------------------------- /screenpipe-core/src/llama.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/llama.rs -------------------------------------------------------------------------------- /screenpipe-core/src/llm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/llm.rs -------------------------------------------------------------------------------- /screenpipe-core/src/mistral.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/mistral.rs -------------------------------------------------------------------------------- /screenpipe-core/src/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/network.rs -------------------------------------------------------------------------------- /screenpipe-core/src/operator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/operator/LICENSE -------------------------------------------------------------------------------- /screenpipe-core/src/operator/element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/operator/element.rs -------------------------------------------------------------------------------- /screenpipe-core/src/operator/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/operator/errors.rs -------------------------------------------------------------------------------- /screenpipe-core/src/operator/locator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/operator/locator.rs -------------------------------------------------------------------------------- /screenpipe-core/src/operator/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/operator/mod.rs -------------------------------------------------------------------------------- /screenpipe-core/src/operator/selector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/operator/selector.rs -------------------------------------------------------------------------------- /screenpipe-core/src/operator/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/operator/tests.rs -------------------------------------------------------------------------------- /screenpipe-core/src/phi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/phi.rs -------------------------------------------------------------------------------- /screenpipe-core/src/pii_removal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/pii_removal.rs -------------------------------------------------------------------------------- /screenpipe-core/src/pipes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/src/pipes.rs -------------------------------------------------------------------------------- /screenpipe-core/tests/pipes_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-core/tests/pipes_test.rs -------------------------------------------------------------------------------- /screenpipe-db/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-db/Cargo.toml -------------------------------------------------------------------------------- /screenpipe-db/benches/db_benchmarks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-db/benches/db_benchmarks.rs -------------------------------------------------------------------------------- /screenpipe-db/benches/new_db_benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-db/benches/new_db_benchmark.rs -------------------------------------------------------------------------------- /screenpipe-db/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-db/src/db.rs -------------------------------------------------------------------------------- /screenpipe-db/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-db/src/lib.rs -------------------------------------------------------------------------------- /screenpipe-db/src/migration_worker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-db/src/migration_worker.rs -------------------------------------------------------------------------------- /screenpipe-db/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-db/src/types.rs -------------------------------------------------------------------------------- /screenpipe-db/src/video_db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-db/src/video_db.rs -------------------------------------------------------------------------------- /screenpipe-db/tests/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-db/tests/db.rs -------------------------------------------------------------------------------- /screenpipe-events/.gitignore: -------------------------------------------------------------------------------- 1 | .cargo/ -------------------------------------------------------------------------------- /screenpipe-events/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-events/Cargo.toml -------------------------------------------------------------------------------- /screenpipe-events/benches/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-events/benches/events.rs -------------------------------------------------------------------------------- /screenpipe-events/src/custom_events/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod meetings; 2 | -------------------------------------------------------------------------------- /screenpipe-events/src/events_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-events/src/events_manager.rs -------------------------------------------------------------------------------- /screenpipe-events/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-events/src/lib.rs -------------------------------------------------------------------------------- /screenpipe-integrations/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-integrations/Cargo.toml -------------------------------------------------------------------------------- /screenpipe-integrations/screenpipe-mcp/.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /screenpipe-integrations/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod unstructured_ocr; -------------------------------------------------------------------------------- /screenpipe-integrations/src/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenpipe-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/.gitignore -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/.editorconfig -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/.gitignore -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/.prettierrc -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/package-lock.json -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/package.json -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/src/handlers/voice-ws.ts: -------------------------------------------------------------------------------- 1 | // TODO: implement -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/src/index.ts -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/src/types.ts -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/src/utils/auth.ts -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/src/utils/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/src/utils/cors.ts -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/tsconfig.json -------------------------------------------------------------------------------- /screenpipe-js/ai-proxy/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/ai-proxy/wrangler.toml -------------------------------------------------------------------------------- /screenpipe-js/browser-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | 4 | -------------------------------------------------------------------------------- /screenpipe-js/browser-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/browser-sdk/README.md -------------------------------------------------------------------------------- /screenpipe-js/browser-sdk/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/browser-sdk/bun.lockb -------------------------------------------------------------------------------- /screenpipe-js/browser-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/browser-sdk/package.json -------------------------------------------------------------------------------- /screenpipe-js/browser-sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/browser-sdk/src/index.ts -------------------------------------------------------------------------------- /screenpipe-js/browser-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/browser-sdk/tsconfig.json -------------------------------------------------------------------------------- /screenpipe-js/browser-sdk/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/browser-sdk/tsup.config.ts -------------------------------------------------------------------------------- /screenpipe-js/cli/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/bun.lockb -------------------------------------------------------------------------------- /screenpipe-js/cli/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/dist/index.js -------------------------------------------------------------------------------- /screenpipe-js/cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/package-lock.json -------------------------------------------------------------------------------- /screenpipe-js/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/package.json -------------------------------------------------------------------------------- /screenpipe-js/cli/src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/src/commands/index.ts -------------------------------------------------------------------------------- /screenpipe-js/cli/src/commands/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/src/commands/logout.ts -------------------------------------------------------------------------------- /screenpipe-js/cli/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/src/constants.ts -------------------------------------------------------------------------------- /screenpipe-js/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/src/index.ts -------------------------------------------------------------------------------- /screenpipe-js/cli/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/src/types.ts -------------------------------------------------------------------------------- /screenpipe-js/cli/src/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/src/utils/colors.ts -------------------------------------------------------------------------------- /screenpipe-js/cli/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/tests/.gitignore -------------------------------------------------------------------------------- /screenpipe-js/cli/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/tests/README.md -------------------------------------------------------------------------------- /screenpipe-js/cli/tests/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/tests/bun.lockb -------------------------------------------------------------------------------- /screenpipe-js/cli/tests/index.ts: -------------------------------------------------------------------------------- 1 | console.log("Hello via Bun!"); -------------------------------------------------------------------------------- /screenpipe-js/cli/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/tests/package.json -------------------------------------------------------------------------------- /screenpipe-js/cli/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/tests/tsconfig.json -------------------------------------------------------------------------------- /screenpipe-js/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/cli/tsconfig.json -------------------------------------------------------------------------------- /screenpipe-js/common/Operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/common/Operator.ts -------------------------------------------------------------------------------- /screenpipe-js/common/PipesManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/common/PipesManager.ts -------------------------------------------------------------------------------- /screenpipe-js/common/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/common/analytics.ts -------------------------------------------------------------------------------- /screenpipe-js/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/common/types.ts -------------------------------------------------------------------------------- /screenpipe-js/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/common/utils.ts -------------------------------------------------------------------------------- /screenpipe-js/node-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | 4 | -------------------------------------------------------------------------------- /screenpipe-js/node-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/node-sdk/README.md -------------------------------------------------------------------------------- /screenpipe-js/node-sdk/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/node-sdk/bun.lockb -------------------------------------------------------------------------------- /screenpipe-js/node-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/node-sdk/package.json -------------------------------------------------------------------------------- /screenpipe-js/node-sdk/src/Task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/node-sdk/src/Task.ts -------------------------------------------------------------------------------- /screenpipe-js/node-sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/node-sdk/src/index.ts -------------------------------------------------------------------------------- /screenpipe-js/node-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/node-sdk/tsconfig.json -------------------------------------------------------------------------------- /screenpipe-js/node-sdk/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-js/node-sdk/tsup.config.ts -------------------------------------------------------------------------------- /screenpipe-server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/Cargo.toml -------------------------------------------------------------------------------- /screenpipe-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/README.md -------------------------------------------------------------------------------- /screenpipe-server/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/build.rs -------------------------------------------------------------------------------- /screenpipe-server/src/add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/add.rs -------------------------------------------------------------------------------- /screenpipe-server/src/auto_destruct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/auto_destruct.rs -------------------------------------------------------------------------------- /screenpipe-server/src/chunking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/chunking.rs -------------------------------------------------------------------------------- /screenpipe-server/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/cli.rs -------------------------------------------------------------------------------- /screenpipe-server/src/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/core.rs -------------------------------------------------------------------------------- /screenpipe-server/src/embedding/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod embedding_endpoint; 2 | -------------------------------------------------------------------------------- /screenpipe-server/src/filtering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/filtering.rs -------------------------------------------------------------------------------- /screenpipe-server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/lib.rs -------------------------------------------------------------------------------- /screenpipe-server/src/pipe_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/pipe_manager.rs -------------------------------------------------------------------------------- /screenpipe-server/src/resource_monitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/resource_monitor.rs -------------------------------------------------------------------------------- /screenpipe-server/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/server.rs -------------------------------------------------------------------------------- /screenpipe-server/src/text_embeds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/text_embeds.rs -------------------------------------------------------------------------------- /screenpipe-server/src/video.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/video.rs -------------------------------------------------------------------------------- /screenpipe-server/src/video_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/video_cache.rs -------------------------------------------------------------------------------- /screenpipe-server/src/video_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/src/video_utils.rs -------------------------------------------------------------------------------- /screenpipe-server/tests/chunking_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/tests/chunking_test.rs -------------------------------------------------------------------------------- /screenpipe-server/tests/endpoint_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/tests/endpoint_test.rs -------------------------------------------------------------------------------- /screenpipe-server/tests/index_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/tests/index_test.rs -------------------------------------------------------------------------------- /screenpipe-server/tests/tags_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-server/tests/tags_test.rs -------------------------------------------------------------------------------- /screenpipe-vision/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/Cargo.toml -------------------------------------------------------------------------------- /screenpipe-vision/bin/ui_monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/bin/ui_monitor -------------------------------------------------------------------------------- /screenpipe-vision/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/build.rs -------------------------------------------------------------------------------- /screenpipe-vision/examples/websocket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/examples/websocket.rs -------------------------------------------------------------------------------- /screenpipe-vision/src/apple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/src/apple.rs -------------------------------------------------------------------------------- /screenpipe-vision/src/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/src/core.rs -------------------------------------------------------------------------------- /screenpipe-vision/src/custom_ocr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/src/custom_ocr.rs -------------------------------------------------------------------------------- /screenpipe-vision/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/src/lib.rs -------------------------------------------------------------------------------- /screenpipe-vision/src/microsoft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/src/microsoft.rs -------------------------------------------------------------------------------- /screenpipe-vision/src/monitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/src/monitor.rs -------------------------------------------------------------------------------- /screenpipe-vision/src/tesseract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/src/tesseract.rs -------------------------------------------------------------------------------- /screenpipe-vision/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/src/utils.rs -------------------------------------------------------------------------------- /screenpipe-vision/tests/Claude_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/tests/Claude_prompt.png -------------------------------------------------------------------------------- /screenpipe-vision/tests/testing_OCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediar-ai/screenpipe/HEAD/screenpipe-vision/tests/testing_OCR.png --------------------------------------------------------------------------------