Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/pr-review/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @oh-my-worker/pr-review
# @damengrandom/pr-review

Reviews a GitHub pull request for **bugs, security, and performance** issues — reading the surrounding code from a local clone, so its judgement is grounded in real context, not just the diff.

Expand All @@ -16,7 +16,7 @@ omw-review https://github.com/acme/widgets/pull/42
## Install

```bash
npm install -g @oh-my-worker/pr-review
npm install -g @damengrandom/pr-review
```

You now have the `omw-review` command everywhere.
Expand Down Expand Up @@ -62,7 +62,7 @@ You get a ranked list of findings — each with **severity · category · `file:
## Programmatic use

```ts
import { reviewPullRequest, formatReview } from '@oh-my-worker/pr-review'
import { reviewPullRequest, formatReview } from '@damengrandom/pr-review'

const result = await reviewPullRequest('https://github.com/acme/widgets/pull/42')
console.log(formatReview(result))
Expand Down
2 changes: 1 addition & 1 deletion packages/pr-review/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@oh-my-worker/pr-review",
"name": "@damengrandom/pr-review",
"version": "0.2.0",
"description": "AI code-review CLI: reviews a GitHub pull request for bugs, security and performance, using a local clone for surrounding-code context.",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/pr-review/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Public library API — lets other code `import { reviewPullRequest } from '@oh-my-worker/pr-review'`.
// Public library API — lets other code `import { reviewPullRequest } from '@damengrandom/pr-review'`.
// The CLI (src/cli.ts) is a separate entry exposed via the package `bin`.
export { reviewPullRequest, prReviewAgent } from './pr-review.agent.js'
export { formatReview } from './review-formatter.js'
Expand Down
Loading