code-review-angle-e-wrapperproxy-correctness

Verify method routing in wrapper and proxy types for correct delegation.

7|Updated Mar 8, 2026
One-click install
npx skills add https://github.com/mkusaka/ccskills --skill code-review-angle-e-wrapperproxy-correctness
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review-angle-e-wrapperproxy-correctness
Source: https://github.com/mkusaka/ccskills/tree/main/skills/code-review-angle-e-wrapperproxy-correctness
Command: npx skills add https://github.com/mkusaka/ccskills --skill code-review-angle-e-wrapperproxy-correctness

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill identifies issues in wrapper and proxy types, ensuring methods route correctly to the wrapped object and do not cause recursive caching or incorrect delegation.

Core Features & Use Cases

  • Wrapper/Proxy Analysis: Checks the routing of methods within wrapper and proxy types.
  • Prevents Recursion: Identifies caching issues caused by incorrect method delegation.
  • Use Case: It can be used during code reviews to automatically verify that methods within caching providers or decorators are correctly routing through the wrapped object.

Quick Start

Run the skill on your codebase to check for issues in caching providers or decorators.

Frequently Asked Questions about code-review-angle-e-wrapperproxy-correctness

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check if my proxy or wrapper correctly delegates methods?

To check proxy delegation, you need to verify that methods within wrapper and proxy types route correctly to the wrapped object, which this process automates to prevent incorrect delegation without manual inspection.

Why does my caching provider cause recursive loops?

Recursive caching happens when incorrect method delegation routes caching logic back into the wrapper itself, an issue identifiable by analyzing method routing within wrapper and proxy types.

What is method routing verification in code reviews?

Method routing verification in code reviews is the process of checking wrapper and proxy types to ensure methods route to the wrapped object, preventing incorrect delegation and recursive caching issues automatically.

Can I automate wrapper and proxy checks during development workflows?

Yes, you can automate wrapper and proxy checks during development workflows by running verification on your codebase to automatically identify incorrect method delegation and caching issues in decorators.

What are the limitations of automated proxy method routing analysis?

Automated proxy method routing analysis focuses specifically on verifying delegation and caching logic to prevent recursion, requiring your codebase to be accessible for checking without relying on manual inspection.