gitextract_jfckbr5d/ ├── .gitignore ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── Makefile ├── README.md ├── qtcreator/ │ ├── COPYING.txt │ ├── EkamDashboard.json.in │ ├── EkamDashboard.pluginspec.in │ ├── ekamdashboard.pro │ ├── ekamdashboard.qrc │ ├── ekamdashboard_global.h │ ├── ekamdashboardconstants.h │ ├── ekamdashboardplugin.cpp │ ├── ekamdashboardplugin.h │ ├── ekamtreewidget.cpp │ └── ekamtreewidget.h ├── src/ │ ├── base/ │ │ ├── Debug.cpp │ │ ├── Debug.h │ │ ├── Hash.cpp │ │ ├── Hash.h │ │ ├── OwnedPtr.cpp │ │ ├── OwnedPtr.h │ │ ├── Promise.cpp │ │ ├── Promise.h │ │ ├── Promise_test.cpp │ │ ├── Table.h │ │ ├── Table_test.cpp │ │ ├── sha256.cpp │ │ └── sha256.h │ ├── ekam/ │ │ ├── Action.cpp │ │ ├── Action.h │ │ ├── ActionUtil.cpp │ │ ├── ActionUtil.h │ │ ├── ConsoleDashboard.cpp │ │ ├── ConsoleDashboard.h │ │ ├── CppActionFactory.cpp │ │ ├── CppActionFactory.h │ │ ├── Dashboard.cpp │ │ ├── Dashboard.h │ │ ├── Driver.cpp │ │ ├── Driver.h │ │ ├── ExecPluginActionFactory.cpp │ │ ├── ExecPluginActionFactory.h │ │ ├── MuxDashboard.cpp │ │ ├── MuxDashboard.h │ │ ├── ProtoDashboard.cpp │ │ ├── ProtoDashboard.h │ │ ├── SimpleDashboard.cpp │ │ ├── SimpleDashboard.h │ │ ├── Tag.cpp │ │ ├── Tag.h │ │ ├── dashboard.capnp │ │ ├── ekam-client.cpp │ │ ├── ekam-langserve.c++ │ │ ├── ekam.cpp │ │ ├── ekam.ekam-manifest │ │ ├── initNetworkDashboardStub.cpp │ │ ├── langserve.capnp │ │ └── rules/ │ │ ├── compile.ekam-rule │ │ ├── include.ekam-rule │ │ ├── install.ekam-rule │ │ ├── intercept.c │ │ ├── intercept.ekam-rule │ │ ├── proto.ekam-rule │ │ └── test.ekam-rule │ └── os/ │ ├── ByteStream.cpp │ ├── ByteStream.h │ ├── DiskFile.cpp │ ├── DiskFile.h │ ├── EpollEventManager.cpp │ ├── EpollEventManager.h │ ├── EventGroup.cpp │ ├── EventGroup.h │ ├── EventManager.cpp │ ├── EventManager.h │ ├── File.cpp │ ├── File.h │ ├── KqueueEventManager.h │ ├── OsHandle.cpp │ ├── OsHandle.h │ ├── PollEventManager.h │ ├── Socket.cpp │ ├── Socket.h │ ├── Subprocess.cpp │ └── Subprocess.h └── vscode/ ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src/ │ └── extension.ts └── tsconfig.json