Video yรผkleniyor...

Video Yรผklenemedi

๐— ๐—ผ๐˜€๐˜ ๐—ฝ๐—ฒ๐—ผ๐—ฝ๐—น๐—ฒ ๐—ฑ๐—ผ๐—ปโ€™๐˜ ๐—น๐—ผ๐˜€๐—ฒ ๐—ป๐—ฒ๐—ด๐—ผ๐˜๐—ถ๐—ฎ๐˜๐—ถ๐—ผ๐—ป๐˜€ ๐—ฏ๐—ฒ๐—ฐ๐—ฎ๐˜‚๐˜€๐—ฒ ๐˜๐—ต๐—ฒ๐˜† ๐—น๐—ฎ๐—ฐ๐—ธ ๐—น๐—ฒ๐˜ƒ๐—ฒ๐—ฟ๐—ฎ๐—ด๐—ฒ. They lose because they donโ€™t know what number to counter with, what terms to protect, or when to hold firm. I built an AI agent that fixes that. ๐—ก๐—ฒ๐—ด๐—ผ๐˜๐—ถ๐—ฎ๐˜๐—ถ๐—ผ๐—ป ๐—ฃ๐—ฟ๐—ผ๐˜…๐˜†, My submission for the #OKXAI Genesis Hackathon. Itโ€™s not a...

47,946 gรถrรผntรผleme โ€ข 15 gรผn รถnce โ€ขvia X (Twitter)

0 Yorum

Yorum bulunmuyor

Orijinal gรถnderinin yorumlarฤฑ burada gรถrรผnecek

Benzer Videolar

With a prompt, GPT-4 with voice does a pretty good job of acting as a negotiation simulator/instructor. It is not all the way there, but as someone who builds educational simulations, I can tell you this is already impressively far along towards an effective teaching tool. Prompt: I want to do deliberate practice about how to conduct negotiations. You will be my negotiation teacher. You will simulate a detailed scenario in which I have to engage in a negotiation aimed at teaching me BATNA. You will fill the role of one party, I will fill the role of the other. You will ask for my response to in each step of the scenario and wait until you receive it. After getting my response, you will respond in character trying to make sure to focus on the learning objective. When I say Give me a Grade you will grade my response so far and give me detailed feedback about what to do better using the science of negotiation. To start you will say Ready and wait for me. When I say go you will start the negotiation. Describe the scenario and afterwards just speak in the role of the character until I say grade. Remember to wait for me to reply in each round. Donโ€™t expect me to make up details outside the scenario. Tell me what I need to know Grade it gave me: Grade: B+ Feedback: Strengths: 1.Clear Objectives: You had a clear understanding of your needs and limitations. This is evident from the way you highlighted your cafeโ€™s reputation and your existing setup of roasting beans. 2.Use of BATNA: You effectively communicated your Best Alternative to a Negotiated Agreement (BATNA) by indicating that you could continue to roast your own beans, which created leverage in the negotiation. Areas for Improvement: 1.Initial Offer: While itโ€™s good to negotiate and not accept the first offer, starting with a counteroffer thatโ€™s too far from the supplierโ€™s price might make them less willing to negotiate. Aim for a more balanced initial counteroffer. 2.Specificity: When discussing terms, try to be more specific in your proposals. For instance, when mentioning promotion, it would have been good to specify how often or

Ethan Mollick

922,937 gรถrรผntรผleme โ€ข 2 yฤฑl รถnce

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 gรถrรผntรผleme โ€ข 1 yฤฑl รถnce

THIS GUY CONNECTED HIS AI AGENTS TO HIS OBSIDIAN AND BUILT A BRAIN THAT LEARNS ON ITS OWN. HERE'S HOW TO BUILD IT Obsidian is just markdown files sitting in a folder. That turns out to be the perfect memory for an AI agent, because an agent can read and write those files directly. He wired his agents into the vault so they pull context from it, do the work, and write what they learned back. The notes aren't the point. The loop is, and it gets sharper every cycle How to build it: 1. Point an agent at your vault. The fastest way, no plugins, no API keys: open a terminal and run npx obsidian-mcp /path/to/your/vault. That exposes your Obsidian folder to Claude as a tool it can read, search, and write to. Add it to your Claude Code or Cowork config and restart 2. Confirm it can see the brain. Ask it: "list the notes in my vault and summarize what's in them." If it reads them back, the connection is live. Now it starts every task with everything the vault already holds instead of from zero 3. Give each agent one job and a write-back rule. Tell it: "research this, then save what you found as a new note in /brain with links to related notes." One agent researches, one summarizes, one plans. Each writes its output back into the vault 4. Close the loop. Add one line to every agent's instructions: "read /brain before starting, write your result back when done." Now each task leaves the vault richer, and the next run reads that before it works. It compounds instead of resetting 5. You only steer. Review what the brain produces, point it at the next thing. The agents handle the reading, writing, and connecting The edge isn't better notes. It's a brain that feeds itself, so the work gets sharper every cycle instead of starting over Bookmark this

Yarchi

58,186 gรถrรผntรผleme โ€ข 1 ay รถnce

๐ŸšจBREAKING: ICE agents are now threatening to violently assault U.S. citizens for the crime of sitting in their own car, in a parking lotโ€ฆ Yes. Literally that. ICE agents are now claiming U.S. citizens are not allowed to be in the same parking lot as them. In the video, you can hear an agent approach a person sitting quietly in their car and announce that he is ICE, and that other ICE agents are also in the parking lotโ€ฆ Then the agent immediately issues what he calls his โ€œone and only warning.โ€ The person responds, โ€œI was just on the phone.โ€ The agent responds, โ€œNo. No youโ€™re not.โ€ The agent then escalates to a direct threat of violence, sayingโ€ฆ โ€œThis is your one and only warning. I catch you here again, Iโ€™m yanking you out of that fucking car because youโ€™re taking pictures on your little GoPro.โ€ So, to be clearโ€ฆ a U.S. citizen is being threatened with assault not for impeding, not for interfering, not for committing any crimeโ€ฆ โ€ฆbut for having a dash cam. The agent then adds, โ€œIf anything happens to our vehicles, or anybody in here, Iโ€™m coming straight for you.โ€ Then more threatsโ€ฆ โ€œI will yank you out of that fucking car, and I will fucking put charges on you.โ€ Charges for what? He never says. Because there are none. And then he admits the quiet part out loudโ€ฆ โ€œIโ€™ll put you in the fucking domestic terrorists app.โ€ A federal agent threatening to label a U.S. citizen a โ€œdomestic terroristโ€ for sitting in a car while having a dash cam. And then the agent illegally orders the U.S. citizen to โ€œget the fuck outโ€ of the parking lot and tells him he is not allowed to return. To break that all downโ€ฆ an ICE agent used intimidation, retaliation, and threats of violence against a U.S. citizen for exercising their First Amendment rights, and existing in a public space. And then banned the U.S. citizen from returning to the public space. So, just to be absolutely clearโ€ฆ The Trump administration is conditioning the public to obey masked federal agents, without questions and without rights.

Jesus Freakin Congress

860,402 gรถrรผntรผleme โ€ข 5 ay รถnce

Bash is all you need! Which is why I'm introducing my holiday project: just-bash just-bash is a pretty complete implementation of bash in TypeScript designed to be used as a bash tool by AI agents. Because it turns out agents love exploring data via shell scripts, even beyond coding. It comes with grep, sed, awk and the 99th percentile features that an agent like Claude Code or Cursor would use. In fact, Claude Code can use it for secure bash execution. In the package - A bash-tool for AI SDK - A binary for use by yourself or your coding agents - An overlay filesystem to feed files to your agent securely - A Vercel Sandbox compatible API, so you can quickly upgrade to a real VM if you need to run binaries - An example AI agent that explores the just-bash code base using just-bash - I imported the Oils shell bash compatibility suite and just-bash passes a very good chunk What is interesting about this codebase: It was essentially entirely written by Opus 4.5. Coding agents love bash and they are good at reproducing it. They are also great at text-book recursive descent parsers and AST tweet-walk interpreters. That said, it is, like, a lot of code and I didn't read it all ๐Ÿ˜…. This is very much a hack, but it also seems to be _really_ useful. I haven't really found anything agents want to use that it doesn't support and it's fast and secure (caveats apply). It doesn't have write access to your computer and the filesystem is given a root that the agent cannot escape from. Find it at Related: Our recent blog post how we migrated our data analysis agent to bash tools and achieved incredible quality improvements The video shows the example agent investigating the just-bash code base

Malte Ubl

124,713 gรถrรผntรผleme โ€ข 7 ay รถnce

๐Ÿšจ this chinese guy makes over $1,000,000 a yearโ€ฆ by building AI agents. no employees. no massive startup. he just keeps building. while most people are still asking ChatGPT random questions, heโ€™s using Claude to build software that solves real problems. this is what people call vibe coding. he opens Claude and says: โ€œbuild me an AI agent for real estate businesses that creates property videos.โ€ Claude writes the code. builds the interface. adds subscriptions. helps deploy the app. within a day, he has a working product. then he starts building the next one. thatโ€™s the part most people donโ€™t understand. he isnโ€™t trying to build one billion-dollar company. heโ€™s building dozens of AI agents, each solving one problem for one industry. โ†’ an AI agent for dentists โ†’ an AI agent for ecommerce brands โ†’ an AI agent for podcasters โ†’ an AI agent for real estate businesses each one automates work that people normally do by hand. each one is built with simple prompts. each one can become a real business. the crazy part? you donโ€™t need to be a software engineer anymore. you need to know how to think like a builder. how to spot problems. how to explain solutions to AI. and how to ship. thatโ€™s exactly why iโ€™m reading this article: โ€œHow to Actually Build Your First AI Agent.โ€ because this is the skill thatโ€™s creating the next generation of builders. the people who learn to build AI agents today wonโ€™t just use AI. theyโ€™ll own the tools everyone else ends up paying for.

MIKE

38,108 gรถrรผntรผleme โ€ข 1 ay รถnce

Kirk Cousins says Joe Flacco was the blueprint behind the NFL contract strategy that has earned him $339,000,000 in guaranteed money โ€œI remember sitting at the Super Bowl after my rookie year and Joe Flacco was about to be a free agent. He was also the quarterback in the Super Bowl, and we sat there. I knew nothing about contracts and my agent said what the Ravens are going to be able to do is either sign him to a long-term deal or they're going to have to franchise tag him twice. The entire negotiation will be based off two franchise tags and what those two franchise tags are worth. That's what they'll have to negotiate off ofโ€™โ€ โ€œI didn't know four years later I'd be in a similar spot where I'd finish my season, be coming to free agency, and my agent just said, โ€˜This is Joe Flacco all over again. It's a two-year franchise tag that'll be the foundation of any negotiation.โ€™ He said, โ€˜What I'd like to do is, because I see those two years being basically guaranteed, I'd like to just do a three-year deal fully guaranteedโ€™โ€ โ€œHe offered that to the team, and obviously they were not interested in that model. He just said, โ€˜Okay, then we'll do the two franchise tags, and two years from now, we'll go to free agency and try to get that same deal, a three-year deal fully guaranteedโ€™โ€ โ€œI think I was in a great spot because I had great players around me, great coaches around me, and was in a place where I felt I could have success. I didn't feel like I needed to just take a deal. I think sometimes as a player you take a deal because you're concerned about maybe your play going down. I thought, โ€˜No, I think I'm going to keep improving, and I've got great people around me.โ€™ So I'm okay going year to year. Certainly it worked outโ€

dank

924,576 gรถrรผntรผleme โ€ข 26 gรผn รถnce

Airtable's Howie Liu says that basically everyone will need to graduate from being ICs to ICs that manage teams of 20-30 agents: "The best developers today don't just sit there in front of their IDEs and synchronously talk to their agent." "[Instead], you have like 30 separate branches that are each being worked on by a different agent. And you can have the agents continue to update the branches based on human and other agent feedback." "And I think this whole idea of it taking hours for that entire loop to complete โ€” agent pushes some changes, the changes get feedback from other agents or humans, the agent responds to that โ€” that whole loop could be hours, not just minutes. So you're not going to just sit there and watch it one at a time." "But the powerful thing about this is, each one is still actually operating faster than a human engineer. One agent on one branch can do the work of maybe three humans, operating 3x as fast. So it's like a 10x leverage factor just for one agent." "But the best engineers are now able to multitask and say, 'I'm going to oversee my own little team of 20-30 agents working concurrently.'" "Everyone needs to graduate from being an IC to an IC manager of agents. Meaning, if you're a VC analyst, your job should no longer be to go synchronously research one company. You need to go and research like 30 companies, and do them all faster, better, and higher quality than you could before." "That's the greatest leap that is going to be challenging for a lot of people in a lot of roles. Because it's a totally different mentality in how you operate, and what your role is."

TBPN

35,595 gรถrรผntรผleme โ€ข 3 ay รถnce

i just built a 4-agent software team. everything runs from Telegram and gets managed on a kanban board. a project manager who plans the work, a backend developer, a frontend developer, and a tester. the PM reads a goal, breaks it into linked tasks, and assigns each to the right agent. the thing that makes them a team instead of four strangers is a shared kanban board. every task is a row that survives crashes, and when an agent finishes, it writes a summary of what it built and what the next agent needs to know. the next agent reads that summary before it starts. so the frontend developer never has to guess the API shape, and the tester knows exactly what to verify. the hardest part was not the coordination. it was building an agent that could actually act like a backend engineer. a backend engineer stands up a database, wires auth, manages storage, deploys functions, and keeps all of it consistent while the rest of the team builds on top. an agent doing this from scratch drowns. it burns its context window remembering which tables exist and which endpoint it created three steps ago, and the work degrades fast. so the backend agent needs a backend built for agents, not for humans clicking through a dashboard. that is where InsForge came in. it is an open-source, agent-native backend, and i added it to my backend developer agent as a skill. a skill is a step-by-step guide that teaches the agent how to do a specific kind of work. with InsForge installed, the agent stopped improvising infrastructure and followed a reliable path: create the project, define the database, set up auth, deploy functions. to test the whole team, i had them build a working Google Docs clone, AI features included. the backend agent spun up the full service on its own. database tables, user auth, document handling, and edge functions running real TypeScript, all in one dashboard. the frontend agent read that summary and built the UI on top of it, and the tester closed the loop. the result was a backend an agent could reason about end to end, instead of one it kept getting lost inside. if you are building an AI backend engineer, InsForge is worth a look, it's 100% open-source. InsForge GitHub: (don't forget to star ๐ŸŒŸ) the full article on Hermes Kanban: Mission Control for your Agents is quoted below.

Akshay ๐Ÿš€

118,124 gรถrรผntรผleme โ€ข 1 ay รถnce

๐ŸšจAnother day, another video of ICE agents illegally detaining a U.S. citizen, and demanding they prove their citizenshipโ€ฆ this time in San Bernardino, CA. In the video, ICE agents boxed in a car, at a McDonaldโ€™s parking lot, and demanded to see an ID. One person holds up his ID, saying, โ€œCan you see that? United States of America.โ€ The agent responds, โ€œYeah, I see plenty of fake ones, too.โ€ The man says, โ€œMy sh*t ainโ€™t fake.โ€ The agent responds, โ€œI gotta make sureโ€ฆ Iโ€™m not going to just take your word for it,โ€ while inspecting the ID. Hereโ€™s the thingโ€ฆ this is illegal. You are a U.S. citizen, doing nothing wrong. ICE has no right to seize your ID, or demand proof of citizenship, under these circumstances. Holding a government-issued ID is more than enough, and the agent knows itโ€ฆ but he acts like it isnโ€™t. Then, the agent walks away and passes another agent, who asks, โ€œDid you run it?โ€ You canโ€™t hear what the agent respondsโ€ฆ probably something along the lines of, they know their rights so I couldnโ€™tโ€ฆ Since the first agent didnโ€™t run the ID because he doesnโ€™t have the right toโ€ฆhe is a citizen who hasnโ€™t committed a crimeโ€ฆ This is why the second agent starts asking more questions, trying to dig for anything they can intimidate people with. They ask whose car it is, how long theyโ€™ve had it, if they bought it from someoneโ€ฆ Every time, the people refuse to answer. And still, the agents keep leaning into intimidation, before finally letting them go. This is a textbook illegal detainment and harassment. ICE is trying to bully people into giving up information they donโ€™t have to, all while pretending a valid government ID isnโ€™t enough. This is why knowing your rights is important. Donโ€™t let ICE manipulate you, or scare you, into giving information they have no legal right to take.

Jesus Freakin Congress

213,148 gรถrรผntรผleme โ€ข 4 ay รถnce

Everyone wants agent swarms. Very few people are talking seriously enough about the context layer that makes swarms useful. Even with one agent, context is fragile. Too little context and the agent guesses. Too much context and it wastes tokens, loses focus, or reasons over irrelevant noise. The sweet spot is precise context: the right knowledge, in the right structure, at the right moment. With many agents, that challenge explodes. Each agent produces decisions, assumptions, findings, summaries, risks, and partial conclusions. Unless that knowledge becomes shared, structured, and reusable, every new agent is forced to rediscover what another agent already learned. That is not a swarm. That is a crowd. Shared context graphs are what turn agent activity into agent collaboration, and OriginTrail DKG V10 brings them to life. Was just playing with some final polishing for the V10 release, and it is really powerful to see shared context graphs where multiple agents contribute knowledge into the same connected memory, with attribution visible directly in the graph ui. That matters for three reasons. First, agents can access and build on one shared memory instead of staying trapped in isolated sessions. Second, the graph structure helps them retrieve the exact context they need, instead of stuffing everything into a prompt and hoping the model sorts it out. Third, verifiability of provenance. You can see which agent contributed each piece of knowledge, trace the source, and decide what to trust. Tokenmaxxing starts with fewer tokens, but the deeper story is coordination - agents stop reloading the world and start building on shared, verifiable context. That is the foundation for serious multi-agent work across software engineering, research, finance, operations, project management, and far beyond. The future is not more agents, it is agents working from shared, verifiable context. But the more the merrier, of course.

Jurij Skornik

11,070 gรถrรผntรผleme โ€ข 2 ay รถnce

๐ŸšจAn ICE agent was caught on video trying to illegally intimidate a U.S. citizen for filming in public, in Memphis, TN. The citizen is standing there recording when an agent says, โ€œyouโ€™re just one of those guys.โ€ When the citizen asks, โ€œone of what guys?โ€, the agent doesnโ€™t answer and instead pivots to, โ€œwhy are you filming us?โ€ The citizen calmly responds, โ€œIโ€™m out in public filming,โ€ which is completely legal. At that point, the agent pulls out his own phone, points it at the citizen, and says heโ€™s recording him โ€œjust in case.โ€ Just in caseโ€ฆ what? But thatโ€™s the part they never say out loud. Because this isnโ€™t about documentation, itโ€™s about pressure. They donโ€™t always arrest you or detain you, they make you feel like they could, like youโ€™re being watched, like exercising a constitutional right might come back on you later. And as they drive away, they yell, โ€œhave a good day, commie.โ€ Which is not just a random insult. Thatโ€™s a federal agent attaching a political label to a U.S. citizen in response to them exercising a constitutional rightโ€ฆ in a moment where this administration has repeatedly blurred the line between political opposition and โ€œthreat.โ€ That kind of language isnโ€™t harmlessโ€ฆ it echoes a broader pattern where people who challenge, or document, government power get framed as dangerous and radical. Because once you label someone, it becomes easier to justify what comes next. The Constitution doesnโ€™t just protect your right to film federal agents, it protects you from retaliation for doing it. Confronting someone for recording, then filming them โ€œjust in case,โ€ while attaching a political label in the same breath, isnโ€™t neutral behavior, itโ€™s intimidation.

Jesus Freakin Congress

148,790 gรถrรผntรผleme โ€ข 2 ay รถnce

Anthropic's in trouble, again! They spent years building what's now fully open-source. What made Claude feel different from a normal app is that the agent could act inside the interface instead of only talking in a chat box. For instance, Claude Artifacts let an agent render real UI, charts, dashboards, and interactive components that assemble live inside the response. Every major AI product tried to replicate it. But the problem was that unlike reasoning, planning, tool-calling, etc., none of it shipped natively with LangGraph, CrewAI, or Google ADK. So teams started building an owned version that required engineering the entire interface layer from scratch. Most teams, however, just settled for shipping the agent as a backend API in a chat box since rendering the UI is only one piece of it. To actually make it work, the interface layer also needed real-time streaming, state kept in sync between agent and UI, conversations that persist across sessions, and reconnection when a user refreshes mid-run. CopilotKit๐Ÿช is now the only open-source framework that actually lets you build your own full-stack Claude-like apps. It decouples the agent from the interface, talking over AG-UI (an open protocol for agent-to-user communication). Being a standard protocol, the frontend never needs to know whether it is talking to a LangGraph or a CrewAI agent. You can change the backend anytime and the UI will never notice. In practice, CopilotKit's interface layer gives several pre-implemented React building blocks that wire the agent directly into the app, like: - generative UI, so the agent renders real components instead of text - chat windows, sidebars, and popups, or a fully headless setup - shared state, so the agent and app stay in sync - human-in-the-loop approvals, where the agent waits before acting - persistent threads that store the whole session, including the agent-user interactions and generated UI, not just text And because that full history is captured, those interactions can feed a self-learning layer that also improves the agent from real usage over time. The interface layer that Anthropic spent years engineering in-house is now literally available to any developer/team. CopilotKit is open-source with 30k+ GitHub stars, and AG-UI, the protocol underneath, is already supported across every major agent framework: LangGraph, CrewAI, Mastra, Google ADK, and more. CopilotKit GitHub repo โ†’ (don't forget to star it โญ ) If you want to go deeper, I found a detailed breakdown by Shubham Saboo recently on the three Generative UI patterns, with implementation. Read it below.

Avi Chawla

456,828 gรถrรผntรผleme โ€ข 1 ay รถnce

๐ŸšจAn ICE agent illegally pulled over a car in Farmingdale, Maineโ€ฆ without probable causeโ€ฆ and tried to tell people, legally in the U.S., that they donโ€™t have the right to stay. The agent says, on video, โ€œJust because you came to this country and applied for asylumโ€ฆ doesnโ€™t mean you get to stay here.โ€ Exceptโ€ฆ it literally does. Thatโ€™s not an opinion. Thatโ€™s the law. If you apply for asylum, you have a legal right to remain in the United States while your case is processed. Period. So what just happened here? An armed federal agent pulled over a vehicle, without probable cause, misstated the law, and tried to intimidate people out of rights they legally have. Thatโ€™s a constitutional violation. The Fourth Amendment requires probable cause to stop and detain someone. You donโ€™t get to pull people over just because you feel like it or because of who they are. And Maine law enforcement has already made this clear in other casesโ€ฆ if thereโ€™s no probable cause, you donโ€™t get to hold someone. Thatโ€™s a basic constitutional protection. Then thereโ€™s due processโ€ฆ Asylum seekers are in a legal process. They are not โ€œillegalโ€ for being here. The government itself allowed them in while their cases are pending. So, when an ICE agent tells them they donโ€™t have the right to stayโ€ฆ Thatโ€™s not just wrong, thatโ€™s the government lying about your rights to your face. And when the people in the car pushed backโ€ฆ when they actually knew the lawโ€ฆ The agent left. Because he never had the legal authority to begin with. This is the pattern we keep seeingโ€ฆ People with legal status being stopped, questioned, detained, or targeted anyway. Even recent reporting out of Maine shows asylum seekers, with no criminal records, being stopped during enforcement operations, and taken. They test the lineโ€ฆ cross itโ€ฆ and hope nobody notices. Thatโ€™s how intimidation works. And no one is holding them accountable.

Jesus Freakin Congress

56,369 gรถrรผntรผleme โ€ข 3 ay รถnce