You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(config): Add support for config subsection injection in skills (#92)
Enable skills to inject specific configuration subsections using dotted notation (e.g., config.email, config.database) instead of requiring the entire config object. This provides better scoped access, type safety, and separation of concerns by allowing skills to declare explicit dependencies on only the configuration they need.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+98Lines changed: 98 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -576,6 +576,104 @@ type CacheConfig struct {
576
576
-`CACHE_MAX_ENTRIES="1000"`
577
577
-`CACHE_TTL="3600"`
578
578
579
+
### Config Subsection Injection
580
+
581
+
In addition to injecting entire configuration objects, you can inject specific config subsections directly into skills using dotted notation. This provides type-safe access to focused configuration scopes.
0 commit comments