You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openhands/usage/use-cases/code-review.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,8 @@ The PR review workflow uses the OpenHands Software Agent SDK to analyze your cod
25
25
-`openhands-agent` is requested as a reviewer
26
26
27
27
2.**Analysis**: The agent receives the complete PR diff and uses two skills:
28
-
-[**`/codereview`**](https://github.com/OpenHands/skills/tree/main/skills/codereview) or [**`/codereview-roasted`**](https://github.com/OpenHands/skills/tree/main/skills/codereview-roasted): Analyzes code for quality, security, and best practices
29
-
-[**`/github-pr-review`**](https://github.com/OpenHands/skills/tree/main/skills/github-pr-review): Posts structured inline comments via the GitHub API
28
+
-[**`/codereview`**](https://github.com/OpenHands/extensions/tree/main/skills/codereview) or [**`/codereview-roasted`**](https://github.com/OpenHands/extensions/tree/main/skills/codereview-roasted): Analyzes code for quality, security, and best practices
29
+
-[**`/github-pr-review`**](https://github.com/OpenHands/extensions/tree/main/skills/github-pr-review): Posts structured inline comments via the GitHub API
30
30
31
31
3.**Output**: Review comments are posted directly on the PR with:
Copy file name to clipboardExpand all lines: overview/skills.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ OpenHands supports an **extended version** of the [AgentSkills standard](https:/
11
11
12
12
## Official Skill Registry
13
13
14
-
The official global skill registry is maintained at [github.com/OpenHands/skills](https://github.com/OpenHands/skills). This repository contains community-shared skills that can be used by all OpenHands agents. You can browse available skills, contribute your own, and learn from examples created by the community.
14
+
The official global skill registry is maintained at [github.com/OpenHands/extensions](https://github.com/OpenHands/extensions). This repository contains community-shared skills that can be used by all OpenHands agents. You can browse available skills, contribute your own, and learn from examples created by the community.
Copy file name to clipboardExpand all lines: overview/skills/public.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
---
2
2
title: Global Skills
3
-
description: Global skills are [keyword-triggered skills](/overview/skills/keyword) that apply to all OpenHands users. The official global skill registry is maintained at [github.com/OpenHands/skills](https://github.com/OpenHands/skills).
3
+
description: Global skills are [keyword-triggered skills](/overview/skills/keyword) that apply to all OpenHands users. The official global skill registry is maintained at [github.com/OpenHands/extensions](https://github.com/OpenHands/extensions).
4
4
---
5
5
6
6
## Global Skill Registry
7
7
8
-
The official global skill registry is hosted at [github.com/OpenHands/skills](https://github.com/OpenHands/skills). This repository contains community-shared skills that can be used by all OpenHands users.
8
+
The official global skill registry is hosted at [github.com/OpenHands/extensions](https://github.com/OpenHands/extensions). This repository contains community-shared skills that can be used by all OpenHands users.
9
9
10
10
## Contributing a Global Skill
11
11
12
12
You can create global skills and share with the community by opening a pull request to the official skill registry.
13
13
14
-
See the [OpenHands Skill Registry](https://github.com/OpenHands/skills) for specific instructions on how to contribute a global skill.
14
+
See the [OpenHands Skill Registry](https://github.com/OpenHands/extensions) for specific instructions on how to contribute a global skill.
15
15
16
16
### Global Skills Best Practices
17
17
@@ -35,7 +35,7 @@ Before creating a global skill, consider:
35
35
#### 2. Create File
36
36
37
37
Create a new Markdown file with a descriptive name in the official skill registry:
Copy file name to clipboardExpand all lines: sdk/guides/github-workflows/pr-review.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ Instead of forking the `agent_script.py`, you can customize the code review beha
45
45
46
46
### How It Works
47
47
48
-
The PR review agent uses skills from the [OpenHands/skills](https://github.com/OpenHands/skills) repository by default. When you add a `.openhands/skills/code-review.md` file to your repository, it **overrides** the default skill with your custom guidelines.
48
+
The PR review agent uses skills from the [OpenHands/extensions](https://github.com/OpenHands/extensions) repository by default. When you add a `.openhands/skills/code-review.md` file to your repository, it **overrides** the default skill with your custom guidelines.
Copy file name to clipboardExpand all lines: sdk/guides/skill.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -201,7 +201,7 @@ agent_context = AgentContext(
201
201
# user_message_suffix is appended to each user message
202
202
user_message_suffix="The first character of your response should be 'I'",
203
203
# You can also enable automatic load skills from
204
-
# public registry at https://github.com/OpenHands/skills
204
+
# public registry at https://github.com/OpenHands/extensions
205
205
load_public_skills=True,
206
206
)
207
207
@@ -588,7 +588,7 @@ When the user says "encrypt", the skill is triggered and the agent can use the p
588
588
589
589
## Loading Public Skills
590
590
591
-
OpenHands maintains a [public skills repository](https://github.com/OpenHands/skills) with community-contributed skills. You can automatically load these skills without waiting for SDK updates.
591
+
OpenHands maintains a [public skills repository](https://github.com/OpenHands/extensions) with community-contributed skills. You can automatically load these skills without waiting for SDK updates.
592
592
593
593
### Automatic Loading via AgentContext
594
594
@@ -655,7 +655,7 @@ The `load_public_skills()` function uses git-based caching for efficiency:
655
655
This approach is more efficient than fetching individual skill files via HTTP and ensures you always have access to the latest community skills.
656
656
657
657
<Note>
658
-
Explore available public skills at [github.com/OpenHands/skills](https://github.com/OpenHands/skills). These skills cover various domains like GitHub integration, Python development, debugging, and more.
658
+
Explore available public skills at [github.com/OpenHands/extensions](https://github.com/OpenHands/extensions). These skills cover various domains like GitHub integration, Python development, debugging, and more.
0 commit comments