{"id":18914283,"url":"https://github.com/eliasstar/bacotell","last_synced_at":"2026-02-22T22:03:50.711Z","repository":{"id":172075636,"uuid":"640018195","full_name":"EliasStar/BacoTell","owner":"EliasStar","description":"Pluggable bot client and associated framework for Discord","archived":false,"fork":false,"pushed_at":"2025-04-18T18:03:55.000Z","size":506,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-02T11:00:01.852Z","etag":null,"topics":["discord-bot","discordgo","framework","go-plugin"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EliasStar.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,"zenodo":null},"funding":{"github":["EliasStar"]}},"created_at":"2023-05-12T19:20:16.000Z","updated_at":"2025-04-18T18:06:36.000Z","dependencies_parsed_at":"2025-04-25T16:17:33.203Z","dependency_job_id":null,"html_url":"https://github.com/EliasStar/BacoTell","commit_stats":null,"previous_names":["eliasstar/bacotell"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/EliasStar/BacoTell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliasStar%2FBacoTell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliasStar%2FBacoTell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliasStar%2FBacoTell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliasStar%2FBacoTell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EliasStar","download_url":"https://codeload.github.com/EliasStar/BacoTell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliasStar%2FBacoTell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29729078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T20:09:16.275Z","status":"ssl_error","status_checked_at":"2026-02-22T20:09:13.750Z","response_time":110,"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":["discord-bot","discordgo","framework","go-plugin"],"created_at":"2024-11-08T10:10:52.971Z","updated_at":"2026-02-22T22:03:50.677Z","avatar_url":"https://github.com/EliasStar.png","language":"Go","funding_links":["https://github.com/sponsors/EliasStar"],"categories":[],"sub_categories":[],"readme":"\u003cimg align=\"right\" width=\"256\" height=\"256\" src=\"icon.png\"\u003e\n\n# BacoTell\n\u003e Pluggable bot client and associated framework for Discord\n\n## Usage\nDownload the latest release from [GitHub Releases](https://github.com/EliasStar/BacoTell/releases/latest) for your platform. Then rename the executable and run the following command:\n``` sh\nbacotell -n \u003cbot_name\u003e -t \u003cbot_token\u003e -p \u003cpath_to_plugin_dir\u003e\n```\n\n\n## Developing Plugins\nTo use this bot framework, you must take the following steps. An example can be seen in `cmd/example_plugin/`.\n\n1. For each application command, message component and/or modal create a struct and implement the respective interface.\n2. Either register the implementations using the setters in `bacotell_plugin` or create a custom implementation of the `Plugin` interface.\n3. Either call `bacotell_plugin.Run()` or `bacotell_plugin.RunCustom()` depending on your choice in step 2. During development you can use `bacotell_plugin.Debug()` and `bacotell_plugin.DebugCustom()` respectively.\n\nThat's it!\nFor complete API documentation, see [GoDoc](https://pkg.go.dev/github.com/EliasStar/BacoTell).\n\n\n## Building\nDownload the latest `protoc` release from [GitHub Releases](https://github.com/protocolbuffers/protobuf/releases/latest) for your platform and add it to your `PATH`. More information can be found on [their GitHub repo](https://github.com/protocolbuffers/protobuf).\n\nThen install the compiler extensions for Go using the following commands. Make sure that your Go tools are also in your `PATH`.\n``` sh\ngo install google.golang.org/protobuf/cmd/protoc-gen-go@latest\ngo install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest\n```\n\nIf you made changes to the protobuf definitions, build them with the following command. After that you can adjust source code referencing the generated protobuf code.\n``` sh\nprotoc --go_out=. --go_opt=module=github.com/EliasStar/BacoTell --go-grpc_out=. --go-grpc_opt=module=github.com/EliasStar/BacoTell proto/*\n```\n\nTo compile the BacoTell executable, use this command:\n``` sh\ngo build ./cmd/bacotell/\n```\n\n\n## License\nBacoTell - Pluggable bot client and associated framework for Discord\u003cbr\u003e\nCopyright (C) 2023 Elias*\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\nany later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see \u003chttps://www.gnu.org/licenses/\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliasstar%2Fbacotell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feliasstar%2Fbacotell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliasstar%2Fbacotell/lists"}