
patternsproxy
by mgreenly
An AI Coding Agent
SKILL.md
name: patterns/proxy description: Proxy Pattern pattern for C development
Proxy Pattern
Provide surrogate for another object to control access. Proxy has same interface as real object. Adds behavior transparently.
ikigai Application
Potential uses:
Lazy loading: Database connection proxy that connects on first query, not at startup.
Logging proxy: Wrap LLM client to log all requests/responses without modifying client code.
Caching proxy: Cache repeated database queries or LLM responses.
Rate limiting: Proxy that throttles API calls.
Implementation: Proxy struct holds pointer to real object, implements same interface, adds behavior before/after delegating.
Current status: Not explicitly used yet. Consider when adding cross-cutting concerns to existing interfaces without modification.
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon