We open-sourced iron-proxy yesterday: a default-deny egress proxy for... untrusted workloads. CI is a natural place for this. GitHub Actions runners have unrestricted outbound network access by default. Every dependency, every post-install script, every agent tool call can reach any endpoint on the internet. iron-proxy sits between the runner and the network. Allowlist what should talk to the internet. Log everything. Block everything else. Repo: Walkthrough 👇show more

Matthew Slipper
19,276 views • 3 months ago
Every agent. Every user. Every contribution. That’s how the... Sentient GRID grows not by scale from a single model, but by compounding intelligence across an open network. The GRID isn’t a product. It’s an ecosystem of intelligence. Each new integration adds new capabilities reasoning, retrieval, data, and alignment making the whole network smarter. Closed labs build vertically (one model trying to do everything). Sentient builds horizontally thousands of agents learning, sharing, and evolving together. Today there are 100+ active partners building on the GRID from AI researchers to tool developers all feeding value back into a shared intelligence layer. It’s a living system that improves itself, powered by collaboration instead of control. The more people build on it, the more capable it becomes. Just like Linux became the invisible layer running the internet, the GRID is becoming the invisible layer powering intelligence. Open-source always wins. And the GRID is where that victory starts All apps built on the Grid will be accessible to $SENT holders. The full open release of Sentient Chat is coming soon (confirmed from the yesterday community call) gsentishow more

OHJAY ⭕️ || 🇬🇧
16,178 views • 9 months ago
Replit, Vercel, and OpenAI have built very cool agent-native... applications, but nobody else has passed the demo stage. Building agents that work is complex. Teams aren't shipping agents because we don't have good tooling yet (and most of us don't know how to do this well.) A couple of days ago, the CopilotKit🪁 team announced a collaboration with . You can now use LangGraph with CoAgents to build agent-native applications, and here is everything you need to know about that: CoAgents is fully open-source, and you can use it to do the following: • Human-in-the-loop to steer and correct the agent • Stream intermediate agent state • Real-time state sharing between the agent and the application • Agentic generative UI to build trust that the agent is on the right path Start this GitHub Repository: Thanks to the team for giving me early access and collaborating with me on this post.show more

Santiago
63,073 views • 1 year ago
Introducing the Agent Virtual Machine (AVM) Think V8 for... agents. AI agents are currently running on your computer with no unified security, no resource limits, and no visibility into what data they're sending out. Every agent framework builds its own security model, its own sandboxing, its own permission system. You configure each one separately. You audit each one separately. You hope you didn't miss anything in any of them. The AVM changes this. It's a single runtime daemon (avmd) that sits between every agent framework and your operating system. Install it once, configure one policy file, and every agent on your machine runs inside it - regardless of which framework built it. The AVM enforces security (91-pattern injection scanner, tool/file/network ACLs, approval prompts), protects your privacy (classifies every outbound byte for PII, credentials, and financial data - blocks or alerts in real-time), and governs resources (you say "50% CPU, 4GB RAM" and the AVM fair-shares it across all agents, halting any that exceed their budget). One config. One audit command. One kill switch. The architectural model is V8 for agents. Chrome, Node.js, and Deno are different products but they share V8 as their execution engine. Agent frameworks bring the UX. The AVM brings the trust. Where needed, AVM can also generate zero-knowledge proofs of agent execution via 25 purpose-built opcodes and 6 proof systems, providing the foundational pillar for the agent-to-agent economy. AVM v0.1.0 - Changelog - Security gate: 5-layer injection scanner with 91 compiled regex patterns. Every input and output scanned. Fail-closed - nothing passes without clearing the gate. - Privacy layer: Classifies all outbound data for PII, credentials, and financial info (27 detection patterns + Luhn validation). Block, ask, warn, or allow per category. Tamper-evident hash-chained log of every egress event. - Resource governor: User sets system-wide caps (CPU/memory/disk/network). AVM fair-shares across all agents. Gas budget per agent - when gas runs out, execution halts. No agent starves your machine. - Sandbox execution: Real code execution in isolated process sandboxes (rlimits, env sanitization) or Docker containers (--cap-drop ALL, --network none, --read-only). AVM auto-selects the tier - agents never choose their own sandbox. - Approval flow: Dangerous operations (file writes, shell commands, network requests) trigger interactive approval prompts. 5-minute timeout auto-denies. Every decision logged. - CLI dashboard: hyperspace-avm top shows all running agents, resource usage, gas budgets, security events, and privacy stats in one live-updating screen. - Node.js SDK: Zero-dependency hyperspace/avm package. AVM.tryConnect() for graceful fallback - if avmd isn't running, the agent framework uses its own execution path. OpenClaw adapter example included. - One config for all agents: ~/.hyperspace/avm-policy.json governs every agent framework on your machine. One file. One audit. One kill switch.show more

Varun
141,560 views • 3 months ago
ANTHROPIC JUST TURNED AI AGENTS INTO GIT REPOS Anthropic... shipped "ant" - a CLI that runs every Claude API endpoint straight from your terminal. The headline isn't the terminal access. It's that you can now version-control an AI agent as YAML in Git and have CI sync it to the Claude Platform, the same way you ship code. - Every API resource is a subcommand: messages, models, files, agents, sessions - Define an agent in a YAML file, check it into your repo, and keep it in sync with one update command - Spin up a session, send it an event, then pull every event and tool call back from the same CLI - Claude Code knows how to drive ant out of the box - it shells out and reads the results with no glue code Agents just stopped being prompts you babysit and became infrastructure you deploy.show more

BuBBliK
200,080 views • 1 month ago
A massive repository with end-to-end examples of AI applications... with React! Together with MCP and A2A, the Agent-User Interaction Protocol (AG-UI) is the third piece that will help you build user-facing AI agents. This GitHub repository will give you access to a bunch of examples showing you how to build the following: • Real-time updates between AI and users • Shared mutable state between agents and users • Tool orchestration • Security boundaries • UI synchronization In every one of these examples, you'll get the following: • Client sends a POST request to the agent endpoint • Then listens to a unified event stream over HTTP • Each event includes a type and a minimal payload • Agents emit events in real-time • The frontend can react immediately to these events • The frontend emits events and context back to the agent Check the link in the next post:show more

Santiago
78,271 views • 10 months ago
Karpathy's Agentic Engineering finally has proper tooling! (built by... Google) Karpathy defined agentic engineering as the discipline that separates production agent work from vibe coding. The core skills he listed were spec design, eval loops, and security oversight. The problem has been that practicing this still requires a different tool for every phase: - editor for code - a terminal for scaffolding - a browser for testing - a cloud console for deployment - and a separate framework for evals. Every transition is a context switch. The solution to production-grade Agentic Engineering is now actually implemented in Google’s Agents CLI. It covers the entire workflow in one place for scaffolding, evaluating, and deploying ADK agents. One setup command injects 7 ADK-specific skills into a coding agent's context, which lets it handle scaffolding, evals, deployment, and enterprise registration through natural language. I tested this end-to-end by building a RAG agent from scratch using Claude Code. It scaffolded the full project from the ADK agentic_rag template, generated 20 eval scenarios with LLM-as-judge scoring, and returned a quantitative scorecard. Finally, it also deployed everything to Agent Runtime and registered the agent to Gemini Enterprise, so the entire org can discover and use it. The video below shows this in action, and I worked with the Google Cloud team to put this together. Agents CLI GitHub repo → (don't forget to star it ⭐ ) I wrote up the full build covering all six steps from install to enterprise registration. It includes the eval scorecard, the instruction loophole the eval caught before deployment, and what the deployment process actually looks like end-to-end. Read it below.show more

Akshay 🚀
254,782 views • 16 days ago
🚨 Alibaba just open sourced a GUI agent that... lives inside your webpage and controls it with natural language. It's called Page Agent and it's not a browser extension. It's pure JavaScript no Python, no Puppeteer, no headless browser, no screenshots. Just one script tag and your web app understands natural language. Here's what it actually does: → Embed it with a single tag or npm install → Control any web interface with plain English commands → Text-based DOM manipulation no OCR, no vision models needed → Bring your own LLM (GPT, Claude, Qwen, anything) → Ships a built-in UI with human-in-the-loop support → Turn 20-click ERP/CRM workflows into one sentence → Optional Chrome extension for multi-tab agent tasks → Works on any web app SaaS, admin panels, internal tools Companies are charging $30/month for AI copilots built on this exact idea. This is 3 lines of code. Your users. Your interface. The AI copilot layer for every web app just got open sourced. 1.6K stars. 100% Open Source. (Link in the comments)show more

Ihtesham Ali
135,236 views • 4 months ago
The Bitcoin Bookshelf is the corner of the library... where people from all backgrounds can come to discover what Bitcoin is. By taking out the intimidation, we will create an environment for us to strengthen the code, the software, and the network behind it. We have created a place for discovery, for families and friends to learn together and teach one another about the benefits of a decentralized future. I want to thank all the sponsors that helped make this dream a reality, and all the authors who donated all of the books for this project. We are working hard to bringing a bookshelf to all corners of the world, a dedicated section in all libraries so everyone can have access to financial freedom.show more

Alejandra Guajardo | Miss Bitcoin
12,764 views • 1 year ago
The Visual Studio Code insiders version that just shipped... and will ship in the next few days will come with an insane amount of new capabilities. A few highlights: - You can now run sub-agents in parallel. Yes, really. I even attached a video. - Major UX improvements for sub agents, especially visible in the chat window - A new search tool wrapped as a sub-agent that iteratively runs multiple search tools: semantic_search, file_search, grep_search Which connects nicely to the point above: multiple searches running in parallel, efficiently and fast - Anthropic’s Message API is now enabled by default - You can choose the model for the cloud agent (three available, all premium) - Extended thinking support when using the Claude cloud agent This is part of the broader multi-vendor cloud support under AgentsHQ I wrote about a few weeks ago - Tasks sent to the background agent (basically the CLI tool) now always run in isolation, each with its own git worktree - In a multi-repo workspace, assigning a task to a cloud agent prompts you to choose the target repo Same behavior when opening an empty workspace with no repo - Support for building an external index for files not supported by GitHub’s default indexing - UI/UX improvements for starting new sessions and switching between local / background / cloud agents - Skills are now first-class citizens, just like prompt files, with better UX indicating when a skill is loaded - Improved API for dynamic contribution of prompt files New V2 includes skills as part of the model. Curious to see the extensions that will leverage this - Finally, initial support for showing context usage percentage per session - Skills are enabled by default - Resizable chat window and session view. Small thing, but it was driving me crazy 😁 - A new integrated browser meant to replace the old simple browser Maybe the beginning of real browser use? - Better UI/UX for token streaming in chat - Ability to index external files not supported by GitHub There’s a lot more. Some of it hasn’t fully landed yet, but everything that has is already in Insiders. The next stable release should drop in early February. As usual, I’m just shocked by the volume of features this team ships every month. After the holiday slowdown, this one is shaping up to be a wild release.show more

Oren Melamed
29,555 views • 6 months ago
Why the internet needs Grokipedia? ➤ Wikipedia isn’t the... neutral source of truth it once was. It’s been taken over by far-left activists and often used as a propaganda tool, not an unbiased encyclopedia. ➤ A lot of AIs today get their info from the internet, but the web is full of unfair views, wrong facts, and tons of junk. ➤ Grokipedia will be an open-source encyclopedia focused solely on TRUTH. ➤ Grokipedia won’t be controlled by any activist or political bias. ➤ It will be open-source and free for all to use, a truly public resource without limits. ➤ xAI’s ultimate mission is to understand the universe, and that requires honest, unfiltered information. Grokipedia is a crucial step toward that goal, because you can’t build a truthful AI on biased information. ➤ The vision is for Grokipedia to become the global standard for knowledge. One day, every person and every AI system could rely on it as a trusted source of truth. ➤ Seeking truth is the greatest mission of all and that’s what Grokipedia stands for. Grokipedia is coming.show more

DogeDesigner
69,804 views • 9 months ago
I think Covid broke everyone’s brains. The government got... caught in the biggest coverup/crime of all time, and now the most retarded people on Earth have been emboldened to claim EVERY SINGLE THING is a conspiracy theory. Just as bad as the MSM that we were supposed to replace. Every time you shitbirds make a bullshit conspiracy theory where there isn’t one, you discredit the ACTUAL conspiracies and crimes that are taking place, as well as the ACTUAL journalists who are reporting on the facts. Have some discernment and stop fucking up everything else for the rest of us.show more

Clandestine
112,477 views • 2 days ago
this Hermes agent finds business owners asking for help... on Facebook and builds each one exactly what they asked for, on autopilot... Facebook is a goldmine, one google search string surfaces every owner asking for it. here's how agencies & freelancers can land clients: - watches facebook for owners asking for help, any phrasing - one google search string pulls every match, city by city - reads what that owner actually needs, then sources it - grabs their real photos + brand straight off their page - builds exactly that: a video, creatives, or a website - sends the finished build back before a competitor replies every step from facebook post to finished build is automated. reply "AGENT" + RT and i'll send you the full breakdown so you can build this too (must be following so i can DM)show more

Chris
37,306 views • 22 days ago
let me save you 3 hours of head scratching.... if you're running local models like Qwen3.5-35B-A3B through Claude Code via llama.cpp's Anthropic endpoint, the chain will break every 3 to 5 minutes. tool call fails. flow stops. you reprompt. it recovers. 2 minutes later it stops again. the model is fine. the harness chokes on local inference latency. switch to OpenCode. same localhost endpoint. same model. same GPU. the chain doesn't break. the tradeoff: OpenCode sometimes loops. the model forgets what it already read and repeats the same tool call. but a loop you can interrupt. a broken chain kills your momentum and you start over. watch both side by side. proprietary agent vs open source agent. same 3B model. different failure modes. pick your poison.show more

Sudo su
72,501 views • 4 months ago
The internet is back… and Gaza is breathing again,... a faint, sad sound. For five days, we were in complete isolation, not knowing who we lost, who left us, or who was still alive in this sad spot. For five days, only the sky could hear us… and our hearts burned silently. Today, communication has returned, but the war is not over. The voice has returned, but the pain remains in every house, every corner, and every glance. We write from under the rubble, telling the world that we are still here, clinging to life despite everything. We write to say: Enough war… Enough death… Enough darkness. We want to live, to dream, to raise our children in safety, not under bombardment or in the shadow of a siege. We want to wake up one day to news other than sadness, to a dawn unbroken by the sound of airplanes. So that Gaza's voice may reach the entire world: Save what remains of us… Let us live in peace.show more

Ahmed sabe~Gaza
28,412 views • 1 year ago
A CHINESE TRADER BUILT A SECOND BRAIN IN OBSIDIAN... THAT GENERATES 3 TRADING IDEAS EVERY MORNING AT 6AM AND MADE $180,000 IN 6 MONTHS. No Bloomberg terminal. No analytics desk. No team of analysts. A Mac Mini by the wall. An iPhone in his pocket. One local Obsidian vault. Six N8N pipelines running 24/7, pulling every article he reads, every podcast he listens to, and every voice note he drops into a Telegram bot—directly into the vault. Every night, a neural network reads across 4,000 connected notes and finds the strongest connections between fresh information and old theses. Every morning at 6AM, a brief lands in his inbox: - 3 trading ideas with confidence scores - The emerging thesis of the week - Any note that contradicts an active position The system only wakes him up when a fresh note contradicts his thesis, or when an idea breaks 90% confidence. Everything else runs without him. The monthly bill: $120 in API costs. The monthly return: approximately $30,000 into the account. Traditional quant funds pay teams of 8 people to produce the same flow of insights. He pays $120 and a Mac Mini. The full system breakdown is in the article below. Bookmark this before you pay for a Bloomberg subscription. Follow CyrilXBT for every solo operator setup that changes what one person can build.show more

CyrilXBT
116,655 views • 1 month ago
A CHINESE TRADER BUILT A SECOND BRAIN IN OBSIDIAN... THAT GENERATES 3 TRADING IDEAS EVERY MORNING AT 6AM AND MADE $180,000 IN 6 MONTHS. No Bloomberg terminal. No analytics desk. No team of analysts. A Mac Mini by the wall. An iPhone in his pocket. One local Obsidian vault. Six N8N pipelines running 24/7, pulling every article he reads, every podcast he listens to, and every voice note he drops into a Telegram bot—directly into the vault. Every night, a neural network reads across 4,000 connected notes and finds the strongest connections between fresh information and old theses. Every morning at 6AM, a brief lands in his inbox: - 3 trading ideas with confidence scores - The emerging thesis of the week - Any note that contradicts an active position The system only wakes him up when a fresh note contradicts his thesis, or when an idea breaks 90% confidence. Everything else runs without him. The monthly bill: $120 in API costs. The monthly return: approximately $30,000 into the account. Traditional quant funds pay teams of 8 people to produce the same flow of insights. He pays $120 and a Mac Mini. The full system breakdown is in the article below. Bookmark this before you pay for a Bloomberg subscription. Follow CyrilXBT for every solo operator setup that changes what one person can build.show more

CyrilXBT
127,456 views • 23 days ago
BREAKING: We’ve started implementing Dupe Agents—AI-powered dealmakers—for our high-volume... shoppers. This changes everything. What’s a $DUPE Agent? Agentic shopping flips the script: instead of users doing the legwork, Dupe Agents do it for them—at scale. Tell us what you want, and your agent gets to work sourcing, negotiating, and delivering the best deal on the planet. Behind the scenes, your agent is scanning top brand sites, global factory networks, haggling in local languages, and setting you up with a buy button—no markups, no middlemen. First, we’re launching this for our Pro users: interior designers, stagers, builders, and trade pros. Then, we open it up to millions of everyday shoppers. Agents will: Find the deepest discounts no matter what site its on Negotiate factory-direct pricing if factories have a better deal Unlock insider access to exclusive SKUs Handle all the research and logistics To access? You’ll need to hold $DUPE. The more you hold, the more you unlock: early access to new SKUs, white-glove delivery, and priority manufacturing slots. Think of it as your backstage pass to the best deals on the internet. Dupe Agents aren’t just smart—they’re relentless. And they’re about to make shopping unfairly easy. This is another “break the internet” moment—only on Dupe.show more

Dupe.com
40,258 views • 1 year ago
Claude Fable 5 orchestrating Grok 4.5 is now my... favorite real workflow. all you need is this free Claude Code plugin that makes Grok the default implementer. Fable writes the specs and reviews every diff, Grok 4.5 does the typing through the Grok CLI. - Grok handles the volume, Fable handles the judgment - Every diff gets cross-vendor review for free - Specs run as parallel agents when they're independent I've been testing it for a few days and the part that sold me is watching Fable refuse to write code. It sends specs down, judges what comes back, and that's it. setup: 1. claude plugin marketplace add DannyMac180/fable-advisor && claude plugin install fable-advisor 2. Install the Grok CLI from then grok login 3. /model fable It's open source, so you can read the agent files and tweak the routing however you want.show more

Alvaro Cintas
96,949 views • 5 days ago
We built a tool that finds everything the internet... knows about you. Most people think they're careful online. They're not. Here's what the agents pull within minutes: • Old passwords exposed in breaches you forgot about. • Usernames from accounts you abandoned • Every platform you've ever signed up for. • Your full address history. • Family members surfaced from public records. • Photos tied to your name on sites you never posted to. That's a fraction of what comes back. In 2026 anyone with the right tool finds this in minutes. The least you can do is see it on yourself first so you can take it down. Free to run on yourself. Link in comments.show more

Saarth Shah
382,059 views • 2 months ago
Why the world needs Grokipedia? ➤ Wikipedia isn’t the... neutral source of truth it once was. It’s been taken over by far-left activists and often used as a propaganda tool, not an unbiased encyclopedia. ➤ A lot of AIs today get their info from the internet, but the web is full of unfair views, wrong facts, and tons of junk. ➤ Grokipedia will be an open-source encyclopedia focused solely on TRUTH. ➤ Grokipedia won’t be controlled by any activist or political bias. ➤ It will be open-source and free for all to use, a truly public resource without limits. ➤ xAI’s ultimate mission is to understand the universe, and that requires honest, unfiltered information. Grokipedia is a crucial step toward that goal, because you can’t build a truthful AI on biased information. ➤ The vision is for Grokipedia to become the global standard for knowledge. One day, every person and every AI system could rely on it as a trusted source of truth. ➤ Seeking truth is the greatest mission of all and that’s what Grokipedia stands for. Grokipedia is coming.show more

DogeDesigner
5,198,687 views • 9 months ago