Hi - I answer from the OpenSmartRoute documentation: routing, the API, plans and quotas, self-hosting. Ask away, or open a support ticket if you need a person.
Grounded in the docs - follow a source before acting on it.
Imported from jakubro/claudebox (etc/profile.sample/skills/example/SKILL.md). Install upstream with npx skills add jakubro/claudebox --skill example. Copyright stays with the author.
Example
Prints a greeting. This skill exists to demonstrate the skill file structure — frontmatter with name, description, and allowed tools, followed by instructions.
When invoked, run: echo "Hello from a custom skill!"
Use it
Copy one of these into your project. Installing also returns the manifest and these snippets.
# after Install: the listing is in your workspace's routing pool - a plan picks it for its slot
curl -s -X POST https://api.opensmartroute.ai/api/v1/route -H 'Authorization: Bearer $OSR_API_KEY' -H 'Content-Type: application/json' -d '{"text": "...", "plan": true}'
Manifest
An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.
jakubro-claudebox-example.ocm.jsonjson
{
"ocm": "1",
"id": "jakubro-claudebox-example",
"kind": "skill",
"name": "example",
"description": "Example skill showing the profile skill format.",
"publisher": "jakubro",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"skill-md",
"github"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Example skill showing the profile skill format."
],
"primary": false,
"metadata": {
"source": {
"provider": "github",
"repository": "https://github.com/jakubro/claudebox",
"path": "etc/profile.sample/skills/example/SKILL.md",
"ref": "4e75db2bd162f6e821885c35740ae79d9d34d333",
"url": "https://github.com/jakubro/claudebox/blob/4e75db2bd162f6e821885c35740ae79d9d34d333/etc/profile.sample/skills/example/SKILL.md",
"key": "jakubro/claudebox/etc/profile.sample/skills/example/SKILL.md"
},
"allowed_tools": [
"Bash"
]
},
"instructions": "# Example\n\nPrints a greeting. This skill exists to demonstrate the skill file structure — frontmatter with name, description, and allowed tools, followed by instructions.\n\nWhen invoked, run: `echo \"Hello from a custom skill!\"`",
"cost": {
"context_tokens": 56
}
}
Fetch it by URL: GET /api/v1/registry/jakubro-claudebox-example/manifest?version=1.0.0
Reviews
Star ratings from people who tried it. One review per account; edit yours any time.
No reviews yet. Install it, try it, and be the first to rate it.