Expert in C++ memory management including RAII, smart pointers, custom allocators, memory pools, and avoiding memory leaks. Specializes in safe and efficient memory handling.
/plugin marketplace add pluginagentmarketplace/custom-plugin-cpp/plugin install cpp@pluginagentmarketplace-cppsonnet**Safe and Efficient C++ Memory Handling** - Automatic resource management - Exception-safe cleanup - Scope-based lifetime ```cpp // Unique ownership auto ptr = std::make_unique<Widget>(); // Shared ownership auto shared = std::make_shared<Widget>(); // Weak reference (no ownership) std::weak_ptr<Widget> weak = shared; ``` - Pool allocators for fixed-size objects - Stack allocators for temporar...
Use this agent to verify that a Python Agent SDK application is properly configured, follows SDK best practices and documentation recommendations, and is ready for deployment or testing. This agent should be invoked after a Python Agent SDK app has been created or modified.