56 subscribers
7.24K videos
7.84K links
Download Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ rithkott/claude-thing

Turn Spotify Car Thing Into a Claude Code HUD

A Spotify Car Thing sits idle on most dashboards, but this project repurposes the hardware into a real-time desk monitor for Claude Code sessions. Instead of playing music, the device’s screen displays your active coding tasks, showing session status and context limits right on the unit. You manage permissions and approve or deny requests directly using the physical dial, turning abstract terminal prompts into tangible hardware interactions. The code includes a full emulator so you can test the interface without owning the device. It bridges your local development environment with a dedicated physical controller, offering a novel way to oversee AI agents.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ 0xsojalsec/free-voice-clone

Free Voice Clone: Your Computer, Your Voice

Get started cloning your voice locally and completely free by grabbing this massive collection of open-source text-to-speech and music generation models that run right on your own machine. Instead of paying monthly fees to cloud services or worrying about your voice print leaking to big tech companies, you can simply pick one of dozens of lightweight options to synthesize speech instantly. You can type text and hear it spoken in almost any voice you want, even generating singing or podcast audio, all without needing a supercomputer.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ mohi-devhub/antivibe

AntiVibe: Stop Copy-Pasting, Start Learning

Most developers treat AI code as a black box and never question how it works. AntiVibe changes that by turning any snippet into a structured lesson. It breaks down the why behind design decisions and maps out what you actually need to know before moving forward. You get to see the trade-offs and potential pitfalls instead of just accepting the output. It even audits legacy code or new features to highlight architectural risks. This is a practical way to finally understand what the software is doing and why it matters.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ joaquinbejar/market-maker-rs

Market Maker Rs: Quant Trading in Rust

Market maker rs lets you automatically calculate buy and sell prices based on real math models instead of guessing. It uses the Avellaneda Stoikov framework to adjust quotes dynamically, ensuring you don’t lose money by holding too much inventory while the market moves. This library is useful because it handles the hard quantitative parts like risk limits and volatility tracking so developers can focus on connecting to exchanges. You get a complete system with backtesting tools to simulate trades and real-time analytics to monitor order flow. It is perfect for anyone who wants to build professional-grade trading bots without reinventing the wheel from scratch.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ anionex/codex-deepseek-vision

Give DeepSeek Eyes with codex-deepseek-vision

DeepSeek v4 is a powerhouse text model, but it is completely blind to images. The codex-deepseek-vision project solves this by installing a lightweight local proxy that acts as a bridge between your text-only AI and the Codex interface. When the model tries to view an image, this proxy intercepts the request, sends the picture to a separate vision model, gets a detailed text description, and feeds that back to DeepSeek as if it saw it itself. It even handles multiple images at once and caches results so the same photo doesn't waste time processing twice.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ muhammadhananasghar/wormhole

Wormhole: Instant Localhost URLs

Wormhole is an open-source tool that gives your local server a public internet address with a single command, requiring no signup or configuration files. It solves the common developer headache of needing to expose a localhost environment for testing or collaboration without dealing with complex cloud setups. You simply type a command like wormhole http followed by your port number, and it instantly creates a secure HTTPS link. Behind the scenes, it uses Go for the client and Cloudflare Workers to handle the heavy lifting, routing traffic through the edge network.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ cloudflare/kumo

Kumo: The UI Kit That Thinks It’s an API

Kumo lets you build modern web apps by dropping in pre-made, accessible interface parts like buttons, dialogs, and forms without wrestling with styling or keyboard navigation. It’s Cloudflare’s own component library, built on React, so you get polished UI pieces that just work right out of the box. But the coolest part is that it treats your own codebase as a searchable database. You can ask it questions from your terminal to instantly pull up documentation for any component you’re using. It’s like having a smart assistant that actually knows what you’re building, so you stop guessing and start coding.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ grieferpig/esp32-s31-linux

Running Linux on the ESP32-S31

Run a full Linux operating system with virtual memory on a tiny microcontroller chip, turning a standard development board into a genuine computer. This project takes Linux version six point twelve and fits it onto the ESP thirty two S thirty one hardware, handling all the messy work of mapping memory and setting up the boot process so the system actually starts. The most fascinating part is that it executes code directly from flash storage without needing to copy everything into the slow external memory first, which saves precious space and keeps things moving.

πŸ“° https://news.ycombinator.com/item?id=49087499

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ drewnekota/cetus

Cetus: The Desktop Assistant for Coding Agents

Cetus is the macOS desktop layer that turns your coding agents into an always-on assistant by summoning them from anywhere, scheduling background runs, and feeding them context from your screen. Instead of burying your work in terminal tabs, Cetus lets you launch Claude or Codex with one hotkey, capture what you see, and review results in a single board. It handles the boring parts like scheduling, history, and isolated coding workspaces so you can focus on the actual code.

πŸ“° https://news.ycombinator.com/item?id=49084323

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ 0xwilliamortiz/ratchet

Ratchet

Ratchet is the complexity control that finally makes coding agents keep their promises instead of just reading them. Every AI assistant drifts toward adding dependencies and writing extra code, assuming you will catch it later. Ratchet changes that by hooking directly into the agent's editing workflow and measuring every single line written in real time. It tracks new files, external packages, and bloated lines, then immediately interrupts the session with a clear warning if the budget is exceeded. You can set strict limits that block unwanted changes or just get gentle advice on over-engineering.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ ledat98/nexusrag

NexusRAG: Cited Answers with a Knowledge Graph

Ask questions about your documents and get answers with clickable proof. NexusRAG is a hybrid search system that doesn't just skim text; it builds a living knowledge graph of entities and relationships inside your files. It combines vector search with a reranker and visual intelligence to understand charts and tables alongside the words. The coolest part? Every single claim comes with a four-character citation ID. You can click these badges to jump straight to the exact page, paragraph, and heading in the source document. It works with cloud models or runs fully locally with Ollama, giving you a private, accurate chat experience that actually shows its work instead of guessing.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ jacob-bd/universal-skills-manager

Universal Skills Manager: Sync AI Tools

Universal Skills Manager lets you find, install, and sync helpful abilities across your favorite coding assistants without the headache. Instead of hunting through settings for Claude, Codex, or Gemini, you just ask your AI to search a central hub, grab a tool, and it handles the download and security check for you. The coolest part? It spots when your skills are out of sync across different apps and copies the latest version to all of them with your OK. It is a simple way to keep your AI helpers consistent and powerful across your whole setup.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ yijia-xiao/financeharness

FinanceHarness: Autonomous Financial Deep Research Framework

FinanceHarness acts like a tireless analyst that digs deep into financial data on its own. It is an autonomous framework designed to handle complex financial research tasks without needing constant human input. Think of it as a smart assistant that gathers facts, checks sources, and pieces together insights automatically. This is useful because financial analysis usually takes hours of tedious work, but this tool speeds up the process by doing the heavy lifting. It helps developers and researchers focus on interpretation rather than manual data crunching. The real cool factor is how it handles deep research tasks autonomously, making complex financial insights easier to access.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ akii09/pdfx

PDFx

PDFx lets you build PDFs in React using copy-paste components that live inside your own project instead of hidden behind a library dependency. You just run a quick command to grab the code for headings, tables, or badges, and the tool rewrites the paths so everything works out of the box. This means you own the code completely, you can tweak any detail without fighting a black box, and you never have to worry about breaking updates from a distant package. It is a simple, transparent way to generate professional documents while keeping full control over the final result.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ rightnow-ai/memoir

Memoir: Weights That Never Freeze

Memoir is an open-source research project building a transformer architecture where model weights stay plastic instead of freezing after training. The system uses four weight tiers on different timescales and a 'pondering core' that lets the model think deeper before answering. The repository is unique because it documents a pre-registered experiment that actively tried to falsify the project's main claim. The results showed that writing to memory while pondering actually hurts performance compared to reading only, proving that negative results are just as valuable as positive ones in science. This repository offers a transparent look at how AI research handles failure and iterative learning.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ pyang5166/gbro-cover-design

Gbro Cover Design

Feed any article into an AI agent and watch it instantly craft a polished social media cover image prompt. Gbro Cover Design asks you just three simple questions about your style, face, and mood, then outputs a ready-to-use prompt that guarantees a consistent human face and a perfect vertical layout. It handles everything from catchy titles to precise composition styles like bold gradient backgrounds or clean minimalist designs, so you never have to design anything yourself. You get professional-looking visuals for platforms like Xiaohongshu or WeChat articles in seconds without touching graphic design software. It is the ultimate shortcut for creators who want stunning thumbnails without the tedious effort.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ hainrixz/the-architect

The Architect: AI Blueprints for Code

Build any software blueprint with The Architect, a Claude Code plugin that interviews you to design complete system plans. It produces self-contained blueprints that another AI instance can build from scratch with zero context. The surprising part is the strict verification: every single build step includes a runnable command to test success, ensuring the AI doesn't guess. You get clear acceptance criteria for everything from simple sites to complex apps, so the builder never gets stuck or over-builds. It handles fourteen different project shapes and checks live registry versions so you don't get outdated code. Instead of coding, you get a verified roadmap that works.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ trycompai/crm

CRM

CRM flips the script on customer management by making the research agent the star instead of the database. Most tools just store data, but this one runs a durable bot that works on its own schedule, checks email history, and writes findings into the system without you asking. It uses a strict ruleset where no guesses are allowed, meaning every fact comes from hard evidence like signature blocks or actual conversations. You can even watch it think in real time, seeing exactly how it connects dots and decides what matters.

πŸ“° https://news.ycombinator.com/item?id=49141847

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ xmudeeplit/memgraphrag

MemGraphRAG Explained

MemGraphRAG turns messy text into a structured three-layer memory for reliable answers. It builds a schema layer for abstract concepts, a fact layer for specific details, and a passage layer for source text. This system connects everything bidirectionally, allowing it to spot and fix conflicts before answering. By combining semantic similarity with graph logic, it retrieves exactly the right evidence instead of guessing. The project uses Python and standard language models to index your own documents and run question-answering tasks. It is a practical way to make AI understand long documents clearly without losing context.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ marchoag/claude-code-setup-wizard-md

claude-code-setup-wizard-md

Your AI coding sessions keep losing context and you have to repeat yourself every time you log back in. This repository fixes that with a simple folder structure that keeps your active documentation tiny while archiving everything else for later. You start a session with a command, the AI reads just a few small files, and when you finish, it automatically archives your notes and updates a searchable knowledge base that remembers every bug you’ve fixed. It even tracks how long you worked and forces you to use pull requests for changes.

πŸ†” @hackernewsgithubprojects
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ“¦ mkultra6969/mk_droidscreencast

MK DroidScreenCast: Your Android Phone as a Desktop App

MK DroidScreenCast turns your Android smartphone into a full desktop companion app that lets you see, record, and control your phone screen from a single window without hunting through terminal commands. It connects via USB or Wi-Fi, automatically fetches the tools you need, and handles mirroring, recording, and file transfers in one clean interface. The standout feature is how it bundles everything into a native desktop experience so you can tap to record, switch between connection methods, and manage files without leaving the app. It solves the mess of juggling multiple command-line tools by keeping the controls visible and accessible in a single place.

πŸ†” @hackernewsgithubprojects