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.
Instruction file imported from out-dev/kortexa (.github/instructions/backend.instructions.md). Copyright stays with the author.
Backend-specific guidance:
Follow existing ASP.NET patterns already used in backend/src and backend/tests.
Prefer dependency injection and existing service abstractions over direct static usage.
Keep controllers/endpoints thin; place business logic in services.
Add or update unit/integration tests for behavior changes.
Keep appsettings changes environment-safe and avoid hard-coded secrets.
For API contract changes, ensure DTOs, validation, and tests stay aligned.
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.
out-dev-kortexa-backend-instructions.ocm.jsonjson
{
"ocm": "1",
"id": "out-dev-kortexa-backend-instructions",
"kind": "skill",
"name": "backend",
"description": "Backend-specific guidance:",
"publisher": "out-dev",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"skill-md",
"github-instructions"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Backend-specific guidance:"
],
"primary": false,
"metadata": {
"source": {
"provider": "github-instructions",
"repository": "https://github.com/out-dev/kortexa",
"path": ".github/instructions/backend.instructions.md",
"ref": "54bc6a99f389f4b05c83519cc436d0f280cbfe66",
"url": "https://github.com/out-dev/kortexa/blob/54bc6a99f389f4b05c83519cc436d0f280cbfe66/.github/instructions/backend.instructions.md",
"key": "out-dev/kortexa/.github/instructions/backend.instructions.md"
},
"applies_to": "backend/**/*.cs,backend/**/*.csproj,backend/**/*.props,backend/**/*.targets,backend/**/*.json,backend/**/*.yaml,backend/**/*.yml"
},
"instructions": "Backend-specific guidance:\n\n- Follow existing ASP.NET patterns already used in backend/src and backend/tests.\n- Prefer dependency injection and existing service abstractions over direct static usage.\n- Keep controllers/endpoints thin; place business logic in services.\n- Add or update unit/integration tests for behavior changes.\n- Keep appsettings changes environment-safe and avoid hard-coded secrets.\n- For API contract changes, ensure DTOs, validation, and tests stay aligned.",
"cost": {
"context_tokens": 120
}
}
Fetch it by URL: GET /api/v1/registry/out-dev-kortexa-backend-instructions/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.