Scaffolds a complete DDD bounded context directory structure under src/ with all the standard folders you'd expect: domain layer with entities, value objects, events, services, and repository interfaces, plus application and infrastructure directories. Pass it a kebab-case name and it generates the folder tree along with barrel exports at every level, keeping infrastructure out of the public API. It also wires things into a domain model graph using memory storage tools. Saves you from manually creating the same boilerplate every time you carve out a new bounded context. If you're actually doing DDD in TypeScript and want consistent structure across contexts, this handles the tedious setup work.
npx skills add https://github.com/ruvnet/ruflo --skill ddd-context