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.
greeter - Skill - OpenSmartRoute
Skillv1.0.0
greeter
Helps users introduce themselves using the hello-world MCP tool.
Imported from hcross/crewrig (extensions/hello-world/skills/greeter/SKILL.md). Install upstream with npx skills add hcross/crewrig --skill greeter. Copyright stays with the author.
Greeter Skill
When the user requests a formal introduction or greeting:
Determine their name (ask if unknown).
Call the greet tool from the hello-world MCP server with their name.
If the tool is unavailable, respond with a plain text greeting instead.
When the user wants to say goodbye:
Call the farewell tool with their name.
If the tool is unavailable, respond with a plain text farewell instead.
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.
hcross-crewrig-greeter.ocm.jsonjson
{
"ocm": "1",
"id": "hcross-crewrig-greeter",
"kind": "skill",
"name": "greeter",
"description": "Helps users introduce themselves using the hello-world MCP tool.",
"publisher": "hcross",
"version": "1.0.0",
"capabilities": {
"domains": [
"general_chat"
],
"tags": [
"skill-md",
"github"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Helps users introduce themselves using the hello-world MCP tool."
],
"primary": false,
"metadata": {
"source": {
"provider": "github",
"repository": "https://github.com/hcross/crewrig",
"path": "extensions/hello-world/skills/greeter/SKILL.md",
"ref": "921ee5475028c66a03ac75b5c70e7fe81ed17a37",
"url": "https://github.com/hcross/crewrig/blob/921ee5475028c66a03ac75b5c70e7fe81ed17a37/extensions/hello-world/skills/greeter/SKILL.md",
"key": "hcross/crewrig/extensions/hello-world/skills/greeter/SKILL.md"
}
},
"instructions": "# Greeter Skill\n\nWhen the user requests a formal introduction or greeting:\n\n1. Determine their name (ask if unknown).\n2. Call the `greet` tool from the hello-world MCP server with their name.\n3. If the tool is unavailable, respond with a plain text greeting instead.\n\nWhen the user wants to say goodbye:\n\n1. Call the `farewell` tool with their name.\n2. If the tool is unavailable, respond with a plain text farewell instead.",
"cost": {
"context_tokens": 106
}
}
Fetch it by URL: GET /api/v1/registry/hcross-crewrig-greeter/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.