harduex-google-keep-vibe-search-python-instructions.ocm.json json Copy{
"ocm": "1",
"id": "harduex-google-keep-vibe-search-python-instructions",
"kind": "skill",
"name": "python",
"description": "Python Conventions",
"publisher": "Harduex",
"version": "1.0.0",
"capabilities": {
"domains": [
"coding"
],
"tags": [
"skill-md",
"github-instructions"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Python Conventions"
],
"primary": false,
"metadata": {
"source": {
"provider": "github-instructions",
"repository": "https://github.com/Harduex/google-keep-vibe-search",
"path": ".github/instructions/python.instructions.md",
"ref": "e296fdd9f5ce1c074609dd4d620814efc9653611",
"url": "https://github.com/Harduex/google-keep-vibe-search/blob/e296fdd9f5ce1c074609dd4d620814efc9653611/.github/instructions/python.instructions.md",
"key": "Harduex/google-keep-vibe-search/.github/instructions/python.instructions.md"
},
"applies_to": "app/**/*.py,tests/**/*.py"
},
"instructions": "# Python Conventions\n\n- Format: black (line-length=100), isort (profile=black)\n- Type hints on all function signatures\n- Pydantic models for request/response shapes\n- FastAPI `Depends()` for injection. Services in `app/services/`, routes in `app/routes/`\n- Tests: pytest + asyncio. File naming: `tests/test_<module>.py`\n- Errors: `HTTPException` in routes, custom exceptions in `app/core/exceptions.py`",
"cost": {
"context_tokens": 100
}
}