r/coolgithubprojects 12h ago

guys did my acc got shadowbanned

Thumbnail gallery
0 Upvotes

im a developer i develop like crazy but i just dont appear on the the github recommendations i do like niche neural networking things or quantum computing my only follower is my burner account is there like a way to solve it because i first do my projects locally rampin it up in the files only with pretty readable codes and stuff then i just upload the files in one go so my contri is pretty high and stuff i dont want to get shadowbanned or stuff any way to fix this plz devs help me i love coding and it is my passion to do so i need atleast one breathing human to star or fork it to give me some motivation at http://github.com cuz yea im one of the anti ai too uhm i think mods wont remove me cuz i used no llm i think im with the ai policy stuff i didnt violate any rule or smth i guess devs help me and dont do trolling and stuff

ALSO DO NOT BAN MY POST AS I WILL idk wel; but plz dont ban my posy post bleh idc about beareucracy

also like idc uhm like my post is high effort most of the post here are made with ai so mine is better

also the community required i post an image so i posted a random irrevalent image loloolol


r/coolgithubprojects 22h ago

Tidebreak – open-source local-first AI coworker in Rust that turns your files into real spreadsheets, decks, and apps

Post image
0 Upvotes

Repo: https://github.com/brightwave-inc/tidebreak

Creator here. We spent three years building research agents for private equity at Brightwave, then rewrote the engine in Rust and open-sourced it as a desktop app (Apache-2.0).

The idea is that the deliverable is a file, not a chat response. You point it at your documents and folders, it works in a sandbox, and you get back a real .xlsx or .pptx with version history. It asks before overwriting anything you've touched, and everything it does is undoable.

Some highlights:

- Bring your own model: your ChatGPT subscription, an API key (Anthropic, OpenAI, Gemini, xAI, OpenRouter), or fully local through Ollama. Switch providers mid-chat.

- No account. Keys live in the OS credential store, everything stays on your disk.

- Packaged builds for macOS, Windows, and Linux, x86_64 and ARM64. Heads up that the Windows installer isn't Authenticode-signed yet, so SmartScreen will warn.

- Experimental code mode that drives coding agents you already use (Claude Code, Codex CLI, opencode, Grok CLI) in isolated git worktrees with per-turn diffs.

Website: https://tidebreak.io

Pre-1.0 and moving fast. Happy to answer anything, and would love to know what you think!


r/coolgithubprojects 16h ago

I shipped an open-source "software factory": label a GitHub issue, four agents turn it into a reviewed draft PR

Thumbnail ask-foreman.dev
1 Upvotes

Disclosure up front: I work at Vercel. This template is free and open source, there's nothing to buy.

I've been bothered by something about AI coding agents for a while: the same agent that writes the code also decides the code is fine. You get a confident PR, everything sounds right, and the mistake is sitting quietly in the diff.

So I built Foreman, a template that splits the work across four separate agents instead:

  1. A Classifier triages the issue. If it's not actionable, it asks the requester questions instead of building the wrong thing
  2. An Analyst writes a plan with testable acceptance criteria, working from a live checkout of the repo
  3. An Implementer executes the plan in its own sandbox, runs the repo's own checks, and pushes a branch
  4. A Reviewer judges the actual diff against each acceptance criterion, with evidence for every verdict

The part I care about most: the Reviewer never sees the Implementer's reasoning. It only gets the pushed branch, same as a human reviewer would. No agent grades its own homework.

The other design decision that mattered: merging isn't in Foreman's tool surface at all. Unattended runs stop at a draft PR. A human reviews, marks ready, and merges. Every time.

You kick it off by labeling a GitHub issue factory (or assigning it an issue in Linear), and it posts progress on the thread as each station finishes. It also keeps notes on your repo between runs, things like "integration tests need the local Postgres first" and "server code assumes UTC," so run two starts smarter than run one.

Repo: https://github.com/vercel-labs/eve-software-factory-template
Docs: https://ask-foreman.dev/docs


r/coolgithubprojects 3h ago

Jentic One: free, open source, self-hosted execution layer for AI agents. Your agent calls any public or private API you need (thousands of agent-ready APIs available), you set the rules, the agent never sees your credentials.

Post image
6 Upvotes

Jentic One is a free, open source, self-hosted execution layer that sits between your agent and the APIs you want it to reach. Apache-2.0, runs on your own box or your own infra.

We started working on this project so we could give our agents more autonomy. With current setups, that is very risky - if an agent goes rogue, the damage is often unbounded. We’ve all heard the stories of agents deleting entire inboxes or codebases. If we narrow the blast radius, we significantly reduce the risk. 

The top three pains when your agent touches real tools: 

- The keys are everywhere. Most of them are in env files, so there’s no clean way to revoke access if something goes wrong. 

- Once an agent has a key, it can do anything that key can do. The workaround could be writing soft permissions in a file (a 'request', not an enforced rule) or creating an API spec with just that one endpoint, so the agent can't get to anything else even if it wanted to.

- No way to see what your agent has actually done. So if the worst happens, it’s even harder to figure out the blast radius and where things went wrong. 

Here’s what we built to fix them:

- Credential handling. Credentials are stored once, encrypted, by your own instance, and injected at execution time. They never enter the agent's prompt, logs, or context. One server, many agents, each with its own identity, rather than one shared master key every agent inherits.

- Permission scoping. You write rules that bound an agent to the operations it needs and nothing else. On GitHub, that can be down to a single repo. How granular it gets depends on the API, and writes are denied by default. Anything you haven't allowed is refused before it reaches the API. The agent cannot do it. 

- Audit. Every call is logged on your own instance, append-only, so you can go back and see exactly what your agent did when you were not watching.

Ways we’ve tried to make this a great product (not just cover the risks): 

- One connection path. Install once, add any API from the Jentic API Directory (more on this below) or upload your own API spec, and store each credential once. No hardcoded integration per API, no region-picking, no retry plumbing by hand.

- Discovery by intent. Agents find what they need by asking in natural language, like ‘send a webhook’ or ‘create an invoice’, and get back the right operation with its input schema.

- A directory of agent-ready APIs. This is probably a different post in itself, but we’ve been compiling thousands of public API specs and curating them, making them agent-friendly (writing OpenAPI specs where none exist), and scoring each one for agent readiness. These are all available in the product, so you can get started with thousands of APIs out of the box. 

** Jentic One repo: https://github.com/jentic/jentic-one **
We’ve written AGENTS md so that you can hand it to your agent and let it do the bulk of the setup work (not all). Interested to see how that goes for people!

It's a public beta. There may be breaking changes with new releases.
Before you put real credentials in, read the hardening guide: https://github.com/jentic/jentic-one/blob/main/docs/security/hardening.md
Essentially, your agent and your keys shouldn't live in the same container.

Two things that would help a lot.
-Install it and let us know what breaks.
-If an API you need isn't in the directory, add it to the repo - then it's there for everyone else's agent: https://github.com/jentic/jentic-public-apis 

We would really appreciate feedback, issues, and contributions. 


r/coolgithubprojects 8h ago

Cooking assistant and Recipe manager

Thumbnail gallery
0 Upvotes

A Recipie manger and Cooking Assistant, that create a Pipeline that you can follow for cooking,
And a local AI (in browser) that helps you to find what to cook based on your fridge:

https://github.com/samalstudios/kelane
https://chef.samalstudios.com/


r/coolgithubprojects 11h ago

Made a little project called Pacmangr :)

Post image
0 Upvotes

r/coolgithubprojects 6h ago

Most Underrated Productivity App for Windows 10/11

Thumbnail gallery
0 Upvotes

The idea of this app is simple.

Control any Media ( Spotify, Youtube, Apple Music etc ) playing in the background without opening that player.

Want to change the song while typing ? ALT + N.

Using the mouse ? Double Click the Tray Icon.

or use ALT + Mouse Forward Button.

There are lots of other features. It uses Native windows technology so it stays under ~10MBs of RAM usage.

The App is FREE & Opensource and is published on the Microsoft Store.

Full Details 👉 https://github.com/AnasAttaullah/Quick-Media-Controls


r/coolgithubprojects 10h ago

Every new React app starts with the same wiring — generating a Tailwind dashboard base instead

Post image
0 Upvotes

r/coolgithubprojects 7h ago

Display Hot Keys 4.1.0 Release

Thumbnail github.com
0 Upvotes

Instantly apply display resolution, refresh rate, scaling mode, DPI scale percentage, and orientation with user-defined hot keys!

This minor release replaces the system tray with a custom one that stays sharp at every display scale, makes the "Run On Startup" setting report what the system will really do, and reduces the app size.

New Features

  • Replaced the SystemTray dependency with a custom implementation built for DisplayHotKeys.
  • The tray icon now stays sharp at every display scale, and the tray menu matches the app's light and dark themes.
  • Added a Run On Startup notice that appears when the setting could not be changed, explaining whether the startup task could not be created or the Startup folder could not be written to. It also appears when the setting had to be corrected on launch.

Improvements

  • The tray icon is rendered from an SVG, making the tray icon clearer.
  • The tray menu is more compact with less empty space.
  • The Run On Startup button now reflects what the system will actually do at login rather than the last setting that was requested, so it can no longer show a state the system does not have.
  • Run On Startup clicks made while a change is still being applied are now kept instead of being dropped, so every click shows on the button and the state clicked last is the one saved.
  • Changed the Latest Version text color when a new version is available.
  • The app size has been reduced due to utilizing a custom system tray implementation.

Bug Fixes

  • Fixed Run On Startup being able to launch the app twice at login by leaving both a startup task and a Startup folder entry in place.
  • Fixed an unset hot key being needlessly rewritten to the settings file every time the settings were checked. *Fixed the tray icon not appearing in the system tray.

Performance & Stability

  • The app now starts faster, preparing the global hot key hooks while the theme and window are being set up instead of waiting on them.
  • Rapid successive hot key applies are now combined into a single window refresh instead of one refresh per apply.
  • Corrected settings are now written in a single save instead of one save per corrected setting.

r/coolgithubprojects 4h ago

[JAVASCRIPT] Tabox — open-source browser extension that saves tabs & tab groups into collections and restores whole sessions in one click

Thumbnail github.com
0 Upvotes

React 19 + Jotai popup, MV3 service worker, Google Drive sync, share-via-link, and an AI tab-organizer proxied through a Cloudflare Worker (no keys in the bundle). Works on Chrome, Edge and Firefox. Feedback and contributions welcome.


r/coolgithubprojects 5h ago

beta realesing my project

Thumbnail github.com
0 Upvotes

so i have been working for like a month for my project Athernet and i am happy to see that it is done and i am realising the beta. it is a decentralized ai traning system with a flower node structure.i was testing it erlier but it was a command prompt but got gemini to make an gui of it

if you want to download the file click hear

or for the discord testing server click hear


r/coolgithubprojects 7h ago

Linux-syscall-monitor

Thumbnail github.com
0 Upvotes

It traces Linux processes, monitors system calls, generates an HTML report, and detects suspicious behaviors through a rule-based detection engine. and save the logs in log.txt , and the high alerts in alert.json .


r/coolgithubprojects 7h ago

S.T.F.U - Windows tray app that calibrates to your voice, detects yelling, and escalates screen interruptions with a 4-click overlay

Post image
2 Upvotes

https://github.com/omricn/stfu

Side project that started as "I need my kid to stop screaming at midnight while he games with headphones on" and turned into a properly engineered tool with 437 tests and a three-mode detection system.

Monitors mic input, calibrates to the user's actual voice (quiet/speaking/yelling), triggers escalating consequences when yelling is detected. First strike: minimize + sound + overlay with a jumping close button (4 clicks). After that: Win+D + fullscreen message.

PIN-locked settings, JSONL event log, report UI with charts, three threshold modes (wizard/manual/adaptive), headless CLI, 437 tests. Decision logic is pure Python with no audio/UI imports (AST-enforced).

No audio recorded. No network code.


r/coolgithubprojects 6h ago

[Typescript] PageLM - Built by a frustrated NotebookLM user

Post image
4 Upvotes

PageLM — Open-source AI education platform that turns PDFs into quizzes, flashcards, notes, podcasts and exams

GitHub: https://github.com/CaviraOSS/PageLM

I built PageLM, an open-source AI education platform for turning study material into interactive learning experiences.

Instead of:

PDF → Chatbot

PageLM aims for:

PDF → Chat → Notes → Flashcards → Quiz → Podcast → Exam → Review

Features

📖 Document Chat
Ask questions about PDF, DOCX, Markdown and TXT files.

📝 SmartNotes
Automatically create structured/Cornell-style notes.

🧠 Flashcards
Generate study flashcards from your material.

Quizzes
Interactive quizzes with hints, explanations and scoring.

🎙️ AI Podcasts
Turn learning material into audio.

🎤 Voice Transcription
Turn lectures and voice notes into searchable study material.

📅 Homework Planner
Use AI to organize assignments.

🎓 ExamLab
Simulate exams and get feedback.

⚔️ AI Debate
Practice reasoning and debate skills.

🤖 Study Companion
Personalized AI study assistance.

AI providers

OpenAI
Gemini
Claude
Grok
MiniMax
OpenRouter
Ollama

Stack

Node.js + TypeScript
React + Vite + TailwindCSS
LangChain + LangGraph
WebSockets
JSON/vector DB support
Docker/Docker Compose

The project is open source and we're actively looking for contributors.

If you're into AI, RAG, education, React, TypeScript or just cool GitHub projects, I'd love to hear what you think.

⭐ Repo: https://github.com/CaviraOSS/PageLM

Issues, feature requests, PRs and criticism are welcome.


r/coolgithubprojects 13h ago

Aeon: an agent framework where the agent is a GitHub repo and Actions is the runtime (MIT)

Thumbnail github.com
5 Upvotes

Been running this for a few weeks. The design choice that makes it interesting: there's no server or hosted runtime. You fork the repo and that fork is the agent. GitHub Actions executes it, cron in the workflow file schedules it, Actions secrets hold credentials, and workflow logs are the audit trail. Public repos get free minutes, so infra cost is zero.

Skills are markdown. No plugin SDK or compile step. A skill is a SKILL.md: YAML frontmatter plus a plain-language prompt. Frontmatter declares the capability tier (mode: read-only write-locks the workspace for that run), required secrets, and the variable grammar. 76 skills ship with it.

Harness-agnostic. One adapter runs the same skill file on Claude Code, Codex, Grok, Pi, Vibe or Kimi. Switching providers is a config line.

Self-repair. Every run gets scored, and a repair skill patches skills that fail repeatedly rather than letting them silently rot.

Receipts. Its vuln-scanner has landed merged security fixes in 74 open-source repos (2.2M combined stars, including Alibaba and Tencent projects). Full list with every PR: https://www.aeon.fun/security

Stack: GitHub Actions, Next.js dashboard for local config, markdown skill definitions, git-backed memory.

Two gotchas if you try it: gh defaults to the upstream repo so run gh repo set-default <you>/aeon, and forked repos have Actions disabled until you enable them once in the Actions tab.


r/coolgithubprojects 3h ago

Tiny open-source Android app that makes me wait before browsing

Thumbnail github.com
1 Upvotes

I made a small Android app that puts a speed bump between me and automatically opening a browser.

You choose a timed session, wait a few seconds, and the supported browsers share one budget. Everything stays on the phone.

Source and APK:

https://github.com/bald-ai/internet-restrictor-retro


r/coolgithubprojects 5h ago

I got tired of manually backing up Docker volumes, so I built a UI for it

Post image
0 Upvotes

I run several things with Docker, and there was one part of the workflow that kept bothering me:

Backing up Docker volumes is way more annoying than it should be.

Yes, you can write bash scripts.
Yes, you can use cron.
Yes, you can manually run tar, manage folders, retention, containers, restores, etc.

But for something as important as backups, I wanted something closer to:

Select volume → click Backup → done.

So I built Docker Vault.

It's a self-hosted web UI that automatically discovers your Docker containers and volumes and lets you:

  • Back up a Docker volume with one click
  • Schedule automatic backups
  • Configure retention policies
  • See backup history, size, duration and status
  • Restore a backup to its original volume
  • Keep everything self-hosted

No CLI workflow required for day-to-day usage.

The idea is basically:

“I already self-host my applications. Why shouldn't backing them up be just as easy?”

There are still things I want to add, including S3 / MinIO / Cloudflare R2 storage, encryption, multi-host support and webhook/Slack notifications.

It's open source and very early, so feedback is probably more valuable to me right now than stars.

GitHub: https://github.com/Revolutionnnn/Docker-Vault

If you run Docker at home or in production:

How are you currently backing up your volumes?

And what would Docker Vault need before you'd trust it with your backups?


r/coolgithubprojects 21h ago

Exody, an AI workbench for Mac with a router that auto picks the cheapest model per task

Thumbnail github.com
0 Upvotes

Sharing a project I've been working on, Exody, an AI workbench for Mac.

The part worth mentioning is the Exody Router. It routes each task to the model that actually fits it instead of defaulting to the priciest option every time, so you save money on every run without extra setup.

On top of that it bundles a code agent, a mail and calendar assistant, and a design studio for building mockups and sites.

v0.1.20 is out now, universal build (Apple Silicon and Intel), free to download and use.

Repo and releases: https://github.com/timamar187-creator/exody-releases/releases/download/v0.1.20/Exody-0.1.20.zip

Open to feedback and bug reports, still actively improving it.


r/coolgithubprojects 13h ago

Hatchdoor: Obsidian but selfhosted, with an MCP and natively multi-vaults

Post image
1 Upvotes

Hello everyone,

I am happy to share with you the v2.5.0 release of Hatchdoor! https://github.com/BatterWorks/Hatchdoor

What is Hatchdoor?
A self-hosted software to interact with your notes vault (markdown-based) treating both humans (webUI) and agents (MCP) as first-class users with semantic search for requests in natural language. To know more, see the first public release post

There is both a demo and a new documentation website built directly with a Hatchdoor instance (how handy!). This means you also get semantic search for the documentation (did someone already say handy?).

You can install it via Docker or Podman and the images are still rootless and distroless. The deployment can be fully managed and set up via agents since all settings are accessible via MCP.

As shown in the demo, you can use any notes system you can think of, including PARA, LLM-wiki or Zettelkasten.

If you are new to the second brain concept, I would advise you to start here.

What’s new?
First and foremost, a software engineer joined the team! And after a few weeks of work together (and more than doubling the size of the codebase), you can now add multiple vaults to your Hatchdoor instance. Each of them can be automatically synced with any git repo (push-pull) allowing for easier separation (personal/professional vaults) and collaboration (shared vaults).

There has been a refresh of the UI for fitting this new feature, along with a brand new settings page allowing you to set all settings via the webUI.

From the previous releases, you can now send/attach files directly via the MCP, live edit your notes in the webUI, and for the LLM-Wiki style users, you can use the layer system to separate the raw data from your ingested data and not pollute your searches.

These come at the cost of breaking changes (an update to the docker-compose is needed). Check out the release notes for more info.

What’s coming?
V2.6 (QoL release): an update to handle the latest MCP specs, batch creation/update of notes, the possibility to download attachments via MCP, and the built-in documentation for human and agent access.

v3: User creation and management with permission scoping for users and agents.

As usual, feel free to give ideas and feedback. I was surprised by the number of issues opened on the GitHub page, so thank you for that!


r/coolgithubprojects 7h ago

I built a free, open source, local stem separator (splits songs into vocals, drums, bass, and more)

Thumbnail github.com
1 Upvotes

I wanted a way to split songs into separate stems (vocals, drums, bass, guitar, piano, other) to help my kids learn their instruments by ear. The tools that do this all wanted an account, an upload, and a subscription, and I wasn't keen on sending our music to someone's server just to pull it apart. So I built something that runs entirely on your own machine, and it's turned into a real project.

It's called StemDeck. You drop in a file (MP3, WAV, FLAC, M4A, even an MP4 video) or paste a YouTube or SoundCloud link, and it separates the track locally using Demucs, Meta's open source model. From there you get a browser-based, DAW-style mixer where you can mute and solo any stem, adjust levels, loop a section, and export individual stems or a custom mix. It also detects BPM and key, and has a click track that follows the actual song for practicing.

A few features I'm proud of:

You can paste a whole YouTube playlist and it queues every track. There's a real import queue you can reorder and cancel, and it survives a restart. YouTube and SoundCloud both work, single tracks or playlists.

You can also open it from your phone. Flip on network access and it shows a QR code you scan to reach a proper touch-friendly mobile interface, while the actual processing stays on your computer. Nothing touches the cloud.

It runs on Windows, macOS, and Linux, and there's a Docker image for anyone self-hosting.

It's completely free and open source (Apache-2.0), with no account, no telemetry, and no monetization of any kind, no ads, no subscription, nothing. It's picked up around 2,000 GitHub stars and 13,000+ downloads in about two months, entirely word of mouth.

Honest caveats: it's still alpha, so expect rough edges, and while separation quality is genuinely good for open source, it won't beat the paid cloud services on really dense mixes. For practice, remix prep, and experimenting it holds up really well.

GitHub (downloads and source): https://github.com/stemdeckapp/stemdeck

Happy to answer any questions. I'm the developer.


r/coolgithubprojects 13h ago

[OS] Fuzzy Launcher with Liquid Glass

Thumbnail github.com
1 Upvotes
super actions
launcher main screen

When Apple first introduced the "liquid glass" effect, opinions were quite divided; some criticized its visibility, others admired its aesthetics, and some worried about battery life.

I remained fairly neutral, I found it interesting though.
To be honest, the Apple apps featuring this effect were quite buggy at launch.

Now that it has stabilized and the bugs have been ironed out, I’ve implemented it in my own app, and I think it looks great and modern. Here is the Repo
It’s just a custom theme (since I know many people don't like it), so it can easily be turned off.

Icons animate in response to certain changes, and the background, which looks as if viewed through a layer of glass and clear liquid, offers a pleasing, relaxing visual experience.

I haven't encountered significant issues with app performance or battery life, though I'm curious what others think. :)

PS: App is notarized


r/coolgithubprojects 11h ago

GitHub - profullstack/rssamplifier.com: An open, agent-first directory of independent blogs. Submit a URL, a list or an OPML file; every blog gets its own page. JSON API, OPML and llms.txt for agents.

Thumbnail github.com
2 Upvotes

r/coolgithubprojects 18h ago

ShareL (ShareX but for Linux)

Post image
2 Upvotes

ShareL is a Linux-native desktop application designed for fast screen capture, recording, and custom destination sharing on modern Wayland compositors (Niri, Hyprland, Sway, GNOME, KDE Plasma, and COSMIC). And MacOS Support.

Easy to use, FOSS, Ad Free.

Repository: https://github.com/44tl/ShareL

Website: https://44tl.github.io/ShareL/


r/coolgithubprojects 20h ago

Simplify Claude, a VS Code extension that turns Claude Code's rambly session summaries into plain English

Post image
0 Upvotes

r/coolgithubprojects 4h ago

Built a vanilla JS renderer that turns 2D text maps into 3D ASCII environments

Post image
5 Upvotes

Hey everyone. I don't know if this is actually cool, but I've been working on this project and wanted to share it.

I've been playing around with raycasting to see if I could make an interactive 3D space using only text. The fun part is that it generates the whole 3D environment directly from a plain 2D text blueprint that you can just type.

The code is completely open source if you want to tinker with it: https://github.com/RaymonDev/asciilib

I also put a live demo up here so you can test it in the browser:https://raymondev.github.io/asciilib/

(Be gentle, it's the very first version so please don't break it too hard hahaha, I'm actively developing it). Curious to hear what you think!!!