Garbage Collection Skill Overview Expert skill for garbage collector design and implementation including various collection algorithms. Capabilities - Implement mark-sweep collection - Implement copying/semi-space collectors - Implement generational collection with write barriers - Implement concurrent/incremental marking (tri-color) - Design object header layouts and type info - Implement precise vs conservative root scanning - Design card table and remembered set implementations - Implement finalizers and weak references Target Processes - garbage-collector-implementation.js - memory-alloca…