询问你的Slack机器人开发团队发布了什么内容。
Gitmore (https://gitmore.io)
我开发的一个有用功能是:一个可以查询您 Git 历史的 Slack 机器人。
连接您的代码库,将机器人添加到 Slack。您可以询问:
- “上周发布了什么?”
- “谁在负责 API?”
- “哪些 PR 被卡住了?”
该机器人从 GitHub、GitLab 和 Bitbucket 的提交信息和 PR 描述中提取数据。答案会直接显示在 Slack 中,无需 GitHub 登录。
这对于需要可见性但不使用 GitHub 的非技术团队成员非常有帮助。
*安全性:*
仅支持 Webhook。我们存储元数据——提交信息、PR 描述、作者、时间戳。绝不存储源代码。
- 加密令牌(Fernet)
- Webhook 签名验证
- 支持双重身份验证(2FA)
查看原文
Gitmore (https://gitmore.io)<p>One feature I built that's been useful: a Slack bot that queries your Git history.<p>Connect your repos. Add the bot to Slack. Ask:
- "What shipped last week?"
- "Who's working on the API?"
- "Which PRs are stuck?"<p>The bot pulls from commit messages and PR descriptions across GitHub, GitLab, and Bitbucket. Answers show up in Slack – no GitHub login needed.<p>Helpful for non-technical team members who need visibility but don't use GitHub.<p>*Security:*<p>Webhooks only. We store metadata – commit messages, PR descriptions, authors, timestamps. Never source code.<p>- Encrypted tokens (Fernet)
- Webhook signature verification
- 2FA support