in the next version of OpenCode, file search is... powered by fff - files the agent opens start ranking higher - tool calls reuse the same search layer instead of starting cold - less wasted context - fast af here’s me searching around the linux repo, a ~40m line codebaseshow more

nexxel
171,921 просмотров • 1 месяц назад
SOMEONE MAPPED CHAOS INTO A NAVIGABLE SPACE AND YOUR... HERMES AGENT NEEDS THE SAME THING thousands of chaotic data points, each given a position, navigation becomes instant because the structure does the work your vault is the same chaos, hermes lands in it and opens files at random because nothing tells it where to start one index file per major folder with a clear starting point changes everything 2 minutes per task drops to 10 seconds, same agent, same model full breakdown in the article below ↓show more

leopardracer
23,618 просмотров • 21 дней назад
THIS IS HOW FABLE 5 MOVES WHEN YOUR VAULT... IS BUILT RIGHT direct path. zero wandering. hits the target on the first try. without structure it's the opposite. 7 files opened. 2 minutes wasted. brief from 3 months ago still missing. one index file per major folder. gives the agent a direct line to what it needs. same task dropped from 2 minutes to 10 seconds. same model. nothing else changed. build the path or watch it search in the dark. full breakdown in the article below ↓show more

Avid
905,416 просмотров • 20 дней назад
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 просмотров • 6 месяцев назад
🚨 Baidu Search has launched its most significant upgrade... in a decade - and it's a total game-changer. 🔥 Here’s why it’s a big deal in the evolution of search technology: • The new Smart Search Box handles more complex queries—over 1,000 Chinese characters—and lets you search using images, voice, video, or files. • Baidu’s AI Assistant now supports video calls, multimodal input (text, voice, image, files), and richer outputs like notes, images, and videos. Its enhanced Deep Search capability mimics human reasoning—perceiving, planning, executing, and generating—providing multi-layered insights beyond traditional search. Search is now smarter, more useful, and more intuitive than ever! ⚡🌟show more

Aryan Rakib
38,994 просмотров • 1 год назад
Big moment for Postgres! Search has always been Postgres'... weak spot, and everyone just accepted it. If you needed a real relevance-ranked keyword search, the default answer was to spin up Elasticsearch or add Algolia and deal with the data sync headaches forever. The problem isn't that Postgres can't do text search. It can. But the built-in `ts_rank` function uses a basic term frequency algorithm that doesn't come close to what modern search engines deliver. So teams end up: - Running a separate Elasticsearch cluster just for search - Building sync pipelines that inevitably drift out of consistency - Paying for managed search services that charge per query - Accepting mediocre search relevance because "good enough" ships faster But this is actually a solvable problem. You can realistically bring industry-standard search ranking directly into Postgres, which eliminates the need for external infra entirely. This exact solution is now available with the newly open-sourced pg_textsearch by Tiger Data - Creators of TimescaleDB, a Postgres extension that brings true BM25 relevance ranking into the database. BM25 is the algorithm behind Elasticsearch, Lucene, and most modern search engines. Now it runs natively in Postgres. Here's what pg_textsearch enables: - True BM25 ranking with configurable parameters (the same algorithm powering production search systems) - Simple SQL syntax: `ORDER BY content 'search terms'` - Works with Postgres text search configurations for multiple languages - Pairs naturally with pgvector for hybrid keyword + semantic search That last point matters a lot for RAG apps. The video below shows this in action, and I worked with the team to put this together. You can now do hybrid retrieval (combining keyword matching with vector similarity) in a single database, without stitching together multiple systems. The syntax is clean enough that you can add relevance-ranked search to existing queries in minutes. pg_textsearch is fully open-source under the PostgreSQL license. You can find a link to their GitHub repo in the next tweet.show more

Akshay 🚀
215,344 просмотров • 6 месяцев назад
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 просмотров • 4 месяцев назад
I MADE MY AI AGENT 10X FASTER WITHOUT CHANGING... THE MODEL not a smarter model, not a bigger context window, not another clever prompt the same kind of AI that designs vaccines for viruses we have not even met yet was spending two minutes opening the wrong files just to hand me a brief from three months ago the problem was never capability, it was the scaffolding that piled up around my agent by accident, folder by folder an agent does not think in your categories, it searches from scratch every single time, and your tidy human folders are a maze to it the fix was almost stupidly small, one index file at the root of each big folder and a few numbers in front of the folder names slowest task dropped from 2 minutes to 26 seconds, fastest ones hit 10, zero model changes capability is cheap when the scaffolding around it is broken the article breaks down the whole system in 15 minutes ↓show more

shmidt
36,439 просмотров • 23 дней назад
just vibe-coded an internal search tool that finds any... file on my computer and answers questions related to them. it's a custom Raycast extension powered by Anthropic's MCP (thanks Alex Albert & Marc Klingen for showing me!)—but it works with any LLM for Q&A across my local files. given Raycast’s slick UX + deep integrations, I’ve always thought it’s perfectly positioned to solve internal search like Glean does with enterprises, so I built one. code is in the comments—curious to hear your thoughtsshow more

viet
104,019 просмотров • 1 год назад
Let me explain the agent loop, simple It's the... core of every agentic system, and the part most people overcomplicate It's just this: 1. Send messages to the model 2. Model responds, maybe calls a tool 3. You run the tool 4. Append the result back to messages 5. Repeat until stop_reason is end_turn Step 4 is the whole thing, the write-back is what makes it an agent The model has to see what actually happened before it decides the next move That's the entire loop... understand this cold before you reach for a frameworkshow more

Daniel San
12,514 просмотров • 1 месяц назад
AI agents can already read the web. Now we're... giving them eyes. Introducing Semantic Video Search, powered by the UpRock Network. Not transcript search. Not keyword matching. Real multimodal intelligence across: → video → audio → frames → timestamps → context Ask questions. Get answers from video. Powered by a global swarm of 3M+ real devices across 190+ countries, UpRock gives AI agents access to the internet as real users experience it. No datacenter blocks. No proxy games. No synthetic traffic. Just ground-truth intelligence from the real web. Over the next few posts, we'll show what this unlocks. 👇show more

UpRock
137,902 просмотров • 1 месяц назад
🗣️ VTuber Artists!! You can make your riggers life... easier! Live2D has a part search function, so if you type Add/Multiply at the end of your layers, we can easily set layers modes instead of going layer by layer. Kudos to my @/linori_nguyen for setting this for me (´▽`ʃ♡ƪ) VTuber: @/inkymyko ♡show more

Micci 🌙👑
15,821 просмотров • 1 год назад
Stanford researchers did it again. They just built the... agent-native version of Git. When an agent works on a longer task, the run builds up a lot of state. This includes files edited/created, a dev server, a database, installed packages, KV cache, etc. Say the agent is at step 10 and makes a mistake, maybe it misreads a traceback and rewrites a file that was actually fine. The tests start failing, and the run goes off track, although everything through step eight was correct. By default, the agent just tries to fix it, which creates more edits and tool calls. This burns more tokens and grows the context. The other options are a person stepping in to redirect it or restarting the whole run from step one. That's wasteful, because it pays for every model/tool call again and re-prefills the context. Moreover, since an agent's run is non-deterministic, it doesn't reproduce the same early steps anyway. The reason it's hard to just jump back exactly to a previous correct step and resume from there is that the trajectory is only a message log. It records what the agent said and which tools it called, but not the live state underneath. That state includes things like memory, open file handles, child processes, installed packages, /tmp, and KV cache. None of that is in the log. Git can version the files, but it doesn't snapshot the running process or the KV cache. Checking out step eight moves the files back, but the process is still sitting in step-ten memory with a cold cache. Shepherd is a runtime layer by Stanford that records the run as a trace of typed events rather than a flat log. Each agent-environment interaction becomes a commit, similar to Git, but it tracks the live run. Its commit includes the agent process and the filesystem together, copy-on-write, so a branch carries the actual state and not just the files. Going back to a previous step is then a single call that forks from that commit and continues from the exact state. The copy-on-write fork is roughly five times faster than docker commit, and because the prompt prefix through step eight is unchanged, the KV cache is reused over 95% on replay, so early steps aren't reprocessed again. Once the run can be forked, a meta-agent can sit on top and operate it. It watches the trace and reverts as soon as it looks wrong, before the bad write is committed. In practice, it's just Python calling fork, replay, and revert on the trace, rather than a separate control plane wired into the harness. Not everything is reversible though. Files and sandbox changes undo themselves, but a database write has no automatic undo, so it needs a matching undo step set up in advance. Something external, like a sent email or a real charge, can't be undone, so the supervisor's job there is to catch it before it fires. They tested this on a few public benchmarks. On CooperBench, where two agents work on the same codebase, adding a live supervisor took the pair-coding pass rate from 28.8% to 54.7%. It's still early and labeled alpha. The benefit mostly shows up when a run gets branched a lot over a heavy sandbox state, which is exactly where restarting wastes the most tokens and time. If Git was made to make file changes reversible, Shepherd is trying to do the same thing for a live agent run. Shepherd Repo: (don't forget to star it ⭐ ) That said, Shepherd reverts a bad step inside a run. The harness around it, the prompts, tools, and checks the supervisor relies on, still drifts across runs as models and dependencies change. Akshay wrote about making that harness repair itself, where a failing trace gets diagnosed, the fix is verified against the exact input that failed, and the failure is locked as a regression test so it can't recur. Read it below.show more

Avi Chawla
438,833 просмотров • 18 дней назад
The problem » The DEX market moves too fast... for manual research. By the time you spot a trend, you're already late. The solution » An AI-powered search engine that processes thousands of trades, liquidity shifts, and smart money movements — in seconds. We’re working tirelessly behind the scenes to prepare for the highly anticipated release of the DEXPLORE beta for our Expert and Oracle tier users. The progress we’ve made in recent weeks has been nothing short of remarkable. DEXPLORE is coming soon. $DCKshow more

DexCheck AI
18,488 просмотров • 1 год назад
New feature in Claude Code 2.1.14 just dropped! You... can now search and install plugins from the marketplaces installed in your current Claude Code session. This is huge if you’re building plugins on top of Claude Code’s marketplace layer (Skills, Agents, Hooks, etc). How it works: - Run /plugin - The official Claude marketplace is installed by default - Use the search bar to find the plugin you want - Select one or multiple plugins with space, then press i to install - Go to the Installed tab to browse and enable them With the exponential growth of Skills and Agent-based components running in the CLI, improving plugin discoverability is a big win. Pretty sure more marketplace-related features are comingshow more

Daniel San
40,994 просмотров • 6 месяцев назад
I found a much cleaner way to browse the... newly released UFO files. The site is called Show Me UFOs, and it is significantly easier to use than the Department of War 🇺🇸 release page. You can sort the files by document type, agency, date, and even explore them through an interactive map. For anyone trying to actually dig through this material instead of just skim headlines, this is a genuinely useful tool. Link is in the attached comment. #ufox #ufotwittershow more

Tom Thompson🛸 (CORTEX ZERO)
32,330 просмотров • 2 месяцев назад
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 просмотров • 9 месяцев назад
🇮🇩 A joint SAR team is searching for three... residents buried by a landslide in Kampung Condong, Wargaluyu Village, Arjasari District, Bandung Regency, West Java. The landslide was triggered by heavy rain upstream of the Cibodas River. Search efforts are manual, with K9 dogs and some construction equipment, but progress depends on weather conditions.show more

Volcaholic 🌋
16,783 просмотров • 7 месяцев назад
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 просмотров • 1 месяц назад
Windows 11’s June 2026 Patch Tuesday update is out... today, and the biggest change is Performance, not AI. Windows 11 KB5094126 finally brings Microsoft’s new Low Latency Profile to everyone. Microsoft calls it a “General Performance” improvement, but the idea is simple: when you open Start, Search, Action Center, or key shell experiences, Windows briefly pushes the CPU to max frequency for 1–3 seconds so the UI responds faster. I tested it earlier, and the difference is most obvious on budget PCs. Start feels snappier, Search opens faster, and those tiny Windows 11 micro-stutters are reduced. The catch: because of Microsoft’s Controlled Feature Rollout, installing today’s update does not guarantee it is enabled yet. You can verify it with HWiNFO by watching CPU frequency spikes while opening Start.show more

Windows Latest
61,057 просмотров • 1 месяц назад
Introducing - Spectre AI: The Monarch - Artificial Intelligence... Searching Reimagined Introducing a sneak-peak of the next core feature in the Spectre AI Search Engine: The Monarch aka the AI ChatZone. The Monarch will serve as your AI agent, providing not only price information, technical and sentiment analysis, and project discovery, but also offering visual assistance through Spectre AI's integrated utilities within the search platform. Real-time blockchain data integration comes with the support of Google for Startups. The AI ChatZone's landing page will feature projects that users have added to their UI Watchlist, allowing for quick and seamless discussions about their favorite projects. Additionally, the platform will include hyperlinked external sources, enabling users to access a wealth of information and resources directly from within the ChatZone. In this showcase, we demonstrated how the system responds to inquiries about $Palm AI's (PaLM AI - $PALM) price performance. The user interface and user experience (UI/UX) are fully developed, and the frontend is complete. Our backend is now entering the beta testing phase. The MVP is next in line to be showcased. Get ready for a new journey in AI with Spectre AI. #ai #artificialintelligence #google #nvda #nvidia #tech #spectre $SPECTshow more

SPECTRE AI
16,263 просмотров • 1 год назад