SShortSingh.
Back to feed

Google and Vercel Enter Agentic Web Readiness Space a Developer Explored Twice

0
·1 views

A developer built two tools — Hermes Clew and Agentis Lux — to assess how well websites can be read by AI retrieval agents, submitting both to hackathons without placing. The core idea, surfaced at a March hackathon by a you.com representative, is that websites now serve two audiences: human visitors and AI crawlers that read raw HTML markup. On May 7, 2026, Google added an Agentic Browsing category to Lighthouse 13.3, checking for signals like llms.txt files and accessibility tree quality, though it deliberately avoids a single composite score given the still-emerging standards. On August 21, Vercel and Ora launched is-agentic.com, bringing the total to four tools addressing the same question of whether an AI agent can effectively use a given site. The developer notes a key philosophical difference in his second tool, Agentis Lux: it reports findings about what an agent cannot do but stops short of prescribing fixes, arguing that automated code recommendations made without knowledge of a codebase's constraints can be reckless.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

tmux 3.7: How One Tool Keeps Server Jobs Running After SSH Disconnects

tmux, short for terminal multiplexer, is an open-source tool created by Nicholas Marriott in 2007 that allows a single terminal window to run multiple independent sessions, windows, and panes simultaneously. Unlike standard terminals, tmux runs a background server that is not tied to any active SSH connection, meaning long-running tasks such as builds, database migrations, or model training continue uninterrupted even if the connection drops. Users can reconnect to an existing session and resume monitoring their work exactly where they left off. The tool is installable on macOS via Homebrew and on Ubuntu or Debian systems via apt, with version 3.7 marking the latest stable release as of June 2026. All tmux commands are issued through a prefix key combination, defaulting to Ctrl-b, followed by a specific keystroke to manage sessions, windows, or panes.

0
ProgrammingDEV Community ·

12-Year-Old Launches ThinkVertex, an Open-Source Linux Hardware Community

ThinkVertex is an open-source community project founded by a 12-year-old, with a stated goal of building a sustainable Linux platform and eventually custom-designed hardware. The initiative, branded around a project called RSGL, aims to develop a Linux-capable computer or console platform from the ground up. The project is in its early stages, with hardware development described as still in the research and architecture phase and no finished motherboard yet produced. ThinkVertex operates transparently, welcoming contributors across software, hardware, and Linux development, with all contributions required to be properly credited and attributed.

0
ProgrammingDEV Community ·

Angular 19 Signals Enable Zoneless Reactivity and 60fps Performance for Enterprise Apps

Angular 19 introduces fine-grained Signals as a modern alternative to the long-standing Zone.js change detection model. Unlike Zone.js, which triggers dirty-checking across the entire component tree on any async event, Signals track exact DOM dependencies and update only the nodes that have changed. This approach eliminates Zone.js runtime overhead entirely via the provideExperimentalZonelessChangeDetection() configuration, reducing memory leaks and frame drops common in large enterprise dashboards. Computed signals are lazily evaluated and automatically memoized, simplifying reactive derivations that previously required complex RxJS chains. The result is a more performant and maintainable architecture suited for high-frequency data applications such as live telemetry monitors and grid streams.

0
ProgrammingDEV Community ·

How to Use Postman Properly: Collections, Environments, Secrets, and Auth

Postman is widely used for API testing, but many developers rely on basic habits like hardcoding tokens and pasting URLs without leveraging its full capabilities. Collections allow users to group and save all requests for a given API, making them reusable and shareable across teams. Environment variables enable dynamic switching between dev, staging, and production endpoints without manually editing individual requests. Sensitive values like API keys should be stored as secret-type variables, which are masked in the UI and excluded from plain-text exports to reduce exposure risk. Postman's Authorization tab also automates common authentication headers, eliminating the need to manually configure them for each request.

Google and Vercel Enter Agentic Web Readiness Space a Developer Explored Twice · ShortSingh