Skip to content
Open
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
3 changes: 2 additions & 1 deletion openhands/usage/essential-guidelines/sdlc-integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ The Software Agent SDK provides composite GitHub Actions for common workflows:
- **[Automated PR Review](/openhands/usage/use-cases/code-review)** - Automatically review pull requests with inline comments
- **[SDK GitHub Workflows Guide](/sdk/guides/github-workflows/pr-review)** - Build custom GitHub workflows with the SDK

For example, to set up automated PR reviews, see the [Automated Code Review](/openhands/usage/use-cases/code-review) guide which uses the real `OpenHands/software-agent-sdk/.github/actions/pr-review` composite action.
For example, to set up automated PR reviews, see the [Automated Code Review](/openhands/usage/use-cases/code-review) guide which uses the real `OpenHands/extensions/plugins/pr-review` composite action.

### What You Can Automate

Expand Down Expand Up @@ -370,3 +370,4 @@ You can build custom event-triggered workflows using the Software Agent SDK. For
For more event-driven automation patterns, see:
- [SDK GitHub Workflows Guide](/sdk/guides/github-workflows/pr-review) - Build custom workflows triggered by GitHub events
- [GitHub Action Integration](/openhands/usage/run-openhands/github-action) - Use the OpenHands resolver for issue triage

9 changes: 5 additions & 4 deletions openhands/usage/use-cases/code-review.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Choose between two review styles:
runs-on: ubuntu-latest
steps:
- name: Run PR Review
uses: OpenHands/software-agent-sdk/.github/actions/pr-review@main
uses: OpenHands/extensions/plugins/pr-review@main
with:
llm-model: anthropic/claude-sonnet-4-5-20250929
review-style: standard
Expand Down Expand Up @@ -190,7 +190,7 @@ Customize the workflow by modifying the action inputs:

```yaml
- name: Run PR Review
uses: OpenHands/software-agent-sdk/.github/actions/pr-review@main
uses: OpenHands/extensions/plugins/pr-review@main
with:
# Change the LLM model
llm-model: anthropic/claude-sonnet-4-5-20250929
Expand Down Expand Up @@ -268,8 +268,9 @@ See real automated reviews in action on the OpenHands Software Agent SDK reposit

## Related Resources

- [PR Review Workflow Reference](https://github.com/OpenHands/software-agent-sdk/tree/main/examples/03_github_workflows/02_pr_review) - Full workflow example and agent script
- [Composite Action](https://github.com/OpenHands/software-agent-sdk/blob/main/.github/actions/pr-review/action.yml) - Reusable GitHub Action for PR reviews
- [PR Review Workflow Reference](https://github.com/OpenHands/extensions/tree/main/plugins/pr-review) - Full workflow example and agent script
- [Composite Action](https://github.com/OpenHands/extensions/blob/main/plugins/pr-review/action.yml) - Reusable GitHub Action for PR reviews
- [Software Agent SDK](/sdk/index) - Build your own AI-powered workflows
- [GitHub Integration](/openhands/usage/cloud/github-installation) - Set up GitHub integration for OpenHands Cloud
- [Skills Documentation](/overview/skills) - Learn more about OpenHands skills