A tool that monitors Github repositories for merged PRs, generates music industry-focused summaries using OpenAI, and creates social media content.
- 🔍 Monitor repositories for merged PRs in the last 24 hours
- 🎵 Generate music industry-focused PR summaries using OpenAI
- 📱 Create engaging social media content for the music community
- 🤖 Automated testing with GitHub Actions
- 🎸 Specialized for music tech and rights management context
-
Clone the repository:
git clone https://github.com/sweetmantech/Recoup-Agent-Github.git cd Recoup-Agent-Github
-
Install dependencies:
npm install
-
Create a
.env
file based on.env.example
:GITHUB_TOKEN=your_github_token_here OPENAI_API_KEY=your_openai_api_key_here
-
Required API Keys:
- GitHub Token: Create at https://github.com/settings/tokens
- Required scopes:
repo
- Required scopes:
- OpenAI API Key: Get from https://platform.openai.com/api-keys
- GitHub Token: Create at https://github.com/settings/tokens
The project uses GitHub Actions to run tests automatically on pull requests. To set this up:
- Go to your GitHub repository settings
- Navigate to "Secrets and variables" > "Actions"
- Add the following secrets:
GITHUB_TOKEN
: Your GitHub personal access token with repo accessOPENAI_API_KEY
: Your OpenAI API key
Run tests locally:
npm test
The test suite will:
- Fetch recent merged PRs
- Generate music industry-focused summaries
- Create engaging social media content
const github = new GithubService();
const prs = await github.getMergedPullRequests("owner", "repo");
const openai = new OpenAIService();
const summary = await openai.generatePRSummary(title, description, changes);
const tweet = await openai.generateTweetText(summary);