create-proxy
Installation
SKILL.md
Proxy Pattern Generator
Creates Proxy pattern infrastructure for controlling access to objects.
When to Use
| Scenario | Example |
|---|---|
| Lazy initialization | Load expensive resources on first access |
| Access control | Check permissions before delegating |
| Caching | Cache results of expensive operations |
| Logging | Log calls to real subject |
Component Characteristics
Subject Interface
- Defines operations
- Shared by proxy and real subject
- Enables transparent substitution