Реклама партнера — Название партнёра
UNIT.City — місце, де люди працюють... КРАЩЕ! Обирай свій простір просто зараз 👉

7 AI tools that IT professionals invented to make their jobs easier

On Reddit, IT professionals from all over the world are actively sharing their projects created with the help of AI. We have collected for you a selection of developments that relate specifically to workflows. Perhaps these tools will be useful or inspire your own ideas.

Leave a comment
7 AI tools that IT professionals invented to make their jobs easier

On Reddit, IT professionals from all over the world are actively sharing their projects created with the help of AI. We have collected for you a selection of developments that relate specifically to workflows. Perhaps these tools will be useful or inspire your own ideas.

1. A tool that visualizes code structure

The developer created Relia, a tool that can help "solve the black box problem in AI development."

“It visualizes the logic of the system, so you don't have to play detective every time you want to add a new feature,” says a user under the nickname NoRutabaga2223.

Relia uses TypeScript to ensure reliability when extracting logic. Analyzes data flows to highlight security gaps. Generates a visual graph that shows exactly how prompts have changed your system dependencies.

“If you can’t explain the logic, you don’t own the product. Relia returns that ownership to the developer,” the developer notes.

You can try the tool at the link .

2. Workspace Manager for CLI

Aitivets created a tool — it's a faster cd command, but it's different from current analogues like zoxide.

"If you're anything like me, you have a million projects in a million different places (I have 56!), all by different authors. I'm a CLI and Neovim fan, so I've been doing this for ages..." wrote a Reddit user named throwaway_1231241231.

“After a while, it starts to get pretty annoying. wo changes this process to wo project and you are already added to your project using cd,” the developer continues.

Running wo scan --root ~/workspaces --depth <depth> will automatically scan your system for git repositories (or .wo files if you choose not to track your repository) and add them to your list. Project names are determined from the remote URL of the repository name, so they could be anywhere.

If the repository is local, project owners are determined by the name of the parent folder (for example, if the folder is local, then the project owner will be called local.

But the main function, according to the aitvts, is the interceptors. You can create your own hooks. When entering a command, we can automatically call nvim. So, wo project opens neovim with all the loaded files. You can define a hook called claude and call it like this: wo project claude.

“You can configure your hook to automatically launch Claude Code or any other CLI tool of your choice. You can write cursor. code. or zen. or any arbitrary script. In addition, hooks can be global — they do not need to be redefined for each individual folder,” the developer adds.

The tool is open source and licensed under the MIT license. You can find it at the link .

3. MCP server that feeds architectural solutions directly into Claude Code

A native of AIT, rhuanbarreto, created Archgate, a CLI tool that converts architectural decision records (ADRs) into machine-verifiable rules. It has a built-in MCP server that allows Claude Code to learn your solutions before you write a single line of code.

As the project author explains, Claude's problem is that it is intelligent but "context blind." Claude Code reads your files, but it doesn't understand why your codebase is structured the way it is.

According to the developer, the solution to this is ADR, which Claude Code can request through MCP.

Archgate stores solutions as markdown files with YAML frontmatter and combines each with a .rules.ts file containing the checks to be performed. When you connect Archgate's MCP server to Claude Code, it gets access to tools like: review_context — Claude calls this before writing code. It returns which ADRs apply to the files being changed, including the actual solution text and what can/cannot be done:

“The difference was immediate. Before Archgate, I would review Claude’s PRs and leave 3-5 comments about violating conventions. Now Claude first contacts the MCP server, adapts and checks itself. The code it produces complies with our rules from the very beginning,” the developer explains what has changed in practice.

You can learn more about how Archgate works “under the hood” on Reddit . The tool is available at the link and on GitHub .

4. Open-source team of 12 AI security agents for code review

To stop manually searching for broken authorization logic and public keys, the IT guy created Ship Safe. It's an open-source CLI tool that runs 12 separate security agents to analyze a local repository.

“Instead of asking one universal model to check everything in a row, the tool injects 12 different ‘experts’ into your code. You have a separate agent focused entirely on API fuzzing, another solely on dependency vulnerabilities (CVE), another on configuration auditing, and so on,” explains a user named DiscussionHealthy802 on Reddit.

As a result, you get a prioritized vulnerability remediation plan and a security status score from 0 to 100. The tool is completely free and supports working with local models via Ollama.

Ship Safe is available on GitHub .

5. A dialog management tool designed specifically for OpenClaw

The developer created Clawin, a dialog management tool designed specifically to connect and control OpenClaw.

“Why did I create this? Many of us use regular messengers like Telegram or Discord to communicate with AI. They work, but such an experience is often disappointing. Universal chats quickly become cluttered, managing different AI agents in a common list is inconvenient, and transferring conversations through third-party servers is not the best option for privacy. I wanted to have a clean and safe space created specifically for interacting with AI,” shares an IT professional under the nickname biubiuf on Reddit.

Clawin offers:

  • a control panel created specifically for AI chats and agent management;

  • to connect, you just need to send the appropriate prompt to your OpenClaw - and the device will instantly connect;

  • you can create, edit and manage your own custom agents in just a few clicks;
  • end-to-end encryption (E2E), does not store any data on disk.

“Once connected, communication feels as smooth as in your usual messenger — just without the unnecessary chaos and privacy concerns,” the developer assures.

Currently in closed beta testing.

iOS: You can join TestFlight here.

Android: You need to download the APK from GitHub Releases .

Aitivets also noted that since he doesn't have an Android device, he hasn't had time to personally test the APK on real hardware. Therefore, he asks that you report any critical bugs or crashes via the Issues section on GitHub or in the comments.

6. Linktree for vibecoders

A developer under the nickname Fit-Reference5877 created VibeBounty — a la Linktree for AI projects.

The idea is simple: one concise link where you can showcase every AI application, third-party project, or experiment that IT professionals release into the world.

“Developers are building products faster than ever with the help of AI, but their work ends up scattered among random Vercel links, abandoned GitHub repositories, and Twitter threads that no one will find in six months. To fix this, I created VibeBounty,” the developer wrote on Reddit.

VibeBounty offers a dark theme, built-in click analytics, feedback forms for each project, and "a design you won't be embarrassed about in front of recruiters or clients."

The project's author noted that VibeBounty has just launched, so there are no users, so he is providing early access to anyone who wants to try it.

7. Claude Code Resume Builder Plugin

Reddit user janan-30 has developed a local AI-powered resume and cover letter generator specifically designed to work as a plugin for Claude Code via the MCP protocol. He also heavily used Claude during development to write the core of an ATS and HR scoring system, which is over 5,000 lines of code.

A person only needs to provide their basic resume and job description. The tool automatically hides personal data, assesses role fit, rewrites weak points of experience, and generates an ATS-ready DOCX file and cover letter right in your terminal.

Running locally is completely free (you only need your own Anthropic API key). The developer has also added an optional cloud scoring API as a fallback: it provides 5 free runs, after which the paid plan kicks in.

The plugin is available on GitHub at the link .

Aitivets taught Claude Code on Poderviansky's pesos and created the Mytets Plugin
Aitivets taught Claude Code on Poderviansky's plays and created the Mytets Plugin
On the topic
Aitivets taught Claude Code on Poderviansky's plays and created the Mytets Plugin
In two years, the amount of code written by AI has increased sixfold — study
In two years, the amount of code written by AI has increased sixfold — study
On the topic
In two years, the amount of code written by AI has increased sixfold — study
CTO created an AI clone for work. How does his digital twin cope with his duties?
CTO created an AI clone for work. How does his digital twin cope with the duties?
On the topic
CTO created an AI clone for work. How does his digital twin cope with the duties?
Read the country's main IT news in our Telegram
Read the country's main IT news in our Telegram
On the topic
Read the country's main IT news in our Telegram
Also Read
Roosh запускає нову освітню платформу AI HOUSE CLUB для ML/AI-спеціалістів та дата сайнтистів. Розповідаємо, як подати заявку та чому навчатимуть
Roosh запускає нову освітню платформу AI HOUSE CLUB для ML/AI-спеціалістів та дата сайнтистів. Розповідаємо, як подати заявку та чому навчатимуть
Roosh запускає нову освітню платформу AI HOUSE CLUB для ML/AI-спеціалістів та дата сайнтистів. Розповідаємо, як подати заявку та чому навчатимуть
Як нейромережі бачать вільну та незалежну Україну? Тест dev.ua
Як нейромережі бачать вільну та незалежну Україну? Тест dev.ua
Як нейромережі бачать вільну та незалежну Україну? Тест dev.ua
Нейронні мережі для генерації зображень бачать світ по-своєму, їхню логіку зрозуміти часом зовсім неможливо. Але таки хочеться. На честь Дня Незалежності України редакція dev.ua вирішила провести невеликий експеримент. Ми задали чотирьом різним нейронним мережам п’ять однакових запитів: «прапор України», «День Незалежності України», «український Крим», «перемога України» та «українці». Отриманими результатами ми ділимося з вами нижче.
У TikTok тепер можна генерувати фон за допомогою нейромережі. Ми протестували її та ділимося результатами
У TikTok тепер можна генерувати фон за допомогою нейромережі. Ми протестували її та ділимося результатами
У TikTok тепер можна генерувати фон за допомогою нейромережі. Ми протестували її та ділимося результатами
У TikTok з’явилася нова функція «Розумний фон». З її допомогою як фон для тіктоків можна підставляти згенеровані нейромережею зображення. Редакція dev.ua протестувала цю технологію і ділиться своїми враженнями.
1 comment
Які IT-спеціальності будуть потрібні в найближчі п'ять років? Ми з'ясували у голови американського стартапу ADAM Дениса Гурака
Які IT-спеціальності будуть потрібні в найближчі п'ять років? Ми з'ясували у голови американського стартапу ADAM Дениса Гурака
Які IT-спеціальності будуть потрібні в найближчі п'ять років? Ми з'ясували у голови американського стартапу ADAM Дениса Гурака

Have important news to share? Message our Telegram bot

Key events and useful links in our Telegram channel

Discussion
No comments yet.