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.
example-skill - Skill - OpenSmartRoute
Skillv1.0.0
example-skill
A template skill demonstrating the cj-skills format
Imported from CJNA/cj-skills (skills/example-skill/SKILL.md). Install upstream with npx skills add CJNA/cj-skills --skill example-skill. Copyright stays with the author.
Example Skill
This is a template skill that demonstrates how to structure a cj-skills skill. Use it as a starting point when creating your own skills.
When to Use
User asks for a greeting
User wants to see how skills work
Capabilities
Generates friendly greetings
Demonstrates the skill file format
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.
cjna-cj-skills-example-skill.ocm.jsonjson
{
"ocm": "1",
"id": "cjna-cj-skills-example-skill",
"kind": "skill",
"name": "example-skill",
"description": "A template skill demonstrating the cj-skills format",
"publisher": "CJNA",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"skill-md",
"github"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"A template skill demonstrating the cj-skills format"
],
"primary": false,
"metadata": {
"source": {
"provider": "github",
"repository": "https://github.com/CJNA/cj-skills",
"path": "skills/example-skill/SKILL.md",
"ref": "0ea865ee04108bbb3f6802d83272f10006709374",
"url": "https://github.com/CJNA/cj-skills/blob/0ea865ee04108bbb3f6802d83272f10006709374/skills/example-skill/SKILL.md",
"key": "CJNA/cj-skills/skills/example-skill/SKILL.md"
}
},
"instructions": "# Example Skill\n\nThis is a template skill that demonstrates how to structure a cj-skills skill. Use it as a starting point when creating your own skills.\n\n## When to Use\n\n- User asks for a greeting\n- User wants to see how skills work\n\n## Capabilities\n\n- Generates friendly greetings\n- Demonstrates the skill file format",
"cost": {
"context_tokens": 79
}
}
Fetch it by URL: GET /api/v1/registry/cjna-cj-skills-example-skill/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.