{"id":40773982,"url":"https://github.com/dodopayments/dodo-discord-bot","last_synced_at":"2026-03-14T12:25:12.821Z","repository":{"id":318029986,"uuid":"1068474534","full_name":"dodopayments/dodo-discord-bot","owner":"dodopayments","description":"Dodo Discord bot that automates introductions for new members.","archived":false,"fork":false,"pushed_at":"2026-01-12T14:03:55.000Z","size":166,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-12T20:53:08.481Z","etag":null,"topics":["bot","discord","dodopayments"],"latest_commit_sha":null,"homepage":"https://discord.gg/bYqAp4ayYh","language":"TypeScript","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/dodopayments.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-10-02T12:47:46.000Z","updated_at":"2026-01-12T14:03:18.000Z","dependencies_parsed_at":"2025-10-04T17:29:34.678Z","dependency_job_id":"9c5730c6-5078-4013-9a2b-bce3252bdf8f","html_url":"https://github.com/dodopayments/dodo-discord-bot","commit_stats":null,"previous_names":["dodopayments/dodo-discord-bot"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/dodopayments/dodo-discord-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodopayments%2Fdodo-discord-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodopayments%2Fdodo-discord-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodopayments%2Fdodo-discord-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodopayments%2Fdodo-discord-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dodopayments","download_url":"https://codeload.github.com/dodopayments/dodo-discord-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodopayments%2Fdodo-discord-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28640144,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T18:04:35.752Z","status":"ssl_error","status_checked_at":"2026-01-21T18:03:55.054Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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","discord","dodopayments"],"created_at":"2026-01-21T19:02:17.574Z","updated_at":"2026-03-14T12:25:12.806Z","avatar_url":"https://github.com/dodopayments.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dodo Discord Bot\n\nA TypeScript Discord bot that automates introductions for new members. Users complete introduction and \"working on\" forms to earn the \"Dodo Builder\" role.\n\n## Features\n\n- Auto-sends introduction prompts to new members\n- Dual forms: introduction + work project sharing\n- Awards \"Dodo Builder\" role upon completion\n- Creates public threads for work discussions\n- Moderator tools: `/ping-intro` and `/clear-dm` commands\n\n## Quick Start\n\n### 1. Setup Discord Bot\n- Create bot in [Discord Developer Portal](https://discord.com/developers/applications)\n- Enable intents: Server Members, Message Content, Direct Messages\n- Ensure bot role is higher than \"Dodo Builder\" role\n\n### 2. Install \u0026 Configure\n```bash\ngit clone \u003crepository-url\u003e\ncd dodo-discord-bot\nnpm install\ncp .env.example .env\n# Edit .env with your Discord credentials\n```\n\n### 3. Run\n```bash\nnpm run dev    # Development\nnpm start      # Production\n```\n\n## Environment Variables\n\n| Variable | Description | Required |\n|----------|-------------|----------|\n| `DISCORD_TOKEN` | Bot token | ✅ |\n| `CLIENT_ID` | Bot client ID | ✅ |\n| `INTRO_CHANNEL_ID` | #introductions channel | ✅ |\n| `WORKING_ON_CHANNEL_ID` | #working-on channel | ✅ |\n| `MOD_ROLE_ID` | Moderator role ID | ✅ |\n| `DODO_BUILDER_ROLE_ID` | Builder role ID | ✅ |\n| `GUILD_ID` | Guild ID (optional) | ❌ |\n\n## Commands\n\n- `/ping-intro [user]` - Trigger intro flow (mods only)\n- `/clear-dm` - Clear bot DMs (only for the user who runs it)\n- `/move-message [message id]` - Move a message to the #get-help channel (mods only)\n- `!move-message` - Move a message to the #get-help channel (mods only, you will need to reply to the message you want to move)\n- `/bot-answer [message id]` - Answer a question in any text channel (mods only)\n- `!bot-answer` - Answer a question in any text channel (mods only, you will need to reply to the message you want to answer)\n\n## Docker\n\n```bash\ndocker build -t dodo-discord-bot .\ndocker run --env-file .env dodo-discord-bot\n```\n\n## Development\n\n```bash\nnpm run build    # Compile TypeScript\nnpm run dev      # Development with auto-reload\n```\n\n## Troubleshooting\n\n- **Bot not responding**: Check env vars and permissions\n- **DMs not sent**: Users need DMs enabled from server members\n- **Commands not working**: Verify bot permissions and role hierarchy\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodopayments%2Fdodo-discord-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdodopayments%2Fdodo-discord-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodopayments%2Fdodo-discord-bot/lists"}