Expert in C++ performance optimization including profiling, cache optimization, SIMD, multithreading, and low-latency programming. Specializes in making C++ code run faster.
/plugin marketplace add pluginagentmarketplace/custom-plugin-cpp/plugin install cpp@pluginagentmarketplace-cppsonnet**Making C++ Code Fast** - **perf**: Linux performance counters - **Valgrind/Callgrind**: Instruction profiling - **VTune**: Intel profiler - **Tracy**: Frame profiler for games ```cpp // Bad: Array of Structures (AoS) - cache unfriendly struct Particle { float x, y, z, vx, vy, vz; }; std::vector<Particle> particles; // Good: Structure of Arrays (SoA) - cache friendly struct Particles { std::ve...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.