{"id":46422915,"url":"https://github.com/ltk-mxz/github-telegram-bot","last_synced_at":"2026-03-05T17:00:34.227Z","repository":{"id":329428441,"uuid":"993162548","full_name":"Ltk-Mxz/github-telegram-bot","owner":"Ltk-Mxz","description":"A Telegram bot to easily manage your GitHub repositories.","archived":false,"fork":false,"pushed_at":"2025-12-19T13:28:44.000Z","size":70,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-22T05:25:53.539Z","etag":null,"topics":["bot","telegram","telegrambot"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/Ltk-Mxz.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":null,"dco":null,"cla":null}},"created_at":"2025-05-30T10:18:11.000Z","updated_at":"2025-12-19T13:28:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Ltk-Mxz/github-telegram-bot","commit_stats":null,"previous_names":["ltk-mxz/github-telegram-bot"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Ltk-Mxz/github-telegram-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ltk-Mxz%2Fgithub-telegram-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ltk-Mxz%2Fgithub-telegram-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ltk-Mxz%2Fgithub-telegram-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ltk-Mxz%2Fgithub-telegram-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ltk-Mxz","download_url":"https://codeload.github.com/Ltk-Mxz/github-telegram-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ltk-Mxz%2Fgithub-telegram-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30137145,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T16:58:46.102Z","status":"ssl_error","status_checked_at":"2026-03-05T16:58:45.706Z","response_time":93,"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":["bot","telegram","telegrambot"],"created_at":"2026-03-05T17:00:29.055Z","updated_at":"2026-03-05T17:00:34.218Z","avatar_url":"https://github.com/Ltk-Mxz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Telegram Bot\n\nA Telegram bot to easily manage your GitHub repositories.\n\n## Installation\n\n```bash\ngit clone github.com/Ltk-Mxz/github-telegram-bot.git\ncd github-telegram-bot\nnpm install\ncp .env.example .env\n# Fill in your tokens in the .env file\n```\n\n## Usage\n\nStart the bot:\n\n```bash\nnpm start\n```\n\n## Available Commands\n\n- `/createrepo \u003cname\u003e \u003cpublic|private\u003e`  \n  Create a GitHub repository.\n\n- `/listrepos`  \n  List your repositories (pagination possible).\n\n- `/deleterepo \u003crepo\u003e`  \n  Delete a repository.\n\n- `/addcollab \u003crepo\u003e \u003cuser\u003e`  \n  Add a collaborator to a repository.\n\n- `/listcollab \u003crepo\u003e`  \n  List collaborators of a repository.\n\n- `/createissue \u003crepo\u003e | \u003ctitle\u003e | \u003cdescription\u003e`  \n  Create an issue in a repository.\n\n- `/listissues \u003crepo\u003e`  \n  List open issues in a repository (pagination possible).\n\n- `/repoinfo \u003crepo\u003e`  \n  Show detailed information about a repository.\n\n- `/changevisibility \u003crepo\u003e \u003cpublic|private\u003e`  \n  Change the visibility of a repository.\n\n- `/listbranches \u003crepo\u003e`  \n  List branches of a repository (pagination possible).\n\n- `/createbranch \u003crepo\u003e \u003cbranch\u003e \u003cfrom_branch\u003e`  \n  Create a branch from another branch.\n\n- `/lastcommits \u003crepo\u003e \u003cbranch\u003e [n]`  \n  Show the last commits of a branch.\n\n- `/setwebhook \u003crepo\u003e \u003curl\u003e`  \n  Add a webhook to a repository.\n\n- `/searchrepo \u003ckeyword\u003e`  \n  Search public repositories on GitHub.\n\n- `/searchmyrepo \u003ckeyword\u003e`  \n  Search your own repositories.\n\n## Examples\n\n```\n/createrepo myproject public\n/listrepos\n/deleterepo myproject\n/addcollab myproject githubuser\n/listcollab myproject\n/createissue myproject | Critical bug | There is a bug to fix\n/listissues myproject\n/repoinfo myproject\n/changevisibility myproject private\n/listbranches myproject\n/createbranch myproject dev main\n/lastcommits myproject main 5\n/setwebhook myproject https://myurl.com/webhook\n/searchrepo telegram\n/searchmyrepo bot\n```\n\n## Configuration\n\nCreate a `.env` file in the root directory with the following variables:\n\n```env\nTELEGRAM_BOT_TOKEN=your_telegram_bot_token\nGITHUB_TOKEN=your_github_token\n```\n\n## Requirements\n\n- Node.js (v14 or higher)\n- npm (Node Package Manager)\n- A GitHub account\n- A Telegram account\n- A bot created with BotFather on Telegram\n- A GitHub personal access token with the necessary permissions\n- A `.env` file with your tokens\n- A server to run the bot (optional, can be run locally)\n\n## License\n\nThis project is licensed under the MIT License\n\n## Contributing\n\nContributions are welcome! Please open an issue or submit a pull request.\n\n## Disclaimer\n\nThis bot is not affiliated with GitHub or Telegram. Use at your own risk. The author is not responsible for any issues that may arise from using this bot.\n\n## Security\n\n**Never share your `.env` file!**\n\n## Author\n\nThis bot was created by [Ltk-Mxz](https://github.com/Ltk-Mxz).\n\n## Contact\n\nFor any questions or issues, please open an issue on the GitHub repository or contact me on email \u003ca96.paul96@gmail.com\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fltk-mxz%2Fgithub-telegram-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fltk-mxz%2Fgithub-telegram-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fltk-mxz%2Fgithub-telegram-bot/lists"}