Feat/issue 50 skill market place#65
Merged
arjun-zosma merged 5 commits intozosmaai:mainfrom Apr 3, 2026
Merged
Conversation
- Added a new skills table to the database to support built-in, marketplace, and user-defined custom skills. - Created API endpoints for CRUD operations on skills, including fetching, creating, updating, and deleting skills. - Integrated skills management into the agent configuration, allowing agents to utilize skills dynamically at runtime. - Updated the frontend to display and manage skills through a new Skills page. - Implemented fallback metadata for skills when the database is unavailable. - Added migration scripts for creating and seeding the skills table with initial data.
…e skills from database
Shanvit7
previously approved these changes
Apr 2, 2026
apps/web/src/utils/query-keys.ts
Outdated
| ARTIFACT_CONTENT: "artifact-content", | ||
| FILES_TREE: "files-tree", | ||
| FILES_LIST: "files-list", | ||
| SKILLS: "skills", |
Contributor
There was a problem hiding this comment.
(nitpick): could have one skill as constant, if just that is passed affects all skill realted queries, if skill + id passed, then that speficif id gets invalidated
Shanvit7
approved these changes
Apr 3, 2026
| } | ||
|
|
||
| const SkillsPage = () => { | ||
| const { data: skills = [], isLoading } = useGetSkills() |
Contributor
There was a problem hiding this comment.
nitpick: for queries use isPending instead of isLoading as flag. Link: TanStack/query#6297 (comment)
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
Implements the skills marketplace feature (issue #50). Adds a database-backed skills system allowing built-in, marketplace, and custom skills to be managed and injected into agent sessions at runtime.
Added
skillstable with migrations and seed data for built-in skillsImplemented REST API endpoints for skills CRUD (
GET/POST/PUT/DELETE /api/skills)Added skill injection in the orchestrator session manager, with
OPENZOSMA_INJECT_ALL_SKILLSenv var for dev modeAdded skill file write/read endpoints in sandbox-server
Built frontend skills page with full CRUD UI (card list, form dialog, delete dialog)
Integrated A2A skill card support
Related issue
Closes #50
Checklist
[x]
pnpm run checkpasses[x]
pnpm run lintpasses[x] Tests added or updated (if applicable)
[x] Documentation updated (if applicable)