SShortSingh.
Back to feed

llms.txt Spec Hits v2: WordPress, Chrome Lighthouse, and Plugin Support Explained

0
·1 views

Jeremy Howard released version 2 of the llms.txt proposal on August 10, 2026, refining how the file works across subpaths and adding new discoverability options via HTML meta tags and HTTP Link headers. WordPress.org now serves its own llms.txt file, and Chrome's Lighthouse added an Agentic Browsing audit category in version 13.3 that checks whether a site's llms.txt meets basic formatting requirements, though missing files are not penalised. Major WordPress SEO plugins have begun generating the file automatically in their free tiers, though their default outputs vary significantly in length and detail. Despite growing adoption, Google Search Advocate John Mueller stated in June 2025 that no consumer AI system was actively fetching llms.txt files, a position that now conflicts with Chrome's own Lighthouse audit shipping support for it. A known bug in Lighthouse also means spec-compliant files can still trigger fetch errors in PageSpeed Insights, making green audit results an unreliable signal for now.

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 ·

Five AI Governance Gaps That Cause Real Production Incidents, Explained

A practitioner working in AI governance has identified five critical blind spots that most organizations overlook when managing AI systems in production. These include undetected shadow AI deployments, sensitive data leaking through prompts before logs can capture it, and sub-agents gaining capabilities beyond their intended scope. Two additional gaps involve delegated credentials that outlive their authorized timeframe and audit logs that cannot be independently verified by regulators. The author argues that most governance tools focus on individual system components rather than the connections between them, which is where unauthorized AI activity tends to occur.

0
ProgrammingDEV Community ·

TypeSafe AI Launches Jev, a Decision-Only Model Built to Never Generate Text

TypeSafe AI, a startup founded by a former ChatGPT contributor, has released Jev, an AI model designed exclusively to make classifications and decisions rather than generate conversational text. Unlike ChatGPT, Claude, or Gemini, Jev does not produce responses word by word; instead, it instantly selects from a predefined set of answers and returns a confidence score. This makes it reportedly dozens of times faster and significantly cheaper for repetitive decision tasks such as spam filtering, ticket routing, or content moderation. The model's constrained output format also means it cannot fabricate information or deviate from the choices it is given. Developers see Jev not as a replacement for conversational AI but as a complementary tool that handles background judgment calls while full language models focus on tasks requiring explanation or reasoning.

0
ProgrammingDEV Community ·

ShipFast, supastarter, SaaS Pegasus, GoVueKit: How Four SaaS Starters Compare

A detailed architectural comparison of four popular SaaS starter kits — ShipFast, supastarter, SaaS Pegasus, and GoVueKit — highlights how each targets a distinct developer profile and deployment model. ShipFast is a Next.js-based kit aimed at solo makers who need a fast path to a landing page with payments, while supastarter offers a full-stack TypeScript solution suited for B2B teams using Node or serverless environments. SaaS Pegasus caters to Python teams with a mature Django monolith, Celery background jobs, and features like impersonation and a CMS, whereas GoVueKit packages a Go API and Vue 3 frontend into a single self-hostable binary with PostgreSQL or SQLite. Key differentiators include multi-tenancy support, background job handling, test coverage, and data portability — with GoVueKit and Pegasus offering the most verifiable end-to-end test suites. The comparison advises teams to choose primarily based on backend language familiarity, need for organizations on day one, hosting constraints, and long-term data portability requirements.

0
ProgrammingDEV Community ·

Go developer unpacks channel internals after reading runtime source code

A developer spent a week studying Go 1.26's runtime source files chan.go and select.go to understand how channels work under the hood. Every Go channel is backed by an hchan struct containing a ring buffer, two wait queues for blocked goroutines, and a single runtime mutex that protects all operations. Unbuffered channels carry no buffer at all, requiring sender and receiver to meet simultaneously, with the sender writing a value directly onto the receiver's stack. When a receiver is already waiting, a buffered channel skips the buffer entirely and hands the value over directly, maintaining a strict invariant that data and waiting receivers never coexist. The study also revealed how Go preserves FIFO ordering when a full buffered channel has parked senders, by routing the oldest buffered value to the receiver and placing the sender's value into the freed slot.

llms.txt Spec Hits v2: WordPress, Chrome Lighthouse, and Plugin Support Explained · ShortSingh