From addce602fbf80993e4a92bd45f56e03a948d3650 Mon Sep 17 00:00:00 2001 From: dsarno Date: Thu, 29 Jan 2026 03:29:25 -0800 Subject: [PATCH] Clarify resource handling guidelines in CLAUDE.md fix typo in claude.md --- CLAUDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index dd47316..3424845 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -59,7 +59,7 @@ Every new feature needs tests. We have 1100+ tests across Python and C#. Run the Each MCP tool does one thing well. Resist the urge to add "convenient" parameters that bloat the API surface. ### 6. Use Resources for reading. -Keep them smart and "read everything" type resources. That way resource are quick and LLM-friendly. There are plenty of examples in the codebase to model on (gameobject, prefab, etc.) +Keep them smart and focused rather than "read everything" type resources. That way resources are quick and LLM-friendly. There are plenty of examples in the codebase to model on (gameobject, prefab, etc.) ## Key Patterns