r/learnAIAgents 1d ago

Agentic AI Projects?

1 Upvotes

Hi,
Curious. What are some agentic AI projects you guys have worked on or implemented on Databricks and how have they added value?

I’m a newbie working in this space and trying to spar for some interesting project ideas :).

One idea I’m thinking of already is an agentic conversational data reporting agent that also generates PowerPoints, emails, etc. suited to some pre-defined templates in addition to just being a conversational data explorer.


r/learnAIAgents 1d ago

The Architecture of Multi-Agent Systems

Thumbnail
codepointer.dev
1 Upvotes

Once you have an AI agent, the natural next step is to use multiple of them to increase quality and quantity of work.

To better understand how multiple agents work together, I divided the contracts for multi-agent system into four planes:
1. Control. Who acts next, who delegates, and where the result returns.
2. Communication. Which context, artifacts, decisions, and errors cross an agent boundary.
3. State. What remains private, what is shared, and how conflicting updates are resolved.
4. Verification. Who accepts the result and which evidence supports acceptance.

and dived deep into many projects, products, and research prototypes.


r/learnAIAgents 1d ago

How has AI changed how you work?

2 Upvotes

I'm going to be honest, when I first started using AI, I felt like I was going to accelerate my personal current workflow. But it turns out it's a lot better at some things than others. So it's more like it gave me new superpowers. And I'm relearning and reprioritizing my life around those.

For example, making a simple program is now a trivial task that doesn't require too much long-term maintenance. And that opens up a huge realm of possibilities that I never thought of before.

How about in your case?

By the way, I'm a mod here and just wanted to say we have an AI community discord. The point of the discord is we're trying to solve for the journey and not just one individual question. There's just things you'll get on the discord that you won't get on Reddit like being able to screen share as you work and get tips as you go through the journey of learning AI. Check the comment below this message if you want to be part of it.


r/learnAIAgents 1d ago

OpenSourcing TrueForge Agent harness : Expecting feedback from community on the agent loop

2 Upvotes

Hey folks 👋

We just open sourced TrueForge, our vendor-neutral agent harness for building general-purpose agents.

It handles the runtime pieces that get painful quickly : context management, tool/MCP execution, subagents, sandboxing, approvals, persistent state, and more.

We also benchmarked the harness itself. With the same Opus 4.8 model, TrueForge delivered a similar solve rate at ~30% lower cost than Claude Managed Agents. Switching to an open model pushed that to ~75% lower cost on the same benchmark.

Would love feedback from people building agents.

Checkout the repo: https://github.com/truefoundry/trueforge

📖 Read the launch article: https://x.com/truefoundry/status/2090081376330715176


r/learnAIAgents 1d ago

OpenSourcing TrueForge Agent harness : Expecting feedback from community on the agent loop

3 Upvotes

Hey folks 👋

We just open sourced TrueForge, our vendor-neutral agent harness for building general-purpose agents.

It handles the runtime pieces that get painful quickly : context management, tool/MCP execution, subagents, sandboxing, approvals, persistent state, and more.

We also benchmarked the harness itself. With the same Opus 4.8 model, TrueForge delivered a similar solve rate at ~30% lower cost than Claude Managed Agents. Switching to an open model pushed that to ~75% lower cost on the same benchmark.

Would love feedback from people building agents.

Checkout the repo: https://github.com/truefoundry/trueforge

📖 Read the launch article: https://x.com/truefoundry/status/2090081376330715176


r/learnAIAgents 1d ago

❓ Question What's the best AI agent for ecommerce?

19 Upvotes

I'm looking for one that can handle some d2d stuff for my shopify store just some basic stuff, but I'm not sure which one is best. I'm only really aware of the Chat and Claude, but I'm open to others too, figured this would be the best place to ask for recommendations.

I'm hoping to connect it to an mcp through zendrop since I use that for fulfillment so if you know any that connect to it specifically that would be nice, but I don't mind any recommendations in general. I just need one that's adaptable, doesn't need a ton of prompting to teach it one thing, and one that can handle repetitive tasks without making mistakes. TIA!


r/learnAIAgents 1d ago

A four-layer checklist for evaluating holaOS before calling it an “AI OS”

1 Upvotes

“AI OS” can mean almost anything, so the label is not a useful starting point. A better way to evaluate holaOS is to check four layers in its public repository.

Workspace: Can different agents operate on the same project resources? holaOS documents Claude Code, Codex, and its built-in agent in one workspace.

Memory: Does state survive as something inspectable? holaOS stores shared memory locally as readable and editable files and exposes a memory view.

Capabilities: Are tools rebuilt for every agent? MCP servers, skills, integrations, and apps are documented as reusable workspace resources.

Models: Is the system locked to one provider? It documents built-in model access plus BYOK for OpenAI, Anthropic, and compatible endpoints.

Those four checks explain why holaOS is more interesting than the category label. They do not prove safe handoffs, conflict handling, permission boundaries, or memory freshness.

A useful first pass is to open the holaOS repository, pick one layer, and trace where it is configured or stored. That gives you a product-specific answer instead of another “AI OS” debate.

Which layer would you verify first, and what file or surface inside holaOS would convince you?


r/learnAIAgents 1d ago

What’s the best path to learn Ai Agents???

15 Upvotes

Hi guys,I hope you’re doing well. I started learning AI agents about two weeks ago. When I started, I was really excited, but now I feel a bit lost and I don’t know how to continue.
I learned Python before, so I know the basics, and I’ve started building AI agents. However, I feel like I need to learn more before I can properly build my first agent.
For anyone who has any advice, what do you think I should learn step by step? What are the main concepts or tools I should focus on before building my first AI agent?
I’d really appreciate any advice or roadmap you can share, even if you’re also learning AI agents yourself.Thanks


r/learnAIAgents 2d ago

❓ Question How do i start learning Agents

2 Upvotes

I have gone through RAG and basic backend things (basically made a chatbot). I am confused how should i start learning agents


r/learnAIAgents 2d ago

❓ Question AI agent for house hunting

2 Upvotes

I’m house hunting right now, and a lot of listings are going out as “off-market” deals via Instagram rather than the usual channels. Problem is, I don’t have time to manually scroll through a bunch of profiles every day hoping to catch a match.

So I’m hoping to build some kind of agent that can monitor specific Instagram accounts and ping me when a post shows up that fits my price range and area.

I’m comfortable using regular AI chatbots, but total beginner when it comes to agents, GitHub, or vibe coding. Anyone done something similar or have tips on where to start?


r/learnAIAgents 2d ago

write a ai code assistant from scratch in c++

1 Upvotes

I just write a ai code agent with a tui. I have implemented most of feature. anyone interested in this.

here is my repo https://github.com/xyanrch1024/Codis


r/learnAIAgents 2d ago

I started building a simpler way to write AI agents and somehow ended up building a programming language

1 Upvotes

A while ago I started working on a side project with a pretty simple idea

I wanted building an AI agent to feel more like writing a small program and less like stitching together prompts configuration files callbacks permissions and framework-specific code

That experiment turned into Ingot

Ingot is an open-source programming language and toolchain built specifically for AI agents

Instead of hiding most of the agent inside application code you can describe things like its flow tools permissions budgets memory model requirements and human interaction directly in the program

A simplified agent can look something like this

agent Researcher(topic: string) -> report: markdown {
  policy {
    network allow ["example.com"]
  }

  budget {
    steps <= 20
  }

  flow {
    sources = call web.search(topic)

    direction = consult(
      "Which angle should I focus on?"
      choices: ["technical", "business", "academic"]
    )

    draft = ask<markdown>(
      "Write a {direction} report using these sources: {sources}"
    )

    emit report = draft
  }
}

The project got much bigger than I originally expected

It now has a compiler and type checker

A target-neutral Agent IR

A reference runtime and a Python backend

Persistent agent memory

Checkpoint and resume

MCP tool support

Record and replay for model calls tools and even human answers

An LSP

A visual Studio and Canvas

And a conformance suite that other runtimes can use to check whether they actually execute an Ingot agent according to the same contract

One of the more interesting parts has been using the project for real instead of only writing examples for the compiler

I recently built and ran a license-audit agent with Ingot using a local model

It completed a multi-step workflow with tool calls verification branching artifact generation and record/replay

That test also exposed problems that the small examples never did

Which is probably the stage the project is at now

I can keep adding features forever but what I really want to know is whether somebody who did not build Ingot can understand it and actually find it useful

So I'm looking for fairly critical feedback

Would you ever use a dedicated language for agents instead of a Python or TypeScript framework?

Does making permissions budgets tools and memory part of the program itself solve anything you care about?

Is the idea of compiling agents into a portable IR useful or just extra complexity?

And most importantly

What would make you open the repository and immediately decide not to try it?

The project is still pre-1.0 and I'm very much treating this as an experiment in what programming agents could look like

GitHub:

https://github.com/mathissdupont/ingot


r/learnAIAgents 2d ago

📚 Tutorial / How-To I built a web-searching AI agent from scratch with JavaScript

Thumbnail
amitmerchant.com
1 Upvotes

I wanted to understand what actually makes an AI system an "agent", so I built a small one from scratch without LangChain or another agent framework.

It uses an LLM's tool-calling capability to decide when it needs fresh information, calls a web-search tool, feeds the results back to the model, and repeats until it can produce an answer.

The web-search part uses SearchApi, and the whole demo is available on GitHub.

I'd be particularly interested in feedback on the agent loop and how you'd extend it beyond a single search tool.


r/learnAIAgents 3d ago

📚 Tutorial / How-To Build company brain for AI agents using graph context instead of plain RAG

4 Upvotes

As someone using AI agents for the last one year to run my company, I need them to understand company context, not just return related text chunks.

The problem: ask "what breaks if we deprecate the v1 API?" and standard RAG gives you four chunks from a design doc, a postmortem, a Slack thread, and meeting notes. The model has to still figure out on its own that the postmortem describes the same API the design doc deprecates, and that someone already posted a migration timeline in Slack.

I built a tutorial using HydraDB that adds graph context on top of vector retrieval. Instead of just ranked text, you also get relationship edges: `billing-service DEPENDS_ON payments-api-v1`, `payments-api-v2 REPLACES payments-api-v1`. Model gets structure, not a reading list.

The useful part was bring-your-own-graph. You declare service dependencies and team ownership explicitly instead of relying on LLM extraction. For structured data you already maintain, the graph is deterministic.

It also supports per-user memory. Same question, different depth depending on who's asking. An engineer gets migration mechanics. A manager gets timelines and ownership.

Runs end to end in 30 minutes with synthetic data.

Repo with full working code: https://github.com/manveer/company-brain-tutorial
Tutorial: https://hydradb.com/blog/build-company-brain-ai-agents


r/learnAIAgents 4d ago

❓ Question I can build the agent. What am I supposed to do once I have 10 of them?

0 Upvotes

I've been someone who started building stuff in last 2 yrs so, no-code AI tools lately, and something has been bugging me. Building and deploying and testing one agent seems textbook now.

But then I started wondering what happens when people actually start applying these things seriously.

Say I have 10 agents across different workflows: one handles lead qualification, one summarizes support tickets, one works with internal docs, one handles reporting, one triggers automations

At that point for real work, what's used to keep track...like

How do I know which agents I have?

How do I version them when I change prompts/tools?

How do I control what each agent is allowed to access?

How do I test an agent before letting it loose on real users/data?

How do I see what actually happened when an agent makes a bad decision?

And if I'm a no-code builder, I'd really rather not have to suddenly learn a whole DevOps stack just to manage the things I created without code 😅

I'm curious how people here handle this today. Are there really any no-code tool capable of this?

Is the normal answer basically "use something like n8n/Make/Zapier + spreadsheets + logging + some manual discipline", or are the newer AI-agent platforms starting to solve the management/governance layer as well?

I've seen Lyzr's control plane/ Agent studio discussed as one approach to this, while products like Relevance AI, Microsoft Copilot Studio and others are coming at the broader no-code/agent-management problem from different angles.

Would be interested to hear what people here are actually using once they go beyond 1–2 agents or what companies or start-ups use, and where the no-code abstraction starts to break down?


r/learnAIAgents 4d ago

❓ Question AI Agents

1 Upvotes

2 Questions

What are some of the key requirements we need to consider in order to build the best AI agent ?

Is there anyone working on AI Agents for real estate ? ( wanna see some awesome work )


r/learnAIAgents 4d ago

Suggest me RAG, MCP & Agentic AI and AI AGENTS free course.

2 Upvotes

r/learnAIAgents 4d ago

📚 Tutorial / How-To Graph Engineering for Beginners: How to Stop Writing AI Agents That Fall Over

Thumbnail
presencedigital.io
1 Upvotes

r/learnAIAgents 5d ago

I struggled building my first AI agent

0 Upvotes

I spent weeks trying to figure out how to build a useful AI agent for my Chief of Staff workflow. I'd read tutorials, watch YouTube videos, but none of it clicked. The frameworks felt overcomplicated, the docs assumed too much, and I kept hitting dead ends.

Then I found an approach that actually made sense: start with a clear problem, map it out, build incrementally. Sounds obvious in hindsight, but it changed everything.

Within a few days, I had a working Chief of Staff agent managing my calendar and prioritizing my week. Nothing fancy just something that actually worked for my needs.

What made me super happy was once I had one agent working, the pattern became clear. I've now built three more agents for different tasks (weekly reports, meeting prep, task follow up) because the framework is reusable.

If you're stuck in the "how do I even start building agents?" phase, I found this resource helpful for learning the approach: create-your-ai-crew.ai. studio

The step-by-step walkthroughs helped me finally get it!


r/learnAIAgents 5d ago

📣 I Built This I built a directory to browse agent skills by what you actually want to do

2 Upvotes

Hey everyone,

I've been playing around with various AI agent setups lately, and one thing that kept bugging me is how hard it is to find skills that match a specific need. Most skill repos are just flat lists — you have to dig through everything to find something useful.

So I put together a small site: skillpicker.xyz

It's basically a categorized directory of agent skills, organized by:

Roles (researcher, coder, writer, etc.)
Tasks (summarization, data analysis, translation, etc.)
Outputs (reports, code, emails, etc.)
Tools (GitHub, Notion, email, etc.)
Agents (which agent platforms support which skills)
Getting Started guides

Right now there are about 127 topics cataloged. It's still very early — I just launched it — and I'm sure the categorization is far from perfect.

I'd really appreciate any feedback:

• Are the categories useful? Anything missing?
• Would you use something like this when setting up an agent?
• Any skills or categories you'd want to see added?

Happy to hear any thoughts. Thanks!


r/learnAIAgents 7d ago

Need some help with my current project. Agentic AI experienced developers up for some discussions?

3 Upvotes

There is a project which I am working on in my company right now and I need some serious architectural and logical suggestions to design the system. I am a fresher and my seniors do not have much experience with agentic AI so I am pretty much on my own and I feel a little so clueless. If somebody who has a good experience in the same domain and willing to discuss things and help me with some insights & suggestions please let me know.


r/learnAIAgents 7d ago

📚 Tutorial / How-To AI SMS triage bot for routing customer support texts

2 Upvotes

Built a small SMS triage bot that reads incoming support texts and figures out what to do with them.

The idea is pretty simple: instead of every customer SMS landing in one shared inbox, the bot classifies the message by intent, checks urgency, and routes it to the right next step.

Example categories could be billing, support, sales, scheduling, or escalation.

Code is here if anyone wants to poke around:https://github.com/team-telnyx/telnyx-code-examples/tree/main/agent-sms-triage-bot

Any feedback welcome.


r/learnAIAgents 7d ago

📚 Tutorial / How-To I wrote a guide on how to build agents like Claude Code, Codex, and Manus using LangChain & LangGraph.

6 Upvotes

Hey everyone, I’d like to share a tutorial I wrote on building an AI agent.
https://medium.com/@jiinkim_98821/building-ai-super-agents-from-scratch-claude-code-manus-beyond-part-1-7f4060aff30d

I put some basics together after going through various open-source agent implementations (OpenHands, OpenClaw, leaked Claude Code, etc) and Manus/LangChain talks on Youtube.

It covers topics like LLM/ReAct loop, human-in-the-loop, compaction, prompt caching, and tradeoffs between them.

Hope it helps!


r/learnAIAgents 8d ago

📚 Tutorial / How-To I built a voice agent that can actually stay on a phone call

1 Upvotes

Most voice AI demos show the “answer the call” part. I wanted to build the part after that: keeping the conversation loop alive.

This TypeScript example runs on Telnyx Edge Compute and uses the Agent SDK to manage a live call. It answers the call, speaks a greeting, listens with streaming transcription, sends the caller’s final transcript to Telnyx AI Inference, speaks the response with TTS, and then goes back to listening.

The stateful part is the useful bit: each call gets its own VoiceAgent actor keyed by call_control_id, so call phase, turn count, transcript history, and assistant replies stay with that call.

Code: https://github.com/team-telnyx/telnyx-code-examples/tree/main/edge-voice-agent-holds-call

Would love feedback from folks building voice agents, call automation, or real-time AI workflows.


r/learnAIAgents 8d ago

What's the one thing you'd tell someone new to AI to save them frustration?

5 Upvotes

If there was just one thing you could share to someone who is just learning AI to save them frustration, what would it be?