SShortSingh.
Back to feed

Octoweb 0.15 adds page memory search, keyboard link hints, and private tabs

0
·1 views

Octoweb version 0.15.0 was released nine days after its predecessor, marking the browser's largest update since launch with changes across 46 files and roughly 5,100 lines of new code. A key addition is page memory search, which lets users query the text content of previously visited pages — not just titles or URLs — by prefixing a palette search with a forward slash. The release also introduces a 'Later' queue that saves pages for reading, automatically expiring them after 14 days if unopened, while still keeping them findable via text search. A new keyboard-driven link-hint feature, activated with a shortcut, overlays short labels on all clickable elements in the viewport so users can navigate pages entirely without a mouse. Two new MCP tools allow AI agents to access both the page-memory search and the Later queue, enabling automated workflows such as summarising saved but unread content.

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 ·

Token Cost of AI Tool Discovery: When Agent Context Overhead Actually Matters

A developer measured the token cost of injecting tool definitions into an AI model's context on every call, using a tokenizer-based harness without requiring a live LLM. The study found that a small three-tool server costs just 277 tokens per model call, making optimization pointless at that scale. However, costs scale linearly with tool count and description verbosity — 100 verbose tools consume over 20,000 tokens per call, totalling roughly 400,000 tokens across a 20-call agent task. Curating five relevant tools from a set of 100 cuts context cost by approximately 95 percent. The key finding is that the real cost driver is not discovery versus static manifests, but how many tool definitions sit in context and how verbosely they are written.

0
ProgrammingDEV Community ·

Tiny On-Device AI Models Struggle Most With Children's Speech, Posing Product Dilemma

Developers building WhyWave, a voice companion for children aged three to five, discovered that smaller AI models — compact enough to run on a smartphone — perform significantly worse at recognising children's speech compared to adult speech. Legal constraints complicate the alternative: Apple's App Store guidelines bar kids' category apps from sending personally identifiable information to third parties, and a child's voice qualifies as such under COPPA's definition in 16 CFR § 312.2. Major AI vendors add further restrictions, with Google prohibiting use of its generative APIs in products directed at under-18s, while OpenAI and Anthropic impose strict conditions including zero data retention and age verification. Processing audio entirely on-device sidesteps these legal hurdles, since audio that never leaves the device is never 'collected' under COPPA and no third-party vendor terms apply. Recent benchmarks show on-device models like Whisper Large v3 Turbo and lightweight alternatives such as Moonshine are closing the gap with cloud systems on speed and accuracy, though their performance on children's voices remains a key unsolved challenge.

0
ProgrammingDEV Community ·

Developer Cuts AI API Costs by 61% Using Model Routing and Fallback Logic

A developer building an AI-powered app was spending $800 per month on OpenAI API calls despite having fewer than 500 active users. After auditing a week of LLM calls, they found that 62% of requests involved simple tasks like classification that did not require expensive flagship models. They implemented task-based model routing, directing simpler workloads to cheaper models such as GPT-4o-mini or Claude Haiku, which cost roughly 10 times less per token. A fallback layer was added to handle provider outages, and an API gateway was adopted to centralize routing, key management, and retry logic. Within three weeks, monthly costs fell by 61% while reliability improved and the codebase became simpler to maintain.

0
ProgrammingDEV Community ·

116,181 Search Impressions but Only 9 Clicks: What the Data Reveals About Web Visibility

A website intelligence platform called AuditMe recorded 116,181 Google Search impressions over three months but generated only 9 clicks, yielding a visibility gap ratio of roughly 12,909 impressions per click. During a separate 27-day period, the same site logged 1,737 AI citation events, highlighting that search engines and AI systems measure visibility in fundamentally different ways. The data illustrates that a website passes through multiple distinct layers — from crawling and indexing to surfacing, citation, and conversion — and can succeed at one layer while failing at another. Neither metric alone tells the full story: AI citations do not automatically translate into clicks or revenue, just as high impression counts do not guarantee meaningful user engagement. The findings suggest that site owners need layer-by-layer diagnostics rather than a single aggregate visibility score to understand where their web presence is actually breaking down.

Octoweb 0.15 adds page memory search, keyboard link hints, and private tabs · ShortSingh