Claude Code Plugins

Community-maintained marketplace

Feedback

patterns/proxy

@mgreenly/ikigai
1
0

Proxy Pattern pattern for C development

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

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.