Trygve makes a presentation of DCI in http://oredev.org/videos/dci--re-thinking-the-foundations-of-oo
DCI has been created to solve a problem in object orientation: it's too difficult to review OO code.
The code for one use-case in OO is typicall spread out between lots of classes. To understand how the code works, you must also know the relationships between objects in runtime. These relationships aren't set in code, they depend on the situation.
What DCI proposes is that code for a given use-case is seperated out from the classes and put into a different artifact called context. Objects of different classes can enter into a relationship in this context and take part in interaction where they have different roles.
The whole point of DCI is to make OO code more readable!
That's how I would pitch it.