mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
- Created comprehensive GitHub Actions workflows for bot operations - Added RooCode Agent bot script with /roo command support - Implemented GitHubActionsService for workflow management - Added UI component for GitHub Actions bot configuration - Updated command registration and message types - Added configuration settings for GitHub Actions bot - Included localization strings for new features - Fixed all linting issues Features: - Issue triage and labeling - PR review capabilities - /roo command triggers (plan, approve, fix, review, triage, label) - Plan generation with approval workflow - Environment secrets configuration for models - Support for multiple AI providers (Anthropic, OpenAI, OpenRouter) Addresses #8202
19 lines
405 B
JSON
19 lines
405 B
JSON
{
|
|
"name": "roocode-agent-scripts",
|
|
"version": "1.0.0",
|
|
"description": "RooCode Agent GitHub Actions Bot",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "tsx roocode-agent.ts"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "^20.0.2",
|
|
"@anthropic-ai/sdk": "^0.37.0",
|
|
"openai": "^5.12.2",
|
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
"tsx": "^4.19.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0"
|
|
}
|
|
}
|