mirror of
https://github.com/only-cli/oc.git
synced 2026-09-15 10:40:56 +02:00
Version bump across package.json, the lockfile, the plugin manifest, the marketplace entry, and the npx pins in the agent skill. Adds CHANGELOG.md covering what landed since 0.3.0: dispatched site shortcuts, the Wikipedia shortcuts, proxy env var support, the loud exit 2 on a page with no readable content, and the MIT LICENSE file. The skill gains a site shortcuts section, since 0.3.0 documented the shortcuts in the README but the skill never mentioned them, plus the exit 2 contract and the proxy note. llms.txt gains Wikipedia and the proxy line. README gains the end to end benchmark: five Wikipedia lookups run as whole tasks in Claude Code with one tool each. All three tools answered every task correctly, so it reports cost rather than accuracy.
52 lines
997 B
JSON
52 lines
997 B
JSON
{
|
|
"name": "@only-cli/oc",
|
|
"version": "0.4.0",
|
|
"description": "Turn websites into a compact CLI so AI agents can browse without burning tokens.",
|
|
"type": "module",
|
|
"bin": {
|
|
"oc": "src/cli.js"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"clis",
|
|
"skills"
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"test": "node --test"
|
|
},
|
|
"keywords": [
|
|
"cli",
|
|
"ai-agents",
|
|
"web-browsing",
|
|
"token-efficient",
|
|
"claude",
|
|
"claude-code",
|
|
"chatgpt",
|
|
"codex",
|
|
"llm",
|
|
"scraping",
|
|
"html-to-markdown",
|
|
"agent-tools"
|
|
],
|
|
"author": "only-cli (https://github.com/only-cli)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/only-cli/oc.git"
|
|
},
|
|
"homepage": "https://github.com/only-cli/oc#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/only-cli/oc/issues"
|
|
},
|
|
"dependencies": {
|
|
"linkedom": "^0.18.12",
|
|
"turndown": "^7.2.4"
|
|
},
|
|
"optionalDependencies": {
|
|
"impers": "^0.1.0"
|
|
}
|
|
}
|