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 - OpenSmartRoute
Skillv1.0.0
example
This is an example skill for AutoMate. Skills are loaded from `~/.automate/skills/` and injected into the agent's system prompt.
Imported from supastishn/AutoMate (skills/example/SKILL.md). Install upstream with npx skills add supastishn/AutoMate --skill example. Copyright stays with the author.
Example Skill
This is an example skill for AutoMate. Skills are loaded from ~/.automate/skills/ and injected into the agent's system prompt.
What this skill does
When the user asks for help with coding tasks, provide clear, well-structured code with comments explaining the approach.
Guidelines
Always explain your reasoning before writing code
Include error handling in code examples
Suggest tests when appropriate
Keep code concise but readable
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.
supastishn-automate-example.ocm.jsonjson
{
"ocm": "1",
"id": "supastishn-automate-example",
"kind": "skill",
"name": "example",
"description": "This is an example skill for AutoMate. Skills are loaded from `~/.automate/skills/` and injected into the agent's system prompt.",
"publisher": "supastishn",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"skill-md",
"github"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"This is an example skill for AutoMate. Skills are loaded from `~/.automate/skills/` and injected into the agent's system prompt."
],
"primary": false,
"metadata": {
"source": {
"provider": "github",
"repository": "https://github.com/supastishn/AutoMate",
"path": "skills/example/SKILL.md",
"ref": "7e197b49135590b0f78c8cd9cd570dfd6764afab",
"url": "https://github.com/supastishn/AutoMate/blob/7e197b49135590b0f78c8cd9cd570dfd6764afab/skills/example/SKILL.md",
"key": "supastishn/AutoMate/skills/example/SKILL.md"
}
},
"instructions": "# Example Skill\n\nThis is an example skill for AutoMate. Skills are loaded from `~/.automate/skills/` and injected into the agent's system prompt.\n\n## What this skill does\n\nWhen the user asks for help with coding tasks, provide clear, well-structured code with comments explaining the approach.\n\n## Guidelines\n\n- Always explain your reasoning before writing code\n- Include error handling in code examples\n- Suggest tests when appropriate\n- Keep code concise but readable",
"cost": {
"context_tokens": 117
}
}
Fetch it by URL: GET /api/v1/registry/supastishn-automate-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.