loading…
Search for a command to run...
loading…
Renders web pages as structured text grids for AI agents to browse and interact with, preserving spatial layout without screenshots.
Renders web pages as structured text grids for AI agents to browse and interact with, preserving spatial layout without screenshots.
A text-grid web renderer for AI agents — see the web without screenshots.
Instead of taking expensive screenshots and piping them through vision models, TextWeb renders web pages as structured text grids that LLMs can reason about natively. Full JavaScript execution, spatial layout preserved, interactive elements annotated.
📄 Documentation · 📦 npm · 🐙 GitHub
| Approach | Size | Requires | Speed | Spatial Layout |
|---|---|---|---|---|
| Screenshot + Vision | ~1MB | Vision model ($$$) | Slow | Pixel-level |
| Accessibility Tree | ~5KB | Nothing | Fast | ❌ Lost |
| Raw HTML | ~100KB+ | Nothing | Fast | ❌ Lost |
| TextWeb | ~2-5KB | Nothing | Fast | ✅ Preserved |
npm install -g textweb
npx playwright install chromium
# Render any page
textweb https://news.ycombinator.com
# Explicitly request grid mode (same as default)
textweb --output grid https://news.ycombinator.com
# Semantic JSON output for agent workflows
textweb --output semantic https://example.com
# Hybrid output (grid + semantic metadata)
textweb --output hybrid https://example.com
# Interactive mode
textweb --interactive https://github.com
# Legacy JSON output (backward compatible)
textweb --json https://example.com
[0]Hacker News [1]new | [2]past | [3]comments | [4]ask | [5]show | [6]jobs | [7]submit [8]login
1. [9]Show HN: TextWeb – text-grid browser for AI agents (github.com)
142 points by chrisrobison 3 hours ago | [10]89 comments
2. [11]Why LLMs don't need screenshots to browse the web
87 points by somebody 5 hours ago | [12]34 comments
[13:______________________] [14 Search]
~500 bytes. An LLM can read this, understand the layout, and say "click ref 9" to open the first link. No vision model needed.
TextWeb works with any AI agent framework. Pick your integration:
The fastest way to add web browsing to any MCP-compatible client.
# Install globally
npm install -g textweb
# Or run directly
npx textweb-mcp
Claude Desktop — add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"textweb": {
"command": "textweb-mcp"
}
}
}
Cursor — add to .cursor/mcp.json:
{
"mcpServers": {
"textweb": {
"command": "textweb-mcp"
}
}
}
OpenClaw — add to openclaw.json skills or MCP config.
Then just ask: "Go to hacker news and find posts about AI" — the agent uses text grids instead of screenshots.
New (v0.2.1-style MCP capabilities):
session_id on every tool call for isolated parallel workflowstextweb_storage_save / textweb_storage_load for persistent auth/session statetextweb_wait_for for multi-step async UI transitionstextweb_assert_field for flow guards before submitDrop-in tool definitions for any function-calling model. See tools/tool_definitions.json.
Pair with the system prompt to teach the model how to read the grid:
import json
# Load tool definitions
with open("tools/tool_definitions.json") as f:
textweb_tools = json.load(f)["tools"]
# Load system prompt
with open("tools/system_prompt.md") as f:
system_prompt = f.read()
# Use with OpenAI
response = openai.chat.completions.create(
model="gpt-4",
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": "Go to example.com and click the first link"},
],
tools=textweb_tools,
)
from tools.langchain import get_textweb_tools
# Start the server first: textweb --serve 3000
tools = get_textweb_tools(base_url="http://localhost:3000")
# Use with any LangChain agent
from langchain.agents import initialize_agent
agent = initialize_agent(tools, llm, agent="zero-shot-react-description")
agent.run("Find the top story on Hacker News")
from tools.crewai import TextWebBrowseTool, TextWebClickTool, TextWebTypeTool
# Start the server first: textweb --serve 3000
researcher = Agent(
role="Web Researcher",
tools=[TextWebBrowseTool(), TextWebClickTool(), TextWebTypeTool()],
llm=llm,
)
# Start the server
textweb --serve 3000
# Navigate
curl -X POST http://localhost:3000/navigate \
-H 'Content-Type: application/json' \
-d '{"url": "https://example.com"}'
# Click, type, scroll
curl -X POST http://localhost:3000/click -d '{"ref": 3}'
curl -X POST http://localhost:3000/type -d '{"ref": 7, "text": "hello"}'
curl -X POST http://localhost:3000/scroll -d '{"direction": "down"}'
const { AgentBrowser } = require('textweb');
const browser = new AgentBrowser({ cols: 120 });
const { view, elements, semantic, meta } = await browser.navigate('https://example.com');
console.log(view); // The text grid
console.log(elements); // { 0: { selector, tag, text, href }, ... }
console.log(semantic); // { mode, url, title, elements: [...] }
console.log(meta.stats); // { totalElements, interactiveElements, renderMs }
await browser.click(3); // Click element [3]
await browser.type(7, 'hello'); // Type into element [7]
await browser.scroll('down'); // Scroll down
await browser.waitFor({ selector: '.step-2.active' }); // Wait for next step
await browser.assertField(7, 'hello', { comparator: 'equals' }); // Validate field state
await browser.saveStorageState('/tmp/textweb-state.json');
await browser.loadStorageState('/tmp/textweb-state.json');
await browser.query('nav a'); // Find elements by CSS selector
await browser.screenshot(); // PNG buffer (for debugging)
console.log(browser.getCurrentUrl());// Current page URL
await browser.close();
| Element | Rendering | Interaction |
|---|---|---|
| Links | [ref]link text |
click(ref) |
| Buttons | [ref button text] |
click(ref) |
| Text inputs | [ref:placeholder____] |
type(ref, "text") |
| Checkboxes | [ref:X] / [ref: ] |
click(ref) to toggle |
| Radio buttons | [ref:●] / [ref:○] |
click(ref) |
| Dropdowns | [ref:▼ Selected] |
select(ref, "value") |
| File inputs | [ref:📎 Choose file] |
upload(ref, "/path") |
| Headings | ═══ HEADING ═══ |
— |
| Separators | ──────────────── |
— |
| List items | • Item text |
— |
┌─────────────────────────────────────────────┐
│ Your Agent (any LLM) │
│ "click 3" / "type 7 hello" / "scroll down" │
├─────────────────────────────────────────────┤
│ TextWeb │
│ Pixel positions → character grid │
│ Interactive elements get [ref] annotations │
├─────────────────────────────────────────────┤
│ Headless Chromium (Playwright) │
│ Full JS/CSS execution │
│ getBoundingClientRect() for all elements │
└─────────────────────────────────────────────┘
[ref] numbers for agent interactionTextWeb builds stable CSS selectors for each interactive element, preferring resilient strategies over brittle positional ones:
| Priority | Strategy | Example |
|---|---|---|
| 1 | #id |
#email |
| 2 | [data-testid] |
[data-testid="submit-btn"] |
| 3 | [aria-label] |
input[aria-label="Search"] |
| 4 | [role] (if unique) |
[role="navigation"] |
| 5 | [name] |
input[name="email"] |
| 6 | a[href] (if unique) |
a[href="/about"] |
| 7 | nth-child (fallback) |
div > a:nth-child(3) |
This means selectors survive DOM changes between snapshots — critical for multi-step agent workflows.
For multi-step ATS flows, use a stable session_id and combine wait/assert guards:
// Keep one session for the whole application
await textweb_navigate({ url: 'https://job-boards.greenhouse.io/acme/jobs/123', session_id: 'apply-acme' });
// Fill + continue
await textweb_type({ ref: 12, text: 'Christopher', session_id: 'apply-acme' });
await textweb_type({ ref: 15, text: 'Robison', session_id: 'apply-acme' });
await textweb_click({ ref: 42, session_id: 'apply-acme', retries: 3, retry_delay_ms: 400 });
// Guard transition
await textweb_wait_for({ selector: '#step-2.active', timeout_ms: 8000, session_id: 'apply-acme', retries: 2 });
// Validate before submit
await textweb_assert_field({ ref: 77, expected: 'San Francisco', comparator: 'includes', session_id: 'apply-acme' });
// Persist auth/session for follow-up flow
await textweb_storage_save({ path: '/tmp/ats-state.json', session_id: 'apply-acme' });
Useful session tools:
textweb_session_list → inspect active sessionstextweb_session_close → close one session or allThis repository now includes an early scaffold for a manifest-driven user runtime shell (separate from low-level raw admin tooling):
src/app-runtime/manifest.jssrc/app-runtime/topics.jscanvas/app-runtime/app-shell.htmlcanvas/app-runtime/sample-app.jsonThe runtime shell uses LARC PAN (@larcjs/core-lite) for in-page event communication, with a local fallback bus if the module cannot be loaded.
To open the prototype:
# Start API server for integration hooks (save manifest/components)
npm run serve
# In another terminal, open the runtime shell
open /Users/cdr/Projects/textweb/canvas/app-runtime/app-shell.html
Integration actions implemented on the API server:
POST /integrations/sync_saved_formPOST /integrations/save_manifestPOST /integrations/upsert_nav_itemPOST /integrations/runtime_state# Run all tests (form + live + ATS e2e)
npm test
# Form fixture tests
npm run test:form
# Live site tests — example.com, HN, Wikipedia
npm run test:live
# ATS multi-step fixture test
npm run test:ats
Test fixtures are in test/fixtures/ — includes a comprehensive HTML form and an ATS-style multi-step application fixture.
MIT © Christopher Robison
Выполни в терминале:
claude mcp add textweb -- npx Безопасность
Низкий рискАвтоматическая эвристика по публичным данным — не гарантия безопасности.