mirror of
https://github.com/ruvnet/RuView
synced 2026-08-11 20:41:44 +00:00
407b46b206
Add ruvnet/midstream (AIMDS real-time inference) and ruvnet/sublinear-time-solver (sublinear optimization algorithms) as vendored dependencies under vendor/.
27 lines
550 B
Markdown
27 lines
550 B
Markdown
# pr-enhance
|
|
|
|
AI-powered pull request enhancements.
|
|
|
|
## Usage
|
|
```bash
|
|
npx claude-flow github pr-enhance [options]
|
|
```
|
|
|
|
## Options
|
|
- `--pr-number <n>` - Pull request number
|
|
- `--add-tests` - Add missing tests
|
|
- `--improve-docs` - Improve documentation
|
|
- `--check-security` - Security review
|
|
|
|
## Examples
|
|
```bash
|
|
# Enhance PR
|
|
npx claude-flow github pr-enhance --pr-number 123
|
|
|
|
# Add tests
|
|
npx claude-flow github pr-enhance --pr-number 123 --add-tests
|
|
|
|
# Full enhancement
|
|
npx claude-flow github pr-enhance --pr-number 123 --add-tests --improve-docs
|
|
```
|