feat(examples): add mixed marketplace skills example#2299
Closed
feat(examples): add mixed marketplace skills example#2299
Conversation
Add example demonstrating how to combine local and remote skills from different sources: - Local skills from a project directory (greeting-helper) - Remote skills from OpenHands/extensions repository The example includes: - marketplace.json defining local skills with remote dependencies - A local SKILL.md following the AgentSkills standard - Main script showing skill loading, merging, and agent usage - README documentation Co-authored-by: openhands <openhands@all-hands.dev>
Contributor
API breakage checks (Griffe)Result: Failed Log excerpt (first 1000 characters) |
Contributor
Agent server REST API breakage checks (OpenAPI)Result: Passed |
- Remove unnecessary f-string prefix (ruff) - Use getattr for trigger attributes to satisfy pyright type checking Co-authored-by: openhands <openhands@all-hands.dev>
4 tasks
Follow the standard plugin structure where skills are in a skills/ directory within the plugin root. Co-authored-by: openhands <openhands@all-hands.dev>
Contributor
Author
|
Closing to create a new PR with cleaner implementation that focuses on marketplace schema changes and skill installation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add an example demonstrating how to create a plugin that combines local and remote skills, showing how teams can maintain their own custom skills while also leveraging the public OpenHands skills repository.
Related PRs
Changes
New Example:
43_mixed_marketplace_skills/This example includes:
.plugin/marketplace.json- Plugin marketplace definition that includes:skills/directoryskills/greeting-helper/SKILL.md- A local skill following the AgentSkills standardmain.py- Main script demonstrating:load_skills_from_dir()load_public_skills()README.md- Documentation explaining the patternPlugin Structure
Use Case
This pattern is useful for:
Example Output (Dry Run)
Testing
Note on CI
The
check-examplesCI check will fail until the docs PR is merged. This is expected behavior.