kris-bosland-docqa-shared-instructions.ocm.json json Copy{
"ocm": "1",
"id": "kris-bosland-docqa-shared-instructions",
"kind": "skill",
"name": "shared",
"description": "Shared DTO Conventions",
"publisher": "kris-bosland",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"skill-md",
"github-instructions"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Shared DTO Conventions"
],
"primary": false,
"metadata": {
"source": {
"provider": "github-instructions",
"repository": "https://github.com/kris-bosland/DocQA",
"path": ".github/instructions/shared.instructions.md",
"ref": "94f70f509fd1ea5148e84e4dad55da5fcfdd8518",
"url": "https://github.com/kris-bosland/DocQA/blob/94f70f509fd1ea5148e84e4dad55da5fcfdd8518/.github/instructions/shared.instructions.md",
"key": "kris-bosland/DocQA/.github/instructions/shared.instructions.md"
},
"applies_to": "DocQA.Shared/**"
},
"instructions": "# Shared DTO Conventions\n\n- DTOs are plain C# records or classes — no business logic, no EF attributes\n- Use `required` properties or constructor parameters; avoid nullable reference types on required fields\n- Naming: `{Entity}Dto` for read models, `{Verb}{Entity}Request` for write inputs, `{Verb}{Entity}Response` for write outputs\n- All IDs are `int`; all timestamps are `DateTime` (UTC)",
"cost": {
"context_tokens": 97
}
}