back to home

yandex / yatool

Yatool is a cross-platform distribution, building, testing, and debugging toolkit focused on monorepositories

View on GitHub
213 stars
23 forks
24 issues

AI Architecture Analysis

This repository is indexed by RepoMind. By analyzing yandex/yatool in our AI interface, you can instantly generate complete architecture diagrams, visualize control flows, and perform automated security audits across the entire codebase.

Our Agentic Context Augmented Generation (Agentic CAG) engine loads full source files into context on-demand, avoiding the fragmentation of traditional RAG systems. Ask questions about the architecture, dependencies, or specific features to see it in action.

Source files are only loaded when you start an analysis to optimize performance.

Embed this Badge

Showcase RepoMind's analysis directly in your repository's README.

[![Analyzed by RepoMind](https://img.shields.io/badge/Analyzed%20by-RepoMind-4F46E5?style=for-the-badge)](https://repomind.in/repo/yandex/yatool)
Preview:Analyzed by RepoMind

Repository Overview (README excerpt)

Crawler view

Yatool Yatool is a cross-platform distribution, building, testing, and debugging toolkit focused on monorepositories. All utilities are available for use through a single entry point . The main handler in utility is , which is a high-level universal build system. ya make build system can be described as • **Completely static**. All dependencies are analyzed in advance and changes are recorded in the command graph. Based on the analysis, each command receives a unique UID, which fixes its result on a given state of input data and dependencies. The immutability of the UID indicates the immutability of its result and therefore serves as a key in the results cache, and is also used when analyzing changes to exclude a command from execution. • **Universal and high-level**. The description of the build system is done at the level of modules, macros and dependencies between modules. Our build system hides a lot. It itself builds inter-file dependencies, both direct ( includes ) and induced by generation (if imports , then will include ), allowing developers to avoid wasting time specifying highly granular file dependencies. These dependencies are internally mapped to commands: the compilation command will be restarted when is changed, and the command change in will entail not only a regeneration for , but also a recompilation of , which includes . It itself builds file processing chains - including the w.proto file in the module will entail the generation of from it and the further translation of this file as part of the package. • **Declarative**, mostly. In the assembly description, most of the structures record the properties of modules and commands and the connections between them. However, some of the constructions are performed sequentially: setting and calculating local variables, conditional constructions - this is something that depends on the order in which it is written in the file. Warning - bumpy road ahead has been used at Yandex for more than 10 years and successfully meets all challenges within the company, coping with its tasks against the background of the explosive growth of the monorepository and projects in it. Developers focus on developing products rather than overcoming complexities in building and testing projects. However, such experience is strongly integrated into the internal ecosystem and is difficult to alienate. As part of future releases, we want to provide similar experience for the development of open source products. At this moment does not have a stable release and might not provide flawless and integrated experience for external users. Work in progress, stay tuned. License Yatool is licensed under the Apache-2. Building You can use to build itself. Get the source codes and just run the command: You can also build the first generation of build utilities without using using bootstrap. For more details see bootstrap guide. Contributing See CONTRIBUTING.md for instructions to contribute. Documentation Documentation in Russian. Documentation in English. Project examples.