GitHub radar

Top 5 GitHub Repos This Week

This week more than half of the trending repositories are about fast decisions without text generation. And one is completely apart from all of that: a free Photoshop for Mac that one person made and released.

I gave it one task: find a flight from Zürich to London on a specific date. It opened Google Flights and came back in 7.1 seconds, with real page loading and actual text entry. In the test run from the README, it made 101 steps where the usual tools make over a thousand. You write the goal in one phrase and the agent handles the steps by itself.

Why a vibe-coder should care

If you repeat certain tasks in a browser, this agent handles them for you from a single phrase of instruction.

Open on GitHub
02tamaratran/fast-jev-compaction 5.5kTypeScript

A long Claude Code session has a problem. At some point the older steps get compressed into a summary. Sometimes a critical detail gets lost there: a file path, the exact error text. This plugin replaces the summary with evaluation: every tool call and result is scored, and the important ones stay word for word.

Why a vibe-coder should care

Long sessions with the agent do not lose what was agreed at the start.

Open on GitHub

I do not want to pay Adobe every month, and GIMP has never felt comfortable to me. The author had the same problem and built a free image editor for Mac, then released the code. The main tools I use in Photoshop are there: layers with masks, Content-Aware Fill and curves. The keyboard shortcuts deliberately copy Photoshop so that you do not have to relearn anything.

Why a vibe-coder should care

Free image editor for Mac with the main Photoshop features, no subscription. Build it from source in Xcode.

Open on GitHub
04zai-org/ZCode 3.6kTypeScript

Z.ai released their coding agent this week. It comes in three forms: desktop application, browser and terminal. You describe what you want to build, the agent writes the code. The license is Apache-2.0 and the code is open, so you can point it at your own model.

Why a vibe-coder should care

A new open-source coding agent with desktop, browser and terminal access.

Open on GitHub
05TheoLeeCJ/SemIf 2.6kPython

Suppose you are building a product and need to sort incoming messages: spam, complaint, urgent. Usually you run a language model and get a sentence back that you parse in code. SemIf works differently: you ask a question with options and the model returns probabilities, not a sentence. The demo is right in the browser and nothing needs to be installed to try it.

Why a vibe-coder should care

Classify incoming things in a product without parsing model text. The project was formerly called OpenJev and is not affiliated with TypeSafe.

Open on GitHub