Loading video...

Video Failed to Load

Go Home

My top open source repos: 1. Mission Control self-hosted AI agent orchestration dashboard tasks, multi-agent workflows, spend, governance 5.7k stars 2. awesome-hermes-agent curated skills, tools, integrations, and resources for Hermes Agent 4.6k stars 3. council-of-high-intelligence 18 AI personas deliberate hard decisions across multiple LLM providers 3.4k stars 4. xint...

19,085 views • 5 days ago •via X (Twitter)

0 Comments

No comments available

Comments from the original post will appear here

Related Videos

10 repos blowing up on GitHub this week that replace $1,500/month in AI tools 1. andrej-karpathy-skills → replaces paid Claude Code courses one CLAUDE.md file from Karpathy's LLM coding observations 48,965 stars. 7,939 stars TODAY 2. claude-mem → replaces paid context/memory tools auto-captures everything Claude does across sessions compresses with AI and injects into future sessions 59,373 stars. 1,907 stars today 3. voicebox → replaces ElevenLabs ($22/mo) open-source voice synthesis studio 18,963 stars. 887 stars today 4. open-agents → replaces paid agent platforms ($200/mo) open-source template for building cloud agents. by Vercel 3,105 stars. 735 stars today 5. cognee → replaces paid knowledge bases ($50/mo) AI agent memory engine in 6 lines of code 15,733 stars 6. magika → replaces paid file detection tools AI file content type detection. by Google 14,603 stars 7. GenericAgent → replaces paid agent infra ($100/mo) self-evolving agent. grows skill tree from 3.3K-line seed 6x less token consumption than standard agents 2,661 stars. 883 stars today 8. omi → replaces Rewind AI ($25/mo) AI that sees your screen + listens to conversations tells you what to do next 8,952 stars. 488 stars today 9. evolver → replaces manual agent optimization self-evolution engine for AI agents genome evolution protocol 3,074 stars. 866 stars today 10. wallet tracking + copy trading → Kreo tracks top Polymarket wallets. auto copies trades the only tool on this list i actually pay for because it makes more than it costs → total before: ~$1,500/month in AI subscriptions total now: $0 + Kreo like + bookmark you'll need this

self.dll

360,920 views • 2 months ago

Anthropic's Claude Ai Agents Team just Educated how to build production AI agents in under 30 mins. For Free. From the engineers who built the stack. CANCEL Your Weekend Plans, and Learn to Build AI Agents Today. Bookmark it. Watch it. Build your first production agent this weekend. $5,000/month. $7,000/month. $12,000/month. People are building agents for clients and charging $$$ as Beginners. You're still stuck in the thinking about AI phase. This video fixes that tonight. Follow Himanshu Kumar for more high-signal content that actually moves your AI engineering career forward. ↓ Ivan Nardini runs Developer Relations for AI at Google Cloud. He just gave away the entire production agent stack in 30 minutes. This is the talk that separates people deploying AI agents that actually scale from people whose agents break the moment they leave localhost. Here's everything inside. I break down a production AI video like this every week. Follow Himanshu Kumar. ↓ The 4-part agent stack that actually scales. Most devs are duct-taping frameworks together and calling it an "AI agent." Ivan lays out the real stack: Agent Development Kit (ADK): open-source, code-first framework for building, evaluating, and deploying agents. Supports Claude models through Vertex AI directly. Model Context Protocol (MCP): lets your agent talk to any tool or data source with one standard. Vertex AI Agent Engine: managed platform for deploying, monitoring, and scaling agents in production. No DevOps headaches. Agent-to-Agent Protocol: open protocol so agents built on different frameworks can actually work together. This is the stack replacing every hacky agent setup in production right now. Full MCP + Claude breakdowns drop weekly on Himanshu Kumar. ↓ Building your first real agent. Ivan builds a birthday planner agent live. LLM Agent class. Name it. Define instructions. Pick the model. He uses Claude 3.7 Sonnet. You could use Opus 4.7 for better reasoning. Full agent built in minutes. Not weeks. Watch the build once and you'll never structure an agent the wrong way again. I post agent architectures people pay $500 courses to learn. Himanshu Kumar. ↓ Multi-agent systems without the chaos. Single agents are easy. Multi-agent systems are where 99% of builders fail. Ivan extends the birthday planner by: Adding a calendar service through MCP tools Creating an orchestrator agent to route requests between agents Handling state and context across agent handoffs This is production multi-agent architecture. Clean. Scalable. Debuggable. Most tutorials hand-wave this part. This one shows you every step. Multi-agent orchestration content drops weekly on Himanshu Kumar. ↓ Deployment without the DevOps nightmare. This is where most AI projects die. You build a cool agent locally. It works. You try to deploy it. Everything breaks. Vertex AI Agent Engine fixes this: Minimal code deployment Automatic monitoring of latency, CPU, and memory Built-in observability and logging No infrastructure setup needed You provide config and requirements. The platform handles the rest. This is how agents actually get to production. Deployment guides for Claude agents post every week. Himanshu Kumar. ↓ Agent-to-Agent Protocol: the future nobody's talking about. Most people don't know this exists yet. The A2A Protocol lets agents built in different frameworks communicate seamlessly. Your Claude agent. My LangChain agent. Someone else's CrewAI agent. All talking to each other. All solving parts of the same problem. All without custom integration code. This is the infrastructure layer of the coming AI economy. Getting in early on A2A Protocol is like getting in early on HTTP in 1995. A2A deep dive coming soon. Himanshu Kumar. ↓ 30 minutes from the team shipping this in production. You'll learn more from this than from 6 months of YouTube tutorials made by people who've never deployed an agent past localhost. People who watch this understand production AI agents at the architect level. People who skip it keep hacking together frameworks that break every time an API updates. Save the video. Watch it tonight. Build a real agent this weekend. Follow Himanshu Kumar for more high-signal content that actually moves your AI engineering career forward.

Himanshu Kumar

226,535 views • 2 months ago

How to setup a multi agent system? Bookmark it 📂 "The Trading Floor" Multi-Agent Market Analysis Council to analyze a stock ticker Z.ai GLM-4.7 🤝 OpenCode Agent framework: CrewAI How it works? 1. User enters a stock ticker to analyze 2. 5 AI agents wake up, each with distinct expertise: - Quant Analyst — technical indicators & price patterns - Sentiment Scout — market mood & crowd psychology - Macro Strategist — sector dynamics & economic context - Risk Manager — volatility, drawdowns & position sizing - Portfolio Chief — synthesizes all perspectives 3. Agents analyze independently using real market data 4. They debate, challenge assumptions, and identify disagreements 5. Portfolio Chief resolves conflicts and delivers a consensus recommendation 6. Final output: buy/hold/sell rating with confidence level, position size, and key risks How to built The Trading Floor? 1. Chose CrewAI as the agent framework — handles multi-agent orchestration out of the box 2. Defined 5 agents with distinct roles, goals, and backstories in Python 3. Built custom tools wrapping yfinance for real market data (prices, indicators, volatility) 4. Configured sequential workflow — specialists analyze first, Portfolio Chief synthesizes last 5. Set up FastAPI backend with SSE to stream agent thoughts in real-time 6. Built Next.js frontend to visualize the "board of directors" deliberating live 7. One environment variable (MODEL=openai/gpt-5.2) powers all agents 8. Generated unique agent icons with AI image tools Total cost: $0 for the framework, pay only for LLM API calls Tech stack: - GLM-4.7 with opencode to build the app - CrewAI (open source) for agent orchestration - GPT-5.2 powering each agent - FastAPI + SSE for real-time streaming - Next.js frontend showing live agent deliberations

CloudAI-X

57,703 views • 6 months ago

New Course: ACP: Agent Communication Protocol Learn to build agents that communicate and collaborate across different frameworks using ACP in this short course built with IBM Research's BeeAI, and taught by Sandi Besen, AI Research Engineer & Ecosystem Lead at IBM, and Nicholas Renotte, Head of AI Developer Advocacy at IBM. Building a multi-agent system with agents built or used by different teams and organizations can become challenging. You may need to write custom integrations each time a team updates their agent design or changes their choice of agentic orchestration framework. The Agent Communication Protocol (ACP) is an open protocol that addresses this challenge by standardizing how agents communicate, using a unified RESTful interface that works across frameworks. In this protocol, you host an agent inside an ACP server, which handles requests from an ACP client and passes them to the appropriate agent. Using a standardized client-server interface allows multiple teams to reuse agents across projects. It also makes it easier to switch between frameworks, replace an agent with a new version, or update a multi-agent system without refactoring the entire system. In this course, you’ll learn to connect agents through ACP. You’ll understand the lifecycle of an ACP Agent and how it compares to other protocols, such as MCP (Model Context Protocol) and A2A (Agent-to-Agent). You’ll build ACP-compliant agents and implement both sequential and hierarchical workflows of multiple agents collaborating using ACP. Through hands-on exercises, you’ll build: - A RAG agent with CrewAI and wrap it inside an ACP server. - An ACP Client to make calls to the ACP server you created. - A sequential workflow that chains an ACP server, created with Smolagents, to the RAG agent. - A hierarchical workflow using a router agent that transforms user queries into tasks, delegated to agents available through ACP servers. - An agent that uses MCP to access tools and ACP to communicate with other agents. You’ll finish up by importing your ACP agents into the BeeAI platform, an open-source registry for discovering and sharing agents. ACP enables collaboration between agents across teams and organizations. By the end of this course, you’ll be able to build ACP agents and workflows that communicate and collaborate regardless of framework. Please sign up here:

Andrew Ng

105,343 views • 1 year ago

Introducing LobeHub: Agent teammates that grow with you. LobeHub is the ultimate space for work and life: to find, build, and collaborate with agent teammates that grow with you. We’re building the world’s first and largest human–agent co-evolving network. Two years ago, we built LobeChat, an open-source interface for using different AI models. Today, LobeChat has 70k+ GitHub stars and serves 6M+ users worldwide. How to fully unlock the power of models has always been a shared mission between us and the community. We started with interaction — a fundamentally new, agent-first experience. Agents are no longer passive tools invoked in a single conversation. They should be proactive, always-on units of work. Treating agents as the minimal atomic unit is also the core of our agent harness infra. Today’s agents are mostly one-off executors. Even with memory, it’s often global — and hallucinates. We build long-term agent teammates that evolve with users. Each agent has its own dedicated memory space, editable by users, allowing humans and agents to co-evolve over time. This, in turn, allows us to design clearer rewards for reinforcement learning and create cleaner environments for continual learning. Agent teammates can work in groups. Through a multi-agent system, agent groups operate faster, more cost-effective, and go beyond what single-agent systems can achieve. For example, a single agent often requires heavy user involvement to proceed step by step, whereas LobeHub can execute the same work from a single instruction, with a supervisor orchestrating agents that run in parallel or debate to produce better results. We are building the collaboration network among agent teammates — and between humans and agent teammates as well. Ease of use matters. AI intelligence and shared human intelligence are equally important. With simple instructions and tool selection, you can effortlessly build and team up with agent coworkers to deliver complex, systematic work — even assembling a quant team to execute trades. Through the LobeHub community, anyone can discover, reuse, and remix agents and agent groups, customizing them to fit their own workflows, preferences, and needs. Last but not least, our vision started with LobeChat: multi-model support is the most efficient approach for users. We believe different models excel in different scenarios. By routing across multiple models, LobeHub improves cost efficiency and unlocks capabilities that a single-model setup cannot easily support.

LobeHub

185,032 views • 5 months ago

ElizaOS Ecosystem Map -- Version #3 🤖 AI Agent Framework (Core) 1) ElizaOS -- elizaOS 🧠 - Open source AI Agent framework - Cross-chain compatible (Solana, Base, EVM) - Supports plugins for social media, blockchains, and APIs 🏗️ Infrastructure 2) ElizaCloud ☁️ - Cloud hosting platform for AI agents - One-click agent deployments with scalability - Secure environments using TEEs 3) Jeju ⛓️ - Purpose-built L2 App Chain for Agents - High-performance blocks for sub-second agent coordination - The backbone of the decentralized Agent Network 4) Otaku -- @otakuonbase 👛 - DeFi wallet designed for AI agents - Supports agent-controlled crypto transactions (swap, send, hold) - Secure, non-custodial infrastructure for on-chain actions 🎮 Apps/Games 5) Spartan -- Spartan 🛡️ - ElizaOS's flagship agent showing what’s possible - Autonomous trading based on crypto knowledge - Trained on influencer data for market insights 6) Babylon -- Babylon -- The City of Agents 🐵 - Social prediction market game for agents - Agents compete alongside humans to forecast on-chain events - Includes perps and other gamified mechanics 7) Hyperscape -- Gold ⚔️ - First AI MMO Game powered by ElizaOS - A vast gaming world built for humans and agents to coexist - Agents drive the in-game economy and narrative 8) Milady App -- Milady on BSC 😎 - Open-source, local-first AI companion app powered by ElizaOS - Let's anyone quickly create and deploy their own agents - Built-in wallet, natively integrated with BNB chain 9) OTC Trading Desk 📊 - Multi-chain AI-powered OTC desk for crypto trades - Lists tokens off-market with transparent lockup and discount terms - Use Eliza agents to negotiate terms on your behalf

Seppmos

25,942 views • 3 months ago

NEAR AI Ecosystem - “What Did You Ship This Week?” Ep. 9 A week of steady momentum across the NEAR AI stack. From Open Agent Alliance expansion and new agent standards to browser-native private data operators and OAuth-powered crossposting infrastructure, builders continue pushing open-source AI forward. Timestamps & Highlights: 00:00 – Intro by Cameron.near🇺🇸 from NEAR AI 01:36 – AVB from Open Agent Alliance (OAA) shares updates on the OAA. After its ETHDenver launch, OAA is ramping up with a renewed website, active working groups around agent discovery, secure communication, and decentralized payments. Their mission: build a truly open, interoperable agent ecosystem across Web3 and beyond. 09:18 – play_tingz unveils their AI-powered gaming creation platform. Using simple text prompts, users can instantly generate 3D games without coding. 18:44 – shudong from MIZU demos MIZU Agent, a browser-native AI operator that lives in your existing browser environment. It accesses private data securely without re-logins, supporting agent-native interactions like navigating social media and automating tasks locally. 28:53 – 𝕵𝖔𝖗𝖉𝖆𝖓✨🐾ヤᵇᵃ ͥ ꜝ9d from PublicAI introduces new features including live quizzes for contributor skill validation, Hot Wallet integration for seamless Web3 reward claims, and Discord Connect to strengthen expert communities. PublicAI continues expanding its decentralized data sourcing platform. 40:40 – elliot braem from open crosspost shows CrossPost, an OAuth-integrated platform letting NEAR accounts securely control social media posting. Users can sign actions with their wallets via function call access keys, enabling bots and agents to crosspost content without needing direct account access. 52:50 – Matt Lockyer from Proximity Labs announces the Bankr x Shade Agent hackathon. Developers are invited to extend BankerBot's functionality with new Shade Agents that leverage NEAR Chain Signatures for decentralized agent-to-agent transactions. Submissions open through May 3rd. 1:01:37 – Wrap-up by Cameron.near🇺🇸 with updates on upcoming NEAR AI releases, including auditor agents for discovery and security + private inference compute networks. The future is NEAR – the blockchain for AI. Catch the full replay:

NEARWEEK

30,822 views • 1 year ago