Roo-Code/.github/scripts/package.json
Roo Code 436d034d95 feat: Add enhanced GitHub Actions bot integration
- 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
2025-09-21 05:08:47 +00:00

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"
}
}