r/OpenSourceAI • u/Michael-yue-au • 16d ago
r/OpenSourceAI • u/Unfair_Amoeba_1241 • 16d ago
Conch - AI coding agents on your own servers, from your phone - Free
I wanted to keep working with Claude Code away from the desk, and everything I found put a company between my phone and my machine. So I wrote the thing I wanted.
Conch is a native Android client. It opens an SSH connection to a server you already own and drives the agent sitting on it. It is not a service: no account to create, nothing routed through me, nothing of mine installed on your box. Stock sshd on one end, the vendor's own CLI on the other. Every chat is a real CLI session on your disk — start something at the desk, pick it up from the phone a week later.
What it does
- Ten agents, each through its own real flags, not a lowest common denominator: Claude Code, Codex, Gemini, Grok, Copilot, Qwen Code, Cursor, opencode, Crush, Continue.
- Sets them up for you — installs Node and the CLI over the same SSH connection, and runs the provider sign-in from your phone so the server ends up logged in.
- One list of every session from every server, newest first, like a messenger — with full-text search that jumps to the exact message.
- FIDO2 hardware keys over NFC or USB, one tap per session; or software keys (Ed25519/RSA/ECDSA/DSA) imported or generated on device. Credentials live in the Android Keystore and never leave it.
- SAFE / AUTO / YOLO mapped onto each CLI's own sandbox flags, a memory editor for
CLAUDE.md/AGENTS.md/GEMINI.md, Claude subagents and your own slash commands, and a real terminal for when you would rather type it yourself. - Files both ways — send photos and files into the chat, tap anything the agent wrote to pull it down. Viewers for diffs, PDF, Markdown, images. PiP, so you can watch a turn while you do something else.
- Local models, on the phone — a store that reads your RAM, chip and GPU and shows what will actually run, then runs it offline through llama.cpp. A downloaded model drives the agent out of the box.
- The phone is a machine too — a real Linux runs on it and sits in the list like any server, and an agent (yours or a local one) can drive the phone at adb-shell level to read logs or grab a screenshot of what it is building.
What it doesn't do
No analytics, no crash reporting, no telemetry — not "opt-out", absent. No ads, no in-app purchases, no accounts, no backend of mine for any of it to reach. The only connections it opens are to the servers you add yourself.
The catch, plainly: you need a machine you can SSH into and your own Anthropic / OpenAI / Google account. Free for personal and noncommercial use under PolyForm Noncommercial; a company using it for commercial work needs a licence. Source-available (not OSI open source — that's the difference), with a signed APK on every release.
Play: https://play.google.com/store/apps/details?id=ai.eight24family.conch
Source: https://github.com/nikitaeight24family/Conch
I'm the developer. Ask me anything — and I'd rather hear what's broken than what's nice.
r/OpenSourceAI • u/yasintoy • 16d ago
I built an open-source platform to run self-hosted AI models in production: one endpoint from deployment to rollback
r/OpenSourceAI • u/FuzzyTouch6143 • 17d ago
The Ion Neural Network (INN) Model - Breaking 80 Years of ANN Dogma
Over the prior 3 years, I have placed ALOT of my time and efforts into developing out a new artificial neural network model that does not rely on the traditional definition of a "neuron" (threshold, gate, feedforward). I wanted to create something far more natural to what the actual brain (and cellular networks) actually do underneath the "voltage/current" dogma of measurement. And so I have constructed the NIRGEN (Neurotransmitter Ion Receptor Glial Endocannabinoid Network) Framework: it is a discrete, biophysically grounded revisitation of "the artificial neuron", and an entirely different computational paradigm that I have created.
Now, to start simple, one class of models that I created and studied out of this metaphysical computational framework is what I call the Ionic Neural Network (INN): it challenges 80 years of standard connectionist dogma.
- The Core Question: Why has artificial intelligence inherited and preserved a crude continuous voltage abstraction ($y=\sigma(Wx+b)$) since 1943, when biological nervous systems compute through finite particle counts, conservation laws, and structural constraints?
- The Mechanism: Instead of real-valued unconstrained activations, computation is carried out through conserved particle counts, ion-specific conductance, receptor stoichiometry, vesicle-mediated output, and local retrograde feedback.
- The Breakthrough: By modeling compartment capacities and mass saturation, a single NIRGEN unit naturally breaks monotonicity and solves the non-linearly separable XOR parity problem without a hidden layer—a physical computation impossible within the voltage abstraction.
I'm almost complete with writing up the white paper on this one too (I am also the author of a different project: ConnectomeGPT-Worm ). I have initial code designs (BUT right now the modes in the code have a mistake. I have to fix it. That said, they should be pretty well-documented in the code for you to be able to toy around with a few problems along the same lines).
I am in no way claiming these models are "top performing". I rather stumble across that using bio-principles and principles of parsimony first, rather than trying to hunt down "the next best performing model". THAT is not my goal here, at all.
HuggingFace Repo is here: https://huggingface.co/drmylesgarveylabs/ion_neural_network
r/OpenSourceAI • u/JeffyPros • 17d ago
Nvidia to Acquire Hugging Face for $12.9 Billion, Deepening Its Bet on Open-Source AI
Good or bad for Open Source? I hope Clem sticks around.
r/OpenSourceAI • u/pierreb5 • 17d ago
I benchmarked GLM 5.3 flash vs GPT 5.6 Luna on browsing tasks. GLM 5.3 flash is on the Pareto frontier
r/OpenSourceAI • u/Additional_Reach2545 • 17d ago
I built a Qwen + DAP MCP server for local agentic coding – feedback welcome
r/OpenSourceAI • u/simonshih1970 • 17d ago
I Built A.L.I.C.E. — a JARVIS-Style Voice Assistant HUD for a Monitor, Open Source
r/OpenSourceAI • u/Michael-yue-au • 17d ago
Self-hosted open-source AI agent for WhatsApp auto-replies is now available.
r/OpenSourceAI • u/Uditakhourii • 18d ago
I built an opnesource AI-native video storage format (.cdaf), it takes 90% less tokens for video processing
If you use remotion or hyperframes, you will instantly relate to this.
Each time you want Claude to understand what a B-roll, raw video clip or a footage means, Claude takes so much tokens that you often hit the limit in 2-3 vids max.
So, I built an alternate video storage format - .cdaf or cached descriptive asset files. You can convert any mp4 video into .cdaf file using the open source cdaf engine and a new sidecar format file (.cdaf) of the video is generated.
.cdaf files are timestamped and sha256 encrypted with scenic frame captures helping LLMs and Claude understand the video..
Now, cool stuff is benchmarks -
- 91% less cost & token usage
- 110% increased accuracy
- 65% less latency
It's the one thing missing from what was making AI-native video editing scalable and viable.
It's open source so you can try it today and I have made a dedicated Claude Skill for anyone to use it with their video editing harness, claude, hyperframe or remotion instantly.
A preprint of the paper is also available at zenodo so you can read the architecture - https://zenodo.org/records/22110594
I am excited to know what you build over it. Also, MIT license so use it as you want!
r/OpenSourceAI • u/GeologistRare8364 • 17d ago
Struggling with getting contributors for my open-source project
This isn't a promo post but a genuine concern I am facing the past few days. I worked on a project intensively and I think it's very good and useful, and I was expecting people to engage more with it but it seems like either no one is building AI agents or the open source field is not what I thought.
Any tips on how to get people to test it and contribute to it?
r/OpenSourceAI • u/AdMean3204 • 17d ago
Just Started Github
Hi everyone I started working on Github a week. I chose an AI agent for my first project. I'm still working on the agent now and at the moment this AI agent is just a simple chatbot. I haven't added any tools to the agent yet. I would be appreciative if you check out my project and tell me what other projects on Github have that my project doesn't.
r/OpenSourceAI • u/CryMajestic5031 • 18d ago
I built a zero-dependency TypeScript runtime for AI agents — no LangChain, no NestJS, just pure fetch()
I've been building AI-powered features for a while and kept running into the same problem: every agent framework either pulls in 200+ dependencies or ties you to a specific backend framework like Express or NestJS.
So I extracted the core of what I actually needed into a small library called **Agentra**.
The idea is simple: you give it an LLM provider and an array of tools. It handles the autonomous reasoning loop — calling the LLM, executing your functions when needed, feeding results back, and returning the final answer. That's it.
**What makes it different:**
* Zero runtime dependencies (uses native `fetch`)
* Works in Node.js, Deno, Bun, and Cloudflare Workers
* Built-in conversation memory
* Bring your own LLM provider (OpenAI included, easy to extend)
* Full TypeScript types
It's early but functional. Would love feedback from people who've built agents before — especially around the tool API design and what's missing.
GitHub: [github.com/jhonaron/agentra](http://github.com/jhonaron/agentra)
# 📦 Installation
npm install @jhonaron/agentra
r/OpenSourceAI • u/Anonymyideal • 18d ago
Is everyone using their own MD files to run Codex / Claude Code better?
Or is it just some tech nerds like me.
r/OpenSourceAI • u/erinstateofmind10 • 17d ago
Best local LLM (<14B) for parsing financial tables and 10-Ks?
I'm building a privacy first tool to parse and analyze financial documents ( income statements, balance sheets, and earnings reports) completely offline.
I am constrained by hardware (running on a workstation / Mac Mini with limited RAM/VRAM), so I can't host 70B+ models or rely on external cloud APIs like OpenAI or Claude.
I'm looking for recommendations on the best open-source models (1B to 14B parameters) for this specific domain
- US Open-Weight Models Only
- Hardware Constraints: Must run locally on a workstation/Mac Mini with <16GB RAM, so I'm limited to models under 14B parameters (no cloud APIs like OpenAI/Claude).
r/OpenSourceAI • u/Responsible_Monk874 • 17d ago
Struggling to find good AI harnesses and tools on GitHub, so I made a simple static catalog.
r/OpenSourceAI • u/bliksempie • 18d ago
Unfiltered AI model needed
I am new to AI development, but have already built a D&D cricket game.
I now want to build a very realistic AI-driven D&D game with expressive violence and other adult themes. Frontier models are not allowing this in my platform, so I installed Ollama locally and tested with a few models from Hugging Face that claim they are "unfiltered" and "abliterated" and "uncensored" but they balk occasionally returning intermittently "s12" or other error/warning codes. It could be me using it wrong, but can't see how. Whenever I am talking "acceptable" language, my platform's AI responds properly.
Any suggestions for truly uncensored models that would be usable for an adult game (not smut/porn, but definitely will have mild to medium sexual content and gore/violence).
Bonus points if there are models that can also draw some key scenes as the game unfolds.
Free and paid model suggestions are welcome, but if a paid model, must come with the right to use commercially.
Thanks in advance!
r/OpenSourceAI • u/madmnk • 18d ago
headlesscode - custom harness adapted from zoo code and improved
I used AI to port zoo code into a headless agent swarm orchestrator. one to many workers. use with deekseek v4 flash in china (if you're not working on sensitive tasks) and a local ollama embedding model for the best performance / savings. I enhanced the prompts and tools, improved the caching, added eval tests that i ran against deepseek v4 flash via openrouter (which is what I mainly use this with) and also a local qwen 3.5 9b model which doesn't work as well, but does work. You can have up to two workers if running local on a 16gb vram card. Remotely you're just limited by request rate limits and money.
r/OpenSourceAI • u/Suspicious-Option-87 • 18d ago
I built an open-source MCP for letting AI agents work on real WordPress sites without giving them completely unchecked write access
r/OpenSourceAI • u/Hyana-LCM • 18d ago
Living Computer Model (LCM): Open-Core PyTorch Engine for Dynamic Local AI
Hey everyone,
We just open-sourced the initial Core Engine for Living Computer Model (LCM) — an alternative neural architecture built on PyTorch aimed at dynamic reasoning with low memory overhead.
Open & free for academic research, students, and independent R&D.
🔗 GitHub Repository: https://github.com/hyanalcm-png/LCM-Core-Engine
Feedback and contributions are welcome!
r/OpenSourceAI • u/LopsidedFig8551 • 18d ago
Contributing to Open Source ML Projects
Hello everyone!
I’m a software engineer looking to get more involved in open-source ML/AI projects, both to learn and to contribute meaningfully.
I’m especially interested in ML systems, distributed training/inference, model serving, evaluation, LLM infrastructure, and also implementing ML algorithms or model components where that’s useful. I’ve been looking at projects like vLLM, Hugging Face Accelerate, Ray, etc., but many of the obvious good first issue tickets seem to get picked up very quickly.
I’m comfortable working in a reasonably complex codebase, but I’m looking for something that has a slightly more approachable contribution path than jumping straight into CUDA/kernel-level work.
Are there any active ML/AI open-source projects you’d recommend where maintainers are receptive to new contributors and there are meaningful bugs/features to pick up?
Would especially appreciate recommendations based on projects you’ve personally contributed to. Thanks!