Dmitry Vyukov
all · built 2026-09-08
Performance
What Dmitry Vyukov shipped in the selected window, measured in ETV, and how it compares with the 90 days before it.
Effective capacity
−1.0engineers
delivers like 0.0 (0.0x pre-AI)
Output (ETV)
0.0ETV
−100.0% vs 6.6 prior
Features share
0.0%
−21.6 pp vs prior window
Fixes share
0.0%
−9.1 pp vs prior window
Work mix
0% Features0% Maintenance0% Tests0% Docs0% Fixes
0 commits over 90 days, ending 2026-09-08.
Repository spread
Where this developer's commits land. Concentrated work (top1 > 80%) vs polymath spread (top1 < 30%).
Most impactful commits
Top 10 by ETV across all time.
- 2.3ETVall: apply modernize lintergithub.com-google-syzkaller · 14befbc8 · 2026-06-01
- 1.3ETVpkg/aflow: add package for agentic workflowsgithub.com-google-syzkaller · 45d8f079 · 2026-01-02
- 1.2ETVall: use any instead of interface{} Any is the preferred over interface{} now in Go.github.com-google-syzkaller · a83befa0 · 2025-12-19
- 1.1ETVdashboard/app: add support for AI workflows Support for: - polling for AI jobs - handling completion of AI jobs - submitting job trajectory logs - basic visualization for AI jobsgithub.com-google-syzkaller · 77200b36 · 2025-11-19
- 1.0ETVdashboard/app: fix API access checks Currently we permit per-namespace clients to access global APIs. For example, a secondary OS syz-manager client can poll bugs from all namespaces. This is wrong and bad. Don't permit namespace clients to access global APIs.github.com-google-syzkaller · c8d8c52d · 2026-02-19
- 0.7ETVpkg/codesearch: add skeleton for code searching tool Add a clang tool that is used for code indexing (tools/clang/codesearch/). It follows conventions and build procedure of the declextract tool. Add pkg/codesearch package that aggregates the info exposed by the clang tools, and allows doing simple queries: - show source code of an entity (function, struct, etc) - show entity comment - show all entities defined in a source file Add tools/syz-codesearch wrapper tool that allows to create index for a kernel build, and then run code queries on it.github.com-google-syzkaller · 280ea308 · 2025-11-17
- 0.7ETVall: use min/max functions They are shorter, more readable, and don't require temp vars.github.com-google-syzkaller · 5d04aae8 · 2025-01-17
- 0.6ETVpkg/codesearch: support searching for references Extend codesearch clang tool to export info about function references (calls, takes-address-of). Add pkg/codesearch command find-references. Export find-references in pkg/aflow/tools/codesearcher to LLMs. Update #6469github.com-google-syzkaller · d720635a · 2026-01-19
- 0.4ETVdashboard/app: add typed handler middleware Remove duplicated code related to request deserialization using middleware.github.com-google-syzkaller · 8fb7048c · 2025-12-19
- 0.4ETVtools/clang: compile clang tools into the binary Compiled clang tools into Go binaries using cgo. This significantly simplifies building and deployment. This also enables unit testing of clang tools. Now raw go test for clang tools will build them, run, and verify output. Each clang tool is still started as a subprocess. I've experimented with running them in-process, but this makes stdout/stderr interception extremly complicated, and it seems that clang tools still use unsynchronized global state, which breaks when invoked multiple times. Subprocesses also make it safer in the face of potential memory leaks, or memory corruptions in clang tools. Fixes #6645github.com-google-syzkaller · fd36daf5 · 2026-02-05