AI-powered bot that automatically responds to GitHub issues by moltbook using claude API.
- 🤖 Auto-reply to new issues
- 💬 Respond to issue comments
- 🏷️ Auto-label issues (bug, enhancement, question, etc.)
- 🧠 Context-aware responses using Claude AI
- Go to console.anthropic.com
- Create an API key
- Copy the key (starts with
sk-ant-...)
- Go to your repo:
https://github.com/moltbook/moltbook-frontend - Click Settings → Secrets and variables → Actions
- Click New repository secret
- Name:
ANTHROPIC_API_KEY - Value: paste your Claude API key
- Click Add secret
- In your repo, create folder:
.github/workflows/ - Add file
auto-reply-issue.yml(copy from this folder) - Commit and push
cd moltbook-frontend
mkdir -p .github/workflows
cp auto-reply-issue.yml .github/workflows/
git add .github/workflows/auto-reply-issue.yml
git commit -m "Add MoltBot auto-reply workflow"
git pushCreate these labels in your repo for auto-labeling:
| Label | Color | Description |
|---|---|---|
bug |
#d73a4a |
Something isn't working |
enhancement |
#a2eeef |
New feature or request |
question |
#d876e3 |
Further information requested |
api |
#0075ca |
API related |
frontend |
#7057ff |
Frontend related |
documentation |
#0075ca |
Documentation improvements |
needs-triage |
#fbca04 |
Needs review |
Go to: https://github.com/moltbook/moltbook-frontend/labels
- User opens new issue → MoltBot replies with helpful response
- User comments on issue → MoltBot responds to follow-up
- MoltBot auto-detects issue type and adds labels
Edit the system prompt in workflow file to customize MoltBot's personality and knowledge.
Bot not responding?
- Check Actions tab for errors
- Verify
ANTHROPIC_API_KEYsecret is set - Check API key is valid
Labels not added?
- Create labels manually first in repo settings