explicit resource links

This commit is contained in:
John Lancaster
2026-06-24 08:59:44 -05:00
parent 4f731cc293
commit bf23893477
+6 -7
View File
@@ -233,6 +233,8 @@ OPENROUTER_API_KEY=sk-or-...
### Proposed Implementation
- `resource://skills/fastapi-async-sqlalchemy-modernization/document`
```python src/transcription/models.py
"""SQLModel domain models for the transcription system.
@@ -394,14 +396,11 @@ def get_session() -> Generator[Session]:
## 5. Test Plan
### Pytest Hierarchy Rules (Applied)
Refer to these resources for rules and guidelines about structure:
Use the following structure consistently across Step 1 tests:
- Module names: `test_*.py`
- Class names: `Test*` (group related scenarios)
- Method names: `test_<expected_outcome>` (keep them short and behavior-focused)
- Shared fixtures: nearest `conftest.py` at needed scope
- `resource://skills/pytesting/document`
- `resource://catalog/prompts/pytest-scaffold`
- `resource://catalog/prompts/pytest-fill-scaffold`
Hierarchy pattern used in this step: