{"id":23698565,"url":"https://github.com/Madh93/karakeepbot","last_synced_at":"2026-01-25T16:30:18.986Z","repository":{"id":270134435,"uuid":"909405159","full_name":"Madh93/hoarderbot","owner":"Madh93","description":"🔖 Telegram Bot for saving bookmarks to Hoarder","archived":false,"fork":false,"pushed_at":"2025-02-04T21:16:39.000Z","size":949,"stargazers_count":15,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-04T22:23:10.862Z","etag":null,"topics":["bookmarks","bot","go","golang","hoarder","self-hosted","telegram","telegram-bot"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Madh93.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-12-28T15:54:08.000Z","updated_at":"2025-02-04T19:40:42.000Z","dependencies_parsed_at":"2024-12-28T18:21:03.861Z","dependency_job_id":"85e850e4-0c93-4d1b-9d9e-a7a617b85a34","html_url":"https://github.com/Madh93/hoarderbot","commit_stats":null,"previous_names":["madh93/hoarderbot"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Madh93%2Fhoarderbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Madh93%2Fhoarderbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Madh93%2Fhoarderbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Madh93%2Fhoarderbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Madh93","download_url":"https://codeload.github.com/Madh93/hoarderbot/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239768928,"owners_count":19693763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bookmarks","bot","go","golang","hoarder","self-hosted","telegram","telegram-bot"],"created_at":"2024-12-30T07:17:39.049Z","updated_at":"2026-01-25T16:30:18.928Z","avatar_url":"https://github.com/Madh93.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Hoarderbot\n\n[![Latest release](https://img.shields.io/github/v/tag/Madh93/hoarderbot?label=Release)](https://github.com/Madh93/hoarderbot/releases)\n[![Go Version](https://img.shields.io/badge/Go-1.23-blue)](https://go.dev/doc/install)\n[![Go Reference](https://pkg.go.dev/badge/github.com/Madh93/hoarderbot.svg)](https://pkg.go.dev/github.com/Madh93/hoarderbot)\n[![License](https://img.shields.io/badge/License-MIT-brightgreen)](LICENSE)\n\n`Hoarderbot` is a simple [Telegram Bot](https://core.telegram.org/bots) written in [Go](https://go.dev/) that enables users to effortlessly save bookmarks to [Hoarder](https://hoarder.app), a self-hostable bookmark-everything app, directly through Telegram.\n\n![Hoarderbot Demo](./docs/gif/demo.gif)\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"#features\"\u003eFeatures\u003c/a\u003e •\n  \u003ca href=\"#requirements\"\u003eRequirements\u003c/a\u003e •\n  \u003ca href=\"#installation\"\u003eInstallation\u003c/a\u003e •\n  \u003ca href=\"#Configuration\"\u003eConfiguration\u003c/a\u003e •\n  \u003ca href=\"#contributing\"\u003eContributing\u003c/a\u003e •\n  \u003ca href=\"#license\"\u003eLicense\u003c/a\u003e\n\u003c/p\u003e\n\n## Features\n\n- 📄 Add **text** and **URL bookmarks** into your Hoarder instance (tested on [v0.20.0](https://github.com/hoarder-app/hoarder/releases/tag/v0.20.0)).\n- 🤖 Obtain **AI-generated tags** in **hashtag format** for easy searching on Telegram.\n- 🔒 Support **chat ID and thread ID allowlists**.\n- 🐳 **Production-ready Docker image** for easy **deployment**.\n\n## Requirements\n\n- A [Telegram bot token](https://core.telegram.org/bots/features#botfather) (you can get one by talking to [@BotFather](https://t.me/BotFather) on Telegram)\n- A valid API key from [Hoarder](https://docs.hoarder.app/screenshots#settings).\n\n## Installation\n\n### Docker\n\n#### Using `docker run`\n\nUse the `docker run` command to start `Hoarderbot`. Make sure to set the required environment variables:\n\n```sh\ndocker run --name hoarderbot \\\n  -e HOARDERBOT_TELEGRAM_TOKEN=your-telegram-bot-token \\\n  -e HOARDERBOT_HOARDER_TOKEN=your-hoarder-api-key \\\n  -e HOARDERBOT_HOARDER_URL=https://your-hoarder-instance.tld \\\n  ghcr.io/madh93/hoarderbot:latest\n```\n\n#### Using `docker compose`\n\nCreate a `docker-compose.yml` file with the following content:\n\n```yml\nservices:\n  hoarderbot:\n    image: ghcr.io/madh93/hoarderbot:latest\n    restart: unless-stopped\n    # volumes:\n    #   - ./custom.config.toml:/var/run/ko/config.default.toml # Optional: specify a custom configuration file instead of the default one\n    environment:\n      - HOARDERBOT_TELEGRAM_TOKEN=your-telegram-bot-token\n      - HOARDERBOT_HOARDER_TOKEN=your-hoarder-api-key\n      - HOARDERBOT_HOARDER_URL=https://your-hoarder-instance.tld\n```\n\nUse the `docker compose up` command to start `Hoarderbot`:\n\n```sh\ndocker compose up\n```\n\n### From releases\n\nDownload the latest binary from [the releases page](https://github.com/Madh93/hoarderbot/releases):\n\n```sh\ncurl -L https://github.com/Madh93/hoarderbot/releases/latest/download/hoarderbot_$(uname -s)_$(uname -m).tar.gz | tar -xz -O hoarderbot \u003e /usr/local/bin/hoarderbot\nchmod +x /usr/local/bin/hoarderbot\n```\n\n### From source\n\nIf you have Go installed:\n\n```sh\ngo install github.com/Madh93/hoarderbot@latest\n```\n\n## Configuration\n\n`Hoarderbot` comes with a [default configuration file](config.default.toml) that you can modify to suit your needs.\n\n### Loading a custom configuration file\n\nYou can load a different configuration file by using the `-config path/to/config/file` flag when starting the application:\n\n```sh\nhoarderbot -config custom.config.tml\n```\n\n### Overriding with environment variables\n\nAdditionally, you can override the configuration values using environment variables that begin with the prefix `HOARDERBOT_`. This allows you to customize your setup without needing to modify any configuration file:\n\n```sh\nHOARDERBOT_LOGGING_LEVEL=debug HOARDERBOT_TELEGRAM_ALLOWLIST=chat_id_1,chat_id_2 hoarderbot\n```\n\n## Contributing\n\nContributions are welcome! Please open an issue or submit a pull request for any bug fixes or enhancements.\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature-branch`).\n3. Commit your changes (`git commit -am 'Add new feature'`).\n4. Push to the branch (`git push origin feature-branch`).\n5. Open a Pull Request.\n\n## License\n\nThis project is licensed under the [MIT license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMadh93%2Fkarakeepbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMadh93%2Fkarakeepbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMadh93%2Fkarakeepbot/lists"}