{"id":47859451,"url":"https://github.com/silverbucket/inbox-rs","last_synced_at":"2026-04-18T23:00:56.651Z","repository":{"id":344280901,"uuid":"1181181300","full_name":"silverbucket/inbox-rs","owner":"silverbucket","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-13T21:07:42.000Z","size":6252,"stargazers_count":1,"open_issues_count":8,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-13T23:02:18.758Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://inbox.5apps.com","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/silverbucket.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-13T20:51:18.000Z","updated_at":"2026-04-13T21:07:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"9bf8a1e7-a366-472b-a10d-a1d4ac299094","html_url":"https://github.com/silverbucket/inbox-rs","commit_stats":null,"previous_names":["silverbucket/inbox-rs"],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/silverbucket/inbox-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silverbucket%2Finbox-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silverbucket%2Finbox-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silverbucket%2Finbox-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silverbucket%2Finbox-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/silverbucket","download_url":"https://codeload.github.com/silverbucket/inbox-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silverbucket%2Finbox-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31987884,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"ssl_error","status_checked_at":"2026-04-18T20:23:29.375Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-03T23:17:56.472Z","updated_at":"2026-04-18T23:00:56.593Z","avatar_url":"https://github.com/silverbucket.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Inbox RS\n\nA universal inbox for saving URLs, notes, images, emails, and audio — backed by [remoteStorage](https://remotestorage.io). Your data stays on your own storage server, not someone else's cloud.\n\n## What it does\n\n**Web App** — A Svelte app that displays all your saved items in a card grid. Connect to any remoteStorage-compatible server to view, browse, and manage your inbox items. Click any card to view full details, edit, convert to a todo, or delete. The header also links to a Plugins page with downloadable browser and Thunderbird builds.\n\n**Browser Extension** — A Chrome/Firefox extension for quickly saving things while browsing:\n\n- **Save Page** — Saves the current page as a bookmark with title, og:image preview, favicon, and site name. For tweets, it captures the full tweet text and any attached images.\n- **Quick Note** — Jot down a note with no page context needed.\n- **Right-click: Save Link** — Save any link to your inbox.\n- **Right-click: Save Image** — Downloads and saves the actual image binary (not just the URL).\n- **Right-click: Save Selection** — Saves highlighted text as a note with a link back to the source page.\n\n**Thunderbird Extension** — A Thunderbird MailExtension (128+) for saving emails to your inbox:\n\n- Opens from the message toolbar when reading an email.\n- Pre-fills subject, sender, and body from the current email.\n- Includes an optional notes field for your own annotations.\n- Saves a `mid:` URI link back to the original email in your mail client.\n\n## Architecture\n\n```\npackages/\n  rs-module/    # Shared remoteStorage data module (types, schemas, CRUD)\n  web/          # Svelte web app (card grid, view modal, todos)\n  extension/    # Chrome MV3 + Firefox WebExtension (popup, context menus, content script)\n  thunderbird/  # Thunderbird MailExtension (message toolbar popup, email saving)\n```\n\nAll four packages share the `@inbox-rs/rs-module` for consistent data types and storage layout.\n\n### Storage layout\n\n```\n/inbox/items/{uuid}          # JSON metadata for each item\n/inbox/files/{uuid}.{ext}    # Binary files (images, audio)\n```\n\n### Item types\n\n| Type | Description |\n|------|-------------|\n| `bookmark` | URL with title, description, og:image, favicon. Optionally includes `body` (embedded content like tweet text) and `filePath` (downloaded image). |\n| `note` | Freeform text with title and body. |\n| `image` | Downloaded image binary with metadata and optional source URL. |\n| `audio` | Audio recording with duration. |\n| `document` | Uploaded file with metadata. |\n| `code-snippet` | Code with syntax highlighting and language tag. |\n| `email` | Email with subject, body, sender, optional notes, and `mid:` URI link. |\n| `todo` | Task with title, completion status, and optional notes. Any item can be converted to a todo. |\n\n## Quick start\n\nSee [DEVELOPMENT.md](DEVELOPMENT.md) for full setup instructions.\n\n```bash\nnpm install\ndocker compose up -d          # Start local remoteStorage server\nnpm run dev -w packages/web   # Start web app on localhost:5173\nnpm run build                 # Build web app and package downloadable plugin artifacts into dist/\nnpm run build:extension       # Build browser extension only\nnpm run build:thunderbird     # Build Thunderbird extension only\n```\n\nAfter `npm run build`, the web app output in `packages/web/dist/` includes:\n\n- `downloads/inbox-rs-chromium-\u003cversion\u003e.zip`\n- `downloads/inbox-rs-firefox-\u003cversion\u003e.xpi`\n- `downloads/inbox-rs-thunderbird-\u003cversion\u003e.xpi`\n\nThat makes the built `dist/` folder self-contained for static hosting.\n\n## Versioning\n\nThe project currently uses the root `package.json` version as the release version for downloadable plugin artifacts. The packaging script reads that value and emits filenames like:\n\n- `inbox-rs-chromium-0.1.0.zip`\n- `inbox-rs-firefox-0.1.0.xpi`\n- `inbox-rs-thunderbird-0.1.0.xpi`\n\nIn practice, that means a release bump should start by updating the root `version` field, then rebuilding so the generated downloads and metadata pick up the new versioned filenames.\n\n## Tech stack\n\n- **Svelte 5** with runes (`$state`, `$derived`, `$effect`, `$props`)\n- **Vite 5** for both web app and extension builds\n- **remotestorage.js** for data sync + **remotestorage-module-shares** for Sharesome integration\n- **TypeScript** throughout\n- **Chrome Manifest V3** / Firefox WebExtension APIs / **Thunderbird Manifest V2**\n- **Armadietto** as the local dev remoteStorage server\n\n## License\n\nGPL-3.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilverbucket%2Finbox-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsilverbucket%2Finbox-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilverbucket%2Finbox-rs/lists"}