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 wtthornton/tapps-brain (.github/instructions/testing.instructions.md). Copyright stays with the author.
applyTo: "tests/**"
Testing Standards
Requirements
Tests must not make real HTTP requests — use mocks or httpx.MockTransport
Tests must not read from or write to production configuration files
Tests must not depend on global state without explicit setup/teardown
Use pytest fixtures for shared setup, not setUp()/tearDown() methods
Use tmp_path fixture for any file I/O in tests
Tests should be deterministic — no random data without fixed seeds
Mark slow tests (> 5 seconds) with @pytest.mark.slow
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.
{
"ocm": "1",
"id": "wtthornton-tapps-brain-testing-instructions",
"kind": "skill",
"name": "testing",
"description": "<!-- tapps-generated: v3.12.89 --> --- applyTo: \"tests/**\" ---",
"publisher": "wtthornton",
"version": "1.0.0",
"capabilities": {
"domains": [
"coding"
],
"tags": [
"skill-md",
"github-instructions"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"<!-- tapps-generated: v3.12.89 --> --- applyTo: \"tests/**\" ---"
],
"primary": false,
"metadata": {
"source": {
"provider": "github-instructions",
"repository": "https://github.com/wtthornton/tapps-brain",
"path": ".github/instructions/testing.instructions.md",
"ref": "2aa1a6414c694b77407874804def8f0bde7f922d",
"url": "https://github.com/wtthornton/tapps-brain/blob/2aa1a6414c694b77407874804def8f0bde7f922d/.github/instructions/testing.instructions.md",
"key": "wtthornton/tapps-brain/.github/instructions/testing.instructions.md"
}
},
"instructions": "<!-- tapps-generated: v3.12.89 -->\n---\napplyTo: \"tests/**\"\n---\n\n# Testing Standards\n\n## Requirements\n\n- Tests must not make real HTTP requests — use mocks or `httpx.MockTransport`\n- Tests must not read from or write to production configuration files\n- Tests must not depend on global state without explicit setup/teardown\n- Use `pytest` fixtures for shared setup, not `setUp()`/`tearDown()` methods\n- Use `tmp_path` fixture for any file I/O in tests\n- Tests should be deterministic — no random data without fixed seeds\n- Mark slow tests (> 5 seconds) with `@pytest.mark.slow`",
"cost": {
"context_tokens": 143
}
}
Fetch it by URL: GET /api/v1/registry/wtthornton-tapps-brain-testing-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.