{"id":25763711,"url":"https://github.com/scott-the-programmer/discord-signal-notify","last_synced_at":"2025-09-14T22:11:38.648Z","repository":{"id":278699208,"uuid":"936424901","full_name":"scott-the-programmer/discord-signal-notify","owner":"scott-the-programmer","description":"A silly service that notifies a signal group chat when something happens on discord","archived":false,"fork":false,"pushed_at":"2025-03-30T05:57:57.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-30T06:25:03.318Z","etag":null,"topics":["discord-bot","signal"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/scott-the-programmer.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":"2025-02-21T04:08:44.000Z","updated_at":"2025-03-30T05:58:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"f36abc5e-bbf8-4b82-ba52-c2063aad69bb","html_url":"https://github.com/scott-the-programmer/discord-signal-notify","commit_stats":null,"previous_names":["scott-the-programmer/discord-signal-notify"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/scott-the-programmer/discord-signal-notify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scott-the-programmer%2Fdiscord-signal-notify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scott-the-programmer%2Fdiscord-signal-notify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scott-the-programmer%2Fdiscord-signal-notify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scott-the-programmer%2Fdiscord-signal-notify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scott-the-programmer","download_url":"https://codeload.github.com/scott-the-programmer/discord-signal-notify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scott-the-programmer%2Fdiscord-signal-notify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275175648,"owners_count":25418301,"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","status":"online","status_checked_at":"2025-09-14T02:00:10.474Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","signal"],"created_at":"2025-02-26T20:18:13.171Z","updated_at":"2025-09-14T22:11:38.639Z","avatar_url":"https://github.com/scott-the-programmer.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# discord-signal-notify\n\nA simple bot that sends Discord voice channel notifications to Signal. When someone hops into a voice channel, their friends get a message in [Signal](https://signal.org/) about it!\n\n![screenshot](./readme/screenshot.png)\n\nThis bot requires [signal-cli](https://github.com/AsamK/signal-cli) to be set up on your machine. This is currently a single-tenant solution - it'll only work with one Signal account and group. Maybe one day I'll make it fancier with [signald](https://signald.org/), but for now it does exactly what I need: gluing discord and signal together\n\n## Requirements\n\n- Node.js 20+\n- signal-cli\n- A Discord server (and enough privileges to install a bot)\n- A Signal account\n\n## Setting up Signal CLI\n\n1. Setup signal-cli and add your Signal account to the group you want to notify. See [signal-cli's documentation](https://github.com/AsamK/signal-cli) \n\n```bash\nexport VERSION=0.13.12 # replace this with the latest version\nwget https://github.com/AsamK/signal-cli/releases/download/v\"${VERSION}\"/signal-cli-\"${VERSION}\".tar.gz\nsudo tar xf signal-cli-\"${VERSION}\".tar.gz -C /opt\nsudo ln -sf /opt/signal-cli-\"${VERSION}\"/bin/signal-cli /usr/local/bin/\n```\n\n2. Obtain link code\n\n```console\n\u003e signal-cli link\nsgnl://linkdevice?...\n```\n\n3. Use QR code generator such as https://qr.io to generate `text` QR code from `sgnl://linkdevice?...`\n\n3. Scan QR code with your signal app to link your account to signal-cli\n\n4. Receive some messages and find your group id\n\n```console\n\u003e signal-cli -u YOUR_NUMBER receive\n...\n  Group info:\n    Id: 1234 \u003c--- this\n    Name: My Group\n    Revision: 1\n    Type: UPDATE\n...\n```\n\nRecord the group id and your phone number. You'll need them to configure the bot.\n\n## Discord\n\nThere is no shortage of guides that can help you setup a custom discord bot, but here is a quick rundown\n\n1. Go to https://discord.com/developers/applications and create a discord app\n2. Give the Guild Install \nScopes: `bot`\nPermissions: `Manage Messages`\n\n## Running the bot \n\n1. Create `.env` file with the following contents:\n\n```console\n# Bot Token\nDISCORD_TOKEN=YourDiscordToken\n\n# Signal Details\nSIGNAL_PHONE_NUMBER=+123yourphonenumber\nSIGNAL_GROUP_ID=your-signal\nSIGNAL_CLI_PATH=/path/to/signal-cli\n\n# Optional: Channel to ignore (won't send notifications when users join this channel)\n# IGNORED_CHANNEL_ID=1234567890123456789\n```\n\n2. Install dependencies and run the bot\n\n```console\nnpm i\n\nnpm build\n\nnpm start\n```\n\nand away you go!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscott-the-programmer%2Fdiscord-signal-notify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscott-the-programmer%2Fdiscord-signal-notify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscott-the-programmer%2Fdiscord-signal-notify/lists"}