# Kuri Browse

> Use kuri-browse for quick terminal-based web browsing — fetch and read web pages as markdown, follow links, search in-page. No Chrome needed. Use when the user wants to quickly read a webpage, check documentation, or browse without launching a full browser. Trigger phrases include "read this page", "fetch the docs", "browse to", "what does this page say".

- Skill: `justrach/kuri-browse` (Agent Skill)
- Install (CLI): `npx skillmds@latest add justrach/kuri-browse`
- Raw SKILL.md: https://api.skillmd.com/api/skills/justrach/kuri-browse/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: justrach (https://skillmd.com/u/justrach)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/justrach/kuri-browse

---


# kuri-browse — Terminal Web Browser

A lightweight terminal browser. Fetches pages, renders to markdown, lets you navigate links. No Chrome or JS engine needed.

## Usage

```bash
# Browse a URL
./zig-out/bin/kuri-browse https://example.com

# Interactive REPL
./zig-out/bin/kuri-browse
> go https://example.com
> links              # show numbered links
> 3                  # follow link #3
> search "pricing"   # find text
> back               # go back
> quit
```

## Commands in REPL

| Command | Description |
|---|---|
| `go <url>` | Navigate to URL |
| `links` | Show all links with numbers |
| `<number>` | Follow link by number |
| `search <text>` | Find text on page |
| `back` | Go back in history |
| `forward` | Go forward |
| `quit` / `exit` | Exit browser |

## When to use kuri-browse vs kuri server

- **kuri-browse** — Quick page reads, documentation lookup, static content. No Chrome needed.
- **kuri server** — JS-heavy SPAs, form filling, login flows, screenshots, bot-protected sites.

