Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"name": "only-cli",
"source": { "source": "github", "repo": "only-cli/oc" },
"description": "Browse websites from the terminal in a few hundred tokens",
"version": "0.5.2",
"version": "0.5.3",
"homepage": "https://github.com/only-cli/oc",
"license": "MIT"
}
Expand Down
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "only-cli",
"description": "Browse websites from the terminal in a few hundred tokens",
"version": "0.5.2"
"version": "0.5.3"
}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Notable changes per release. Releases before 0.4.0 are listed at
[github.com/only-cli/oc/releases](https://github.com/only-cli/oc/releases).

## Unreleased
## 0.5.3

### Changed

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@only-cli/oc",
"version": "0.5.2",
"version": "0.5.3",
"description": "Turn websites into a compact CLI so AI agents can browse without burning tokens.",
"type": "module",
"bin": {
Expand Down
16 changes: 8 additions & 8 deletions skills/web-browsing-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ description: Token-efficient web browsing and web content extraction for AI agen
Renders a web page as a compact, numbered terminal view instead of raw HTML. A typical page is under 500 tokens.

```
npx --yes @only-cli/oc@0.5.2 open <url> compact view, numbered elements
npx --yes @only-cli/oc@0.5.2 do <n> follow link [n], or read it if [n] is text
npx --yes @only-cli/oc@0.5.2 find <query> where a string appears, or that place itself
npx --yes @only-cli/oc@0.5.3 open <url> compact view, numbered elements
npx --yes @only-cli/oc@0.5.3 do <n> follow link [n], or read it if [n] is text
npx --yes @only-cli/oc@0.5.3 find <query> where a string appears, or that place itself
when only one matches
npx --yes @only-cli/oc@0.5.2 next next ~500 tokens of the page already open
npx --yes @only-cli/oc@0.5.2 read <n> full text of region [n]
npx --yes @only-cli/oc@0.5.2 raw [url] whole page as markdown (--html for cleaned HTML)
npx --yes @only-cli/oc@0.5.2 login seed cookies (--cookie, --domain, --expires)
npx --yes @only-cli/oc@0.5.2 logout [session] forget a session: cookies and saved page
npx --yes @only-cli/oc@0.5.3 next next ~500 tokens of the page already open
npx --yes @only-cli/oc@0.5.3 read <n> full text of region [n]
npx --yes @only-cli/oc@0.5.3 raw [url] whole page as markdown (--html for cleaned HTML)
npx --yes @only-cli/oc@0.5.3 login seed cookies (--cookie, --domain, --expires)
npx --yes @only-cli/oc@0.5.3 logout [session] forget a session: cookies and saved page
```

None of these except `open`/`do`/`raw <url>` fetch anything; they replay the page `open` already saved.
Expand Down