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.
chat - Skill - OpenSmartRoute
Skillv1.0.0
chat
Basic resumable multi-turn Q&A against the configured model (a minor convenience feature).
Imported from devitops-com/aiagent (src/aiagent/builtin_skills/chat/SKILL.md). Install upstream with npx skills add devitops-com/aiagent --skill chat. Copyright stays with the author.
Chat
A minimal conversational skill built on dspy.Predict + dspy.History. aiagent
is not a chat framework — this exists so aiagent chat works for quick Q&A, with
multi-turn history persisted per session so a conversation can be resumed
(aiagent chat --session <name>). History is optional, so aiagent run chat --text "..." also works single-shot. For anything substantive, use run /
optimize / eval.
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.
devitops-com-aiagent-chat.ocm.jsonjson
{
"ocm": "1",
"id": "devitops-com-aiagent-chat",
"kind": "skill",
"name": "chat",
"description": "Basic resumable multi-turn Q&A against the configured model (a minor convenience feature).",
"publisher": "devitops-com",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"skill-md",
"github"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Basic resumable multi-turn Q&A against the configured model (a minor convenience feature)."
],
"primary": false,
"metadata": {
"source": {
"provider": "github",
"repository": "https://github.com/devitops-com/aiagent",
"path": "src/aiagent/builtin_skills/chat/SKILL.md",
"ref": "2fa9e9f3629e09b2493a03e1214c7d9896f131e3",
"url": "https://github.com/devitops-com/aiagent/blob/2fa9e9f3629e09b2493a03e1214c7d9896f131e3/src/aiagent/builtin_skills/chat/SKILL.md",
"key": "devitops-com/aiagent/src/aiagent/builtin_skills/chat/SKILL.md"
}
},
"instructions": "# Chat\n\nA minimal conversational skill built on `dspy.Predict` + `dspy.History`. aiagent\nis not a chat framework — this exists so `aiagent chat` works for quick Q&A, with\nmulti-turn history persisted per session so a conversation can be resumed\n(`aiagent chat --session <name>`). History is optional, so `aiagent run chat\n--text \"...\"` also works single-shot. For anything substantive, use `run` /\n`optimize` / `eval`.",
"cost": {
"context_tokens": 104
}
}
Fetch it by URL: GET /api/v1/registry/devitops-com-aiagent-chat/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.