it's a redux middleware that allows you to have a view on the state of your application and the actions that are dispatched, and this presented in a simple way to understand
import { agent } from 'redux-trace';
const store = createStore(rootReducer, initialState, applyMiddleware(agent));
MIT
Hajji Tarik.