r/AI_Application

▲ 14 r/AI_Application+8 crossposts

I built an open-source Agent Verifier for Claude Code, Cursor & other Coding Assistants that catches security issues, hallucinated tools, infinite loops and anti-patterns in Agent built using LangChain, LangGraph, and other frameworks. (free, open source, 100% local)

I've been using Claude Code for a few months and noticed AI agents consistently skip the same things: hardcoded secrets, unbounded retry loops, referencing tools that don't exist, and massive system prompts that blow context windows.

So I built Agent Verifier — an AI agent skill that acts as an automated reviewer which does more than just code review (check the repo for details - more to be added soon).

GitHub Repo: https://github.com/aurite-ai/agent-verifier

Note: Drop a ⭐ if you find it useful to get more updates as we add more features to this repo.

----

2 Steps to use it:

You install it once and say "verify agent" on any of your agent folder in claude code to get a structured report:

----

✅ 8 checks passed | ⚠️ 3 warnings | ❌ 2 issues

❌ Hardcoded API key at config.py:12 → Move to environment variable
❌ Hallucinated tool reference: execute_sql → Tool referenced but not defined
⚠️ Unbounded loop at agent/loop.py:45 → Add MAX_ITERATIONS constant

----

Install to your claude code:

npx skills add aurite-ai/agent-verifier -a claude-code

OR install for all coding agents:

npx skills add aurite-ai/agent-verifier --all

----

Happy to answer questions about how the agent-verifier works.

We have both:
- pattern-matched (reliable), and,
- heuristic (best-effort) tiers, and every finding is tagged so you know the confidence level.

----

Please share your feedback and would love contributors to expand the project!

u/Chance-Roll-2408 — 4 hours ago
▲ 52 r/AI_Application+21 crossposts

I’ve been working on Murmur, a local text-to-speech app for Apple Silicon Macs.

The new feature I’m building is called Projects / Story Studio, and it solves a problem I kept running into:

TTS tools are fine for one-off clips, but messy for actual audio projects.

If you’re making a podcast segment, audiobook chapter, course lesson, ad, or game dialogue, you usually need multiple speakers, multiple takes, pauses, reactions, music, edits, exports, and a way to come back to the project later.

So I built a project-based workflow:

Write a script → assign voices → generate dialogue → edit clips on a timeline → add music/SFX → export final audio.

It supports things like:

  • multiple scripts inside one project
  • Host / Guest / Narrator / Character speakers
  • inline tags like [pause], [laugh], [chuckle]
  • per-block regeneration
  • timeline editing with waveforms
  • media lane for music and SFX
  • ripple editing and gap tools
  • WAV/M4A export
  • transcript and stem export

Everything runs locally on Mac, so long scripts and voice samples do not need to be uploaded to a cloud service.

I’m still polishing the workflow and would love feedback from Mac users, especially people who make podcasts, audiobooks, courses, YouTube narration, or game dialogue.

u/tarunyadav9761 — 12 hours ago
▲ 9 r/AI_Application+5 crossposts

Student dev, I built a fully local AI assistant for iPhone

Hi everyone! I’m a student developer interested in AI, and I recently released my first iOS app, Orion Personal AI.
Orion is a fully local LLM for iPhone. It’s built with Swift/SwiftUI and runs entirely on device using Dolphin 3.0 (Llama 3.2). No account is required, and no conversation or personal data ever leaves your device.

Rather than trying to compete with cloud models like ChatGPT, my goal was different. I wanted to create a privacy first, offline AI assistant that anyone could use without downloading models, configuring settings, or dealing with technical setup. Just install the app, complete the onboarding, and start chatting.

I spent a lot of time designing the onboarding experience because I wanted Orion to feel more like your own personal assistant than just another chat interface. The onboarding is meant to be part of the experience.

The initial launch can take a little while, especially on older iPhones, since the model has to load into memory. I’ve tested it on older generation iPhones, and while it’s naturally slower than newer devices, it still works well.

One design choice I made intentionally was not to build a generic interface for loading arbitrary local models. There are already great apps for that. Orion is meant to provide a polished, zero setup experience centered around one carefully chosen offline model.

It also works on iPhones that don’t support Apple Intelligence, so older devices can still have a capable offline AI assistant.

I’d genuinely appreciate any feedback.

Thanks for taking the time to check it out!

apps.apple.com
u/coderpeak — 2 days ago
▲ 1 r/AI_Application+1 crossposts

Thinking about this week, what made you open the most different regular apps or AI apps?

For me, I often jump between calendar, email, weather, notes, grocery lists, maps, and messaging. What about you?

reddit.com
u/shilpasmartuser — 2 days ago

Is this worth building

I've been thinking about an app idea for a while and wanted to get some brutally honest opinions before I spend months building it.

At first it was just an AI chat analyzer, but then I realized ChatGPT can already do that pretty well, so I kept asking myself what would actually make someone download a separate app.

The idea slowly changed into something I'm calling a Relationship Intelligence Engine. Instead of analyzing one conversation and forgetting everything, it would remember your relationship over time. It keeps track of previous conversations, important events, communication patterns, mistakes you've made before, things you're trying to improve, and follows up on them later.

So instead of opening the app and asking "analyze this chat," it might say something like, "A few days ago you said you were going to stop sending emotional paragraphs and give them some space. How did that go?" Or, "This argument looks very similar to the one you had last month."

The idea isn't to replace therapy or pretend the AI knows your relationship better than you do. It's just supposed to give advice with long-term context instead of starting from zero every single time.

My biggest concern is whether this is actually different enough from ChatGPT or if I'm just building an overcomplicated AI wrapper.

Would you use something like this? If not, why? What would stop you from just opening ChatGPT instead? If you think it could work, what do you think would actually make people pay for it?

reddit.com
u/UnlikelyDragonfly659 — 5 days ago

What actually broke the first time you ran an agent in production?

Plenty of tools now for watching agents in production - budget caps, monitoring, guardrails. The question shifted from 'can it do the task' to 'what happens when it runs unattended at 3am with a credit card attached.' That second one is the real job. Shipping the agent was easy. So what made you add monitoring? A runaway loop, a cost spike, a tool call gone wrong? And did you buy something or build it yourself? Trying to find where the real gaps are.

reddit.com
u/sudo_human_ — 4 days ago
▲ 21 r/AI_Application+4 crossposts

Writing this article changed how I think about where AI is headed

While putting this article together, I realized how often people (myself included at one point) treat ChatGPT as if it's the end goal for AI.

The more I researched it, the more I came away thinking ChatGPT was really just the introduction.

The bigger story is everything happening around it.

AI is starting to search company knowledge, work with documents, analyze images, use software, and even complete multi-step tasks through agents. That's a much different world than simply asking a chatbot a question.

One thing that really stuck with me was how much Retrieval-Augmented Generation (RAG) changes what AI can actually do. Instead of relying only on what it learned during training, it can pull in current or private information before answering. That opens up a lot of possibilities for businesses.

Another takeaway is that AI agents aren't just better chatbots. They're designed to actually work through tasks, while people still stay in control of the final decisions.

If you're interested, I put everything together here:
https://aigptjournal.com/explore-ai/ai-guides/ai-evolution/

I'm interested to hear what everyone else thinks.

Do you see AI agents becoming the next major step, or do you think we're still in the "ChatGPT era" for a while longer?

u/AIGPTJournal — 6 days ago
▲ 7 r/AI_Application+7 crossposts

A!Kat Gen 6: Speed Improvements

For our first look into Gen 6, we're pulling back the curtain on our massive Speed Improvements. We completely retired our old Streamlit frontend and rebuilt the entire user experience from scratch using high-performance native Flutter and Dart. The result? A custom, boutique UI that can keep up with you at every turn. Here is exactly how we cracked the latency barrier:

Our Three-Core Brain: We’ve organized our cognitive engines into three proprietary modes: Comms (optimized for rapid, fluid dialogue), Task (our baseline standard for production work), and Expert (unrestricted high-reasoning depth for complex problem-solving).

The A!Kat Query Router: We engineered a blazing-fast triage layer that skims massive payloads and accurately routes user intent to your private data vaults in milliseconds.

Sequential Audio Streaming: As you can see in the demo video, our new voice engine doesn't make you wait for a wall of text to finish compiling before speaking. We built a multi-threaded background pipeline that compiles text fragments sequentially, sending live audio chunk-by-chunk directly to our client-side player.

VibeSync Expression Processing: Our local RAM-cached expression layers map emotional context instantly, aligning visual shifts seamlessly with spoken text.

Glad to answer any questions!

u/johnsmusicbox — 6 days ago
▲ 74 r/AI_Application+26 crossposts

¿Siempre quisiste probar D&D pero no sabías cómo? ¡Creamos un RPG en solitario como D&D y, después de un año de pruebas, desde hoy ya está disponible!

¡Hola a todos!

Somos dos hermanos detrás de Master of Dungeon, y nos alegra mucho volver por aquí después de un tiempo desde que empezamos a compartir el proyecto.

Para quienes todavía no lo conozcan, aquí va un resumen rápido. Nos encantaba jugar a D&D, pero como a muchos de vosotros, cada vez nos costaba más mantener sesiones regulares. El trabajo, la vida, cuadrar horarios… cada vez era más difícil volver a sentarnos alrededor de la mesa. Así que, en lugar de dejar que esa sensación desapareciera, decidimos intentar recrearla de otra forma.

Así nació Master of Dungeon: un RPG de texto para un solo jugador, inspirado en la libertad y la narrativa de D&D.

Llevamos más de un año trabajando en él, pasando por varias fases de prueba, iteraciones y muchísimos comentarios de los primeros jugadores. Y por fin sentimos que estamos listos para dar el siguiente paso.

Aquí tenéis el enlace de Google Play:
https://play.google.com/store/apps/details?id=com.bitforge.mastersofdungeon&hl

Si jugáis en iOS, podéis hacerlo aquí:
https://testflight.apple.com/join/mg6UrBH9

La verdad es que tenemos mucha curiosidad - y también un poco de nervios - por saber qué os parecerá cuando más gente pueda probarlo.

Si queréis seguir el desarrollo más de cerca o entrar un poco antes, podéis uniros ya a nuestro Discord. Estamos preparando una recompensa especial para quienes nos acompañaron antes del lanzamiento oficial y ayudaron a dar forma al juego durante el camino.

Gracias por leer, y como siempre, nos encantaría saber qué pensáis ^.^

u/Tigeline — 11 days ago

AI tools for identifying technical champions?

How are you guys using AI to map out who the actual "technical champion" is inside a massive target account?? We’re trying to sell an infrastructure tool into enterprise accounts, and the classic LinkedIn Sales Navigator playbook is completely failing us. If a target company has 300 "Senior Software Engineers" or 50 "Engineering Managers" on LinkedIn, they all look exactly the same on paper. Our reps waste weeks trying to get meetings with generic job titles, only to find out that person doesn’t even touch the part of the stack we integrate with, or they completely lack the organizational sway to champion a new vendor. Our current process is just endless guessing and it's killing our sales velocity so i would appreciate any help here

reddit.com
u/New-Reception46 — 8 days ago

Are you using AI for full workflows or just single tasks?

Most people use AI for isolated tasks like writing or summarizing but I am seeing more use in full workflows like onboarding follow-ups and multi step automation

The challenge seems to be connecting steps so everything stays consistent over time

Are you using AI for single tasks or full end-to-end workflows?

reddit.com
u/Long_Fishing7406 — 9 days ago

Why are bot free ai note takers actually catching on this year

Maybe Im imagining this but it feels like every other thread in this space the last few months has someone moving away from the notetakers that join calls as a bot. Is there a specific reason this is happening now or is it just my feed?

Curious if its a privacy thing, a vibes thing, or compliance pressure. Seems like a real shift but I want to understand it before changing tools at work. Has anyone here actually thought through why theyre moving or is it just following the trend?

reddit.com
u/Choice_Run1329 — 11 days ago
▲ 3 r/AI_Application+3 crossposts

DETERMINISTIC VALIDATION APPLICATION

DVA

DETERMINISTIC VERIFIED APPLICATION

DVA is a controlled modification system built around one governing rule:

Change only what was authorized. Preserve everything else.

The system begins from an exact baseline and an explicit instruction. It converts that instruction into a bounded change plan, applies only the declared operations, and verifies the completed result against both the original package and the approved transformation.

DVA does not infer missing intent. It does not expand scope. It does not perform unrelated cleanup, modernization, restructuring, or correction. Any modification outside the declared change set is treated as a failure.

The system is designed for software, standards, archives, documents, and other structured bodies of work where uncontrolled change can damage the surrounding system.

Its purpose is not to make broad decisions for the operator.

Its purpose is to execute a defined decision without drift.

The resulting process is direct:

establish the baseline

define the permitted change

apply the permitted change

verify the resulting state

reject undeclared modification

DVA provides a disciplined boundary between instruction and execution. The requested change remains visible. The preserved material remains intact. The result can be examined against the exact work that was authorized.

DVA makes the change. DVA preserves the system.

github.com
u/rmhollid — 10 days ago

AI Coding Agent & Docs Drift

When your AI agent gives wrong code because of outdated context — would you want a dedicated tool for this, or do you expect Cursor/Claude Code to just fix it themselves eventually?

How do you currently handle this? Kindly walk me through it.

reddit.com
u/Main-Philosopher-474 — 12 days ago

What AI workflow saves you the most time every week?

There are a lot of AI tools that can generate content write code or answer questions

The biggest time saver I have found, though is workflow automation especially for repetitive tasks that normally require constant manual updates and monitoring Tools like Sequenzy are interesting because they focus on automating entire customer journeys not just creating individual pieces of content

I am curious what AI powered workflow or automation has had the biggest impact on your productivity and what problem it solves that was not easy to handle before AI

reddit.com
u/Hot_Strategy9568 — 11 days ago

looking for a real AI memory PRODUCT

Im looking for an easy to setup AI memory tool, without out having to go to Github and do it by myself. A real PRODUCT not a hobby project.

Any recommendation?

reddit.com
u/CautiousTwist7958 — 10 days ago

What's the difference between an LLM gateway and an API key?

Does an LLM gateway just sit between my app and the model provider to handle things like rate limiting, cost tracking, and fallbacks, or is it solving a problem I don't actually have yet at my scale? I'd rather not add another layer of infrastructure unless it's going to save me real headaches down the road.

reddit.com
u/00josa — 10 days ago

teams think they are evaluating an agent when they are only evaluating the final answer

Many teams think they’re evaluating their AI agents when they’re really only evaluating the final answer.

That works for chatbots. But agents are SO different.

An agent plans, chooses tools, passes arguments, reads tool outputs, retries, and sometimes takes actions. A lot happens between the prompt and the answer.

The problem is that an agent can return a correct answer after calling the wrong tool, taking unnecessary steps, misreading a result, or recovering from an earlier failure.

If you’re only looking at the final output, you won’t see most of that.

Your assumption therein becomes: “The answer was correct, so the agent worked.”

Are you looking at execution traces, or mostly the final output when evaluating your agents?

reddit.com
u/ExplorerRin — 12 days ago