-
Notifications
You must be signed in to change notification settings - Fork 1
Feature: Skills and Prompts
The Skills & Prompts feature in the OSC Builders section lets you publish reusable AI skills, prompts, and runbooks to the platform. Once published, they can be shared with other teams or discovered via the OSC MCP server.
-
Skill — a Claude Code slash command (
.mdfile) that an AI agent can invoke - Prompt — a reusable natural language instruction or system prompt
- Runbook — a step-by-step operational guide intended for AI-assisted execution
Each contribution is stored as a public Gitea repository under your workspace's namespace and is versioned using semantic versioning tags.
- An OSC account (any plan)
- A Builders workspace (available to all contributors listed in the Creator section)
- Navigate to Builders in the OSC web console
- Click the Skills & Prompts tab
- Click Contribute
- Fill in the form:
- Name — a slug (lowercase alphanumeric and hyphens), unique per workspace
- Type — Skill, Prompt, or Runbook
- Description — a short description of what it does
- License — MIT, Apache 2.0, or CC-BY 4.0
- Content — the Markdown or YAML content of your skill or prompt
- Click Contribute to publish
After submission, a share URL is shown that links directly to the Gitea repository for the contribution. Copy it to share with others.
You can list skills published in your workspace:
list-published-skills
And fetch the content of a specific skill:
get-published-skill
name: "my-skill"
The shareUrl in the response links to the public Gitea repository. The cloneUrl can be used to clone the repository locally.
Choose the license that matches how you want others to use your contribution:
| License | Summary |
|---|---|
| MIT | Permissive — anyone can use, modify, and redistribute |
| Apache 2.0 | Permissive with patent grant |
| CC-BY 4.0 | Requires attribution — suitable for documentation and prompts |
After publishing, you can tag a specific version of your contribution using the deploy-manager API. Tags follow the semver convention (e.g. v1.0.0, v1.1.0). The Gitea repository for each contribution tracks full revision history.
- Creator — How to become a builder on OSC
- Feature: My Agent Tasks — Scheduling AI agent tasks that can use published skills
- Developer Guide: Overview — Building and publishing applications on OSC