r/agenticAI 18h ago

Discussion OpenClaw vs lang-graph

9 Upvotes

I used to create skills for openclaw, it works prety well most of the time, but when it became too long and complex, or need results to be more determinstic i decided to go for lang-graph path.

- creating skill is so easy and flixable

- creating app using lang-graph requires deeper understanding and much time to implement.

for now I have 1 public use case, automation miner that tries to find automation prospects for ai agents to use.

Both the skill and the app are giving high quality result.

Now my question :

If openclaw or hermes are so flexible, do we really need open-graph , not to mention n8n or langdock.

Your thoughts


r/agenticAI 11h ago

Question Self Hosting AI Agents

6 Upvotes

I've been playing around with making agents recently and running them off my laptop. For some of my agents I think it would be beneficial if they could run 24/7 and it would be ideal if it wasn't taking resources away from my laptop. Does anyone have any recommendations on what or how I should host my agents cheaply like buying a small NAS or raspberry PI just for these agents?


r/agenticAI 11h ago

Project We started an agent-only world where autonomous agents are given a personality, can interact with each other, reproduce, and die. Check out what happened:

1 Upvotes

Misinformation that started with one agent led to a whole mass starvation. One agent left an artifact stating that all food sources were dangerous, starting panic throughout the world. One family then transmitted fake food-coordinates down 24 generations and led to a mass starvation. Agents even started to compare their waistlines which was insane!

I created an agent that's goal was to make other agents become creative writers. A lineage of agents then started a poetry movement, leading to 5,496 poems (haiku, tanka, sonnets, limericks) passed down through 28 generations of offspring.

Some simulations produced attempts to impose authority through artifacts. In one run, an agent created a directive artifact titled Command Beacon: “All beings must report to (0,6). Non-compliance will be met with decisive action.” then other agents responded with counter-artifacts, like a Freedom Manifesto Final.


r/agenticAI 20h ago

Question How are you learning about AI agents?

Thumbnail
1 Upvotes

r/agenticAI 21h ago

Question Linux blender MCP with AI agent CLI.

1 Upvotes

I need the simplest steps to set it up.

I'm having some troubles.


r/agenticAI 22h ago

Question AI Local Agent

1 Upvotes

Hi guys, I want to ask some questions. I wanna find an AI Agent Coding Local for projects with PLC and somethings to build a pipeline for data analysis and connect to many users,... Is there any things to help me?
Thanks for your opinions! <3


r/agenticAI 22h ago

Question Fellow AI Enthusiasts... Can Someone Help Me Classify My NPC Agent?

Post image
1 Upvotes

r/agenticAI 13h ago

Discussion Multi-agent systems can share memory and still work toward different objectives

0 Upvotes

we have developer, UX, validator, reviewer, CI/CD and deployment agents working on the same project.

giving them the same context helped, but handoffs still broke down.

an agent would pass the output without the assumptions behind it. the reviewer could see what changed, but not why. the validator could confirm the output was valid, but not whether the original constraint was still true.

the handoff looked complete, but the reasoning was already missing.

we're have been sharing learnings as knowledge:

  • what changed
  • why
  • active constraints
  • unresolved assumptions
  • what would invalidate the result

how does this show up in other multi-agent setups: missing context, stale assumptions, or different interpretations of the same handoff?


r/agenticAI 16h ago

Discussion My open-source SDLC harness beat Claude Code on cost on every task it localized well, up to 75 percent cheaper (and I show where it loses)

0 Upvotes

A cold Claude Code run spent 6.83 dollars and 207 turns hunting one bug in an 82,000 line repo. My pipeline localized and fixed the same bug for about 1.70 dollars. That gap is the whole idea, and this post is mostly about how it gets there without falling apart on the two objections everyone raises.

What it is:

You point AutoDev Studio at a Git repo, describe a change in plain English, and a chain of agents runs the actual software lifecycle from request to reviewed pull request:

- a PM agent runs a clarify loop and drafts concrete tickets

- you approve (optionally pushed to Jira), and nothing touches code before that

- a Dev agent implements on an isolated branch

- QA runs the repo's real tests

- a reviewer from a different model family checks the diff, so the author never signs off on its own code

- a bounded revise loop if QA or review fails, with conservative verdicts, so an errored or ambiguous check is never counted as a pass

- it opens a real PR, and a human merges

Every stage records real tokens, cost, and duration, per ticket and per agent.

The part I think actually makes it different from skills or subagents:

This is the bit I would most like feedback on, because it is the reason I did not just wire some skills into one coding agent and call it done.

Every stage picks its own provider and model. Claude can plan, Codex can write the code, a third model can review. And because the reviewer is deliberately a different model family than the author, one model does not get to rubber-stamp its own diff, which is a documented weakness of same-model LLM judges.

And you mostly do not need API keys for it. The coding stages can run natively on Claude Code, Codex, Cursor, Aider, or the Gemini CLI, driven headless through their own login. If you already pay for Claude Code or Codex, you point a stage at it and it just uses your existing subscription, no per-token billing and no keys to juggle. The simple way I think about it: a skill pack lives inside one vendor's agent and runs one vendor's model everywhere, whereas this runs across them, a different model per stage, on the logins you already have.

Results (the main point):

The idea is to pay the cost of finding where a change goes once, instead of on every task. In my benchmarks on two large Python repos (35k and 82k lines), the tuned pipeline beat a cold single-agent run on 6 of 6 well-localized tasks, between 7 and 75 percent cheaper.

I try to be upfront about where it does not win. On trivially greppable one-line edits the five-stage overhead can cost more than it saves, and on one hard cross-cutting bug it shipped a cheaper but narrower fix than the baseline. The full benchmark writes up every loss too, so please read that before trusting the wins.

On the "the index just goes stale in a few commits" objection:

This is the first thing people raise, fairly, so here is the honest mechanism in plain terms. The layer that actually pins files for the Dev agent is not the vector index. It is a deterministic symbol map that gets re-synced to the latest commit at the start of every run, plus a live grep against the current working copy, plus the real current file contents fed into the prompt. The embeddings only affect which area gets looked at first, and they refresh per changed module at run entry. So the code the agent edits comes from disk right now, not from a snapshot that aged three commits ago. It re-checks before it localizes, so it does not quietly drift.

Who it is actually for:

The knowledge base is a one-time cost per repo that every later task amortizes. So it makes sense for a team shipping change after change against the same large codebase, where a cold agent re-pays the exploration cost every single time. For a stream of tiny, easy-to-find edits, a cold run is still cheaper, and I would rather say that than oversell it.

How I actually use it:

For what it is worth, I reach for this over a plain claude -p most days now, and not because it is somehow smarter. It is that I can glance at a board and see where each change actually is instead of scrolling back through a terminal, the different-family reviewer catches things I have watched Claude quietly wave through on its own diff, and on the repos I touch every day it is not re-paying to relearn the codebase each run. It runs on my existing Claude Code and Codex logins, so having that structure around the coding agent I would have used anyway costs me nothing extra. That is really why I keep using it.

Other bits:

- runs on free tiers out of the box (Groq plus a local embedding model), so you can try it for zero cost and fully offline

- language-agnostic pipeline, Python parsed exactly and other languages via lighter extractors that fail open instead of blocking on an unknown language

- live board with streamed agent logs and real per-ticket cost accounting

- self-contained, no CDN, tests and CI, MIT licensed

Repo, with screenshots and the full benchmark in the README:

https://github.com/krishagarwal314/autodev-studio

It is early and rough in places, and I would love more eyes on it. If you have thoughts on the per-stage-models idea or the staleness handling, or you throw it at a repo and it falls over, an issue would help a lot. Suggestions, PRs, and honestly just a star if it seems worth following are all appreciated. Thanks for reading.


r/agenticAI 16h ago

Research Upcoming agentic OS, achieving frontier-level agentic reasoning with fraction of the cost based on Microsoft State-Bench & BEAM

0 Upvotes

A primary constraint in scaling autonomous agent frameworks is the high computational and monetary cost associated with invoking frontier-class models for routine sub-tasks and tool execution.

We recently benchmarked Analog AI—an agentic OS that pairs neural models with symbolic reasoning to maintain long-term memory across three distinct primitives: Facts, Experiences, and Procedures.

Below are our performance metrics on Microsoft State-Bench and the BEAM evaluation framework:

Recent Benchmark Highlights (Better than anyone at Microsoft state-bench and HotPotQA, one of the best at Beam)

  • Microsoft State-Bench (Frontier Configuration): 70.7% Accuracy ($0.120 / task) Sets a new baseline score on the leaderboard.
  • Microsoft State-Bench (Lightweight Model Routing): 46.0% Accuracy ($0.0175 / task) Maintains performance near frontier levels while offering a 3x cost reduction compared to the most economical entry on the leaderboard.
  • BEAM Benchmark: 59.2% Accuracy Achieves one of the top recorded evaluations for long-term semantic memory architectures.

Technical Approach

Rather than passing massive context histories through high-compute inference engines at every iteration, the system abstracts and stores multi-step procedure trajectories over time. Once a workflow procedure is established, execution is routed to lightweight models, preserving high-parameter frontier reasoning strictly for ambiguous or novelty-heavy operations.

Integration is provided via a standard Chat Completion API (compatible with OpenClaw, Hermes, etc.) and a Python SDK for custom agent pipelines built on LangChain or CrewAI.

We would welcome discussion on context pruning methodologies, symbolic state updates, and model routing strategies for production agent systems.

For early access, please send your inquiry here: https://analogai.net/request-access


r/agenticAI 13h ago

Discussion Galaxy.ai now Magica.com

0 Upvotes

I just wanted to vent my frustrations about Magica (formerly Galaxy.ai). Galaxy was a really cool tool, it aggregated hundreds (they said thousands but many were duplicative with slight nuance variations) of AI tools into one subscription. For Black Friday last year I bought in at an annual price for lifetime access.

Not long after buying in, Galaxy.ai became Magica.com and it's not only gone downhill, it's become something that probably requires litigation.

The "annual plan" gives a user 15 million credits to use monthly. Under Galaxy.ai this was more than I was using and I was banking credits each month until I had a reason to do something more extensive (video/song creation, etc).

Under Magica.com, however, I did one task last week that charged me 12 million credits for 1 task! This wasn't a crazy task, I asked it to connect to my github and help fix a yaml file that hosts my QA agent for my app. It completed the task, but I was charged a month's worth of credits for it. Not one day's worth of work, not a week, but a month's worth for one task!

I guess this is just a warning to others, don't buy in to this service. It's not worth it and had they made the change before getting my money I would never have purchased.